mirror of
https://github.com/sergi0g/cup.git
synced 2025-11-08 13:13:49 -05:00
40 lines
1.3 KiB
TOML
40 lines
1.3 KiB
TOML
[package]
|
|
name = "cup"
|
|
version = "3.2.2"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.7", features = ["derive"] }
|
|
indicatif = { version = "0.17.8", optional = true }
|
|
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
|
|
xitca-web = { version = "0.6.2", optional = true }
|
|
liquid = { version = "0.26.6", optional = true }
|
|
bollard = "0.18.1"
|
|
once_cell = "1.19.0"
|
|
http-auth = { version = "0.1.9", default-features = false }
|
|
termsize = { version = "0.1.8", optional = true }
|
|
regex = { version = "1.10.5", default-features = false, features = ["perf"] }
|
|
chrono = { version = "0.4.38", default-features = false, features = ["std", "alloc", "clock"], optional = true }
|
|
reqwest = { version = "0.12.7", default-features = false, features = ["rustls-tls"] }
|
|
futures = "0.3.30"
|
|
reqwest-retry = "0.7.0"
|
|
reqwest-middleware = "0.3.3"
|
|
rustc-hash = "2.0.0"
|
|
http-link = "1.0.1"
|
|
itertools = "0.14.0"
|
|
serde_json = "1.0.133"
|
|
serde = "1.0.215"
|
|
tokio-cron-scheduler = { version = "0.13.0", default-features = false, optional = true }
|
|
|
|
[features]
|
|
default = ["server", "cli"]
|
|
server = ["dep:xitca-web", "dep:liquid", "dep:chrono", "dep:tokio-cron-scheduler"]
|
|
cli = ["dep:indicatif", "dep:termsize"]
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
strip = "symbols"
|
|
panic = "abort"
|
|
lto = "fat"
|
|
codegen-units = 1
|