mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 00:02:03 +00:00
c0b87cc7d7
* supercharge * supercharge * progress * progress * display config * display config * display config * display config * fix extensions * fix build * disable nsjail = false for test
44 lines
1.1 KiB
TOML
44 lines
1.1 KiB
TOML
[package]
|
|
name = "windmill-common"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
sqlx = ["dep:sqlx"]
|
|
hyper = ["dep:hyper"]
|
|
tokio = ["dep:tokio"]
|
|
axum = ["dep:axum", "dep:tracing"]
|
|
reqwest = ["dep:reqwest"]
|
|
prometheus = ["dep:prometheus"]
|
|
tracing_init = [
|
|
"dep:tracing",
|
|
"dep:tracing-subscriber",
|
|
]
|
|
|
|
|
|
[lib]
|
|
name = "windmill_common"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
hmac.workspace = true
|
|
sha2.workspace = true
|
|
thiserror.workspace = true
|
|
anyhow.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
chrono.workspace = true
|
|
hex.workspace = true
|
|
rand.workspace = true
|
|
sqlx = { workspace = true, optional = true, features = ["postgres"] }
|
|
uuid.workspace = true
|
|
prometheus = { workspace = true, optional = true }
|
|
tracing = { workspace = true, optional = true }
|
|
axum = { workspace = true, optional = true }
|
|
hyper = { workspace = true, optional = true }
|
|
tokio = { workspace = true, optional = true }
|
|
reqwest = { workspace = true, optional = true }
|
|
tracing-subscriber = { workspace = true, optional = true }
|
|
lazy_static.workspace = true |