29 lines
1.1 KiB
TOML
29 lines
1.1 KiB
TOML
[package]
|
|
name = "license_server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.81"
|
|
axum = { version = "=0.7.4", features = ["default", "macros", "http2"] }
|
|
axum-extra = { version = "0.9.3", features = ["query", "form"] }
|
|
axum-macros = "0.4.1"
|
|
base64 = "0.22.0"
|
|
cert_lib = { path = "../cert_lib" }
|
|
chrono = { version = "0.4.37", features = ["serde"] }
|
|
chrono-tz = { version = "0.8.6", features = ["serde"] }
|
|
openssl = "0.10.64"
|
|
rand = "0.8.5"
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
serde_json = { version = "1.0.115", features = ["raw_value"] }
|
|
serde_qs = { version = "0.12.0", features = ["axum"] }
|
|
serde_repr = "0.1.18"
|
|
tokio = { version = "1.37.0", features = ["full"] }
|
|
tokio-util = { version = "0.7.10", features = ["io", "io-util", "net", "rt", "full"] }
|
|
tracing = { version = "0.1.40", features = ["attributes"] }
|
|
tracing-appender = "0.2.3"
|
|
tracing-error = "0.2.0"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "time", "local-time", "json", "serde"] }
|