You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.4 KiB
TOML
53 lines
1.4 KiB
TOML
[package]
|
|
name = "mediarepo-api"
|
|
version = "0.28.1"
|
|
edition = "2018"
|
|
license = "gpl-3"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tracing = "0.1.30"
|
|
thiserror = "1.0.30"
|
|
async-trait = { version = "0.1.52", optional = true }
|
|
parking_lot = { version = "0.12.0", optional = true }
|
|
serde_json = { version = "1.0.78", optional = true }
|
|
directories = { version = "4.0.1", optional = true }
|
|
mime_guess = { version = "2.0.3", optional = true }
|
|
serde_piecewise_default = "0.2.0"
|
|
futures = { version = "0.3.19", optional = true }
|
|
url = { version = "2.2.2", optional = true }
|
|
pathsearch = { version = "0.2.0", optional = true }
|
|
|
|
[dependencies.bromine]
|
|
version = "0.17.1"
|
|
optional = true
|
|
features = ["serialize_bincode"]
|
|
|
|
[dependencies.serde]
|
|
version = "1.0.136"
|
|
features = ["serde_derive"]
|
|
|
|
[dependencies.chrono]
|
|
version = "0.4.19"
|
|
features = ["serde"]
|
|
|
|
[dependencies.tauri]
|
|
version = "1.0.0-beta.8"
|
|
optional=true
|
|
default-features = false
|
|
features = []
|
|
|
|
[dependencies.tokio]
|
|
version = "1.16.1"
|
|
optional = true
|
|
features = ["sync", "fs", "net", "io-util", "io-std", "time", "rt", "process"]
|
|
|
|
[dependencies.toml]
|
|
version = "0.5.8"
|
|
optional = true
|
|
|
|
[features]
|
|
tauri-plugin = ["client-api","tauri", "parking_lot", "serde_json", "tokio", "toml", "directories", "mime_guess", "futures", "url"]
|
|
client-api = ["bromine", "async-trait", "tokio", "pathsearch"]
|