28 lines
680 B
TOML
28 lines
680 B
TOML
[package]
|
|
name = "yunohost-api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ldap3 = "0.11"
|
|
env_logger = "0.10"
|
|
log = "0.4"
|
|
tokio = "1"
|
|
snafu = "0.7"
|
|
serde = { version = "1", features = [ "derive" ] }
|
|
serde_json = "1"
|
|
regex = "1.9"
|
|
url = "2.4"
|
|
futures-util = { version = "0.3", optional = true }
|
|
axum = { version = "0.6", optional = true }
|
|
axum_typed_multipart = { version = "0.8", optional = true }
|
|
|
|
[dev-dependencies]
|
|
scan-rules = "0.2"
|
|
tokio = { version = "1", features = [ "sync", "rt" ] }
|
|
|
|
[features]
|
|
axum = [ "dep:futures-util", "dep:axum", "dep:axum_typed_multipart" ]
|