mirror of
https://github.com/sergi0g/cup.git
synced 2025-11-18 09:53:43 -05:00
Some checks are pending
Nightly Release / build-binary (map[bin:cup command:build name:cup-linux-aarch64 os:ubuntu-latest release_for:linux-aarch64 target:aarch64-unknown-linux-musl]) (push) Waiting to run
Nightly Release / build-binary (map[bin:cup command:build name:cup-linux-x86_64 os:ubuntu-latest release_for:linux-x86_64 target:x86_64-unknown-linux-musl]) (push) Waiting to run
Nightly Release / build-image (push) Waiting to run
35 lines
968 B
TOML
35 lines
968 B
TOML
[package]
|
|
name = "cup"
|
|
version = "1.1.3"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.7", features = ["derive"] }
|
|
indicatif = { version = "0.17.8", optional = true }
|
|
tokio = {version = "1.38.0", features = ["rt", "rt-multi-thread", "macros"]}
|
|
ureq = { version = "2.9.7", features = ["tls"] }
|
|
serde_json = "1.0"
|
|
rayon = "1.10.0"
|
|
xitca-web = { version = "0.5.0", optional = true, features = ["logger"] }
|
|
liquid = { version = "0.26.6", optional = true }
|
|
bollard = "0.16.1"
|
|
once_cell = "1.19.0"
|
|
http-auth = { version = "0.1.9", features = [] }
|
|
termsize = { version = "0.1.8", optional = true }
|
|
regex = "1.10.5"
|
|
chrono = { version = "0.4.38", default-features = false, features = ["std", "alloc", "clock"] }
|
|
home = "0.5.9"
|
|
serde = "1.0.204"
|
|
|
|
[features]
|
|
default = ["server", "cli"]
|
|
server = ["dep:xitca-web", "dep:liquid"]
|
|
cli = ["dep:indicatif", "dep:termsize"]
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
strip = "symbols"
|
|
panic = "abort"
|
|
lto = "fat"
|
|
codegen-units = 1
|