bazzar/crates/config/Cargo.toml

22 lines
692 B
TOML
Raw Permalink Normal View History

2022-05-06 11:47:18 +02:00
[package]
name = "config"
version = "0.1.0"
edition = "2021"
2022-12-02 16:05:55 +01:00
[features]
full = ['actix-web', 'cookie']
default = []
2022-05-06 11:47:18 +02:00
[dependencies]
2024-06-24 14:54:46 +02:00
actix-web = { workspace = true, features = [], optional = true }
cookie = { workspace = true, features = ["signed"], optional = true }
parking_lot = { workspace = true, features = [] }
password-hash = { workspace = true, features = ["alloc"] }
2024-06-26 16:34:00 +02:00
rand.workspace = true
2024-06-24 14:54:46 +02:00
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true, features = [] }
thiserror = { workspace = true }
2022-12-20 15:34:20 +01:00
toml = { version = "0", features = [] }
tracing-subscriber = { version = "0", features = ['env-filter'] }
2024-06-24 14:54:46 +02:00
tracing-timing = { workspace = true, features = [] }