init
This commit is contained in:
commit
c5731665a3
25 changed files with 1110 additions and 0 deletions
21
yunohost-api/Cargo.toml
Normal file
21
yunohost-api/Cargo.toml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
[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"
|
||||
|
||||
[dev-dependencies]
|
||||
scan-rules = "0.2"
|
||||
tokio = { version = "1", features = [ "sync", "rt" ] }
|
||||
Loading…
Reference in a new issue