ftest/Cargo.toml

51 lines
1.6 KiB
TOML

[package]
name = "ftest"
version = "0.1.0"
edition = "2021"
build = "build.rs"
defalt-run ="./src/main.rs"
[[bin]]
name ="config_validator"
path = "./src/complaince/validator.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11.20", features = ["json", "gzip"] }
actix-web = "4"
actix-web-prom = "0.6.0"
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
lazy_static = "1.4.0"
log = "0.4.17"
pretty_env_logger = "0.4.0"
serde = { version = "1", features = ["derive"] }
actix-web-codegen-const-routes = { version = "0.1.0", tag = "0.1.0", git = "https://github.com/realaravinth/actix-web-codegen-const-routes" }
derive_builder = "0.11.2"
config = "0.13"
derive_more = "0.99.17"
url = { version = "2.2.2", features = ["serde"] }
serde_json = { version ="1", features = ["raw_value"]}
actix-web-httpauth = "0.8.0"
mime_guess = "2.0.4"
rust-embed = "6.4.2"
sqlx = { version = "0.7", features = [ "runtime-tokio-rustls", "postgres", "time"] }
tracing = { version = "0.1.37", features = ["log"] }
tracing-actix-web = "0.7.6"
tracing-subscriber = "0.3.17"
num_cpus = "1.16.0"
uuid = { version = "1.4.1", features = ["v4", "serde"] }
rand = "0.8.5"
semver = { version = "1.0.18", features = ["serde"] }
toml = "0.7.6"
tokio = { version = "1.32.0", features = ["sync"] }
[build-dependencies]
serde_json = "1"
sqlx = { version = "0.6.1", features = [ "runtime-actix-rustls", "postgres", "time", "offline"] }
[dev-dependencies]
actix-rt = "2.7.0"
base64 = "0.13.0"
mktemp = "0.5.1"