40 lines
824 B
TOML
40 lines
824 B
TOML
[package]
|
|
name = "simple-auth"
|
|
version = "0.3.2"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
json = "0.12.4"
|
|
lazy_static = "1.4.0"
|
|
regex = "1"
|
|
tokio = { version = "1.21.1", features = ["full"] }
|
|
async-trait = "0.1.57"
|
|
jwt-simple = "0.11.1"
|
|
simple_logger = "4.0.0"
|
|
log = "0.4.17"
|
|
base64 = "0.13.1"
|
|
serde_json = "1.0"
|
|
|
|
http = { git = "https://gitea.thegux.fr/rmanach/http", version = "0.1.6" }
|
|
|
|
# useful for tests (embedded files should be delete in release ?)
|
|
#rust-embed="6.4.1"
|
|
|
|
[dependencies.configparser]
|
|
version = "3.0.2"
|
|
features = ["indexmap"]
|
|
|
|
[dependencies.clap]
|
|
version = "3.2"
|
|
features = ["derive"]
|
|
|
|
[dependencies.async-std]
|
|
version = "1.6"
|
|
features = ["attributes"]
|
|
|
|
[dependencies.serde]
|
|
version = "1.0"
|
|
features = ["derive"]
|