Fingerlink/Cargo.toml
Karcsesz e30e867933
All checks were successful
/ cargo test (push) Successful in 22s
First UX pass of new list command
2024-05-07 18:03:25 +02:00

35 lines
No EOL
1.4 KiB
TOML

[package]
name = "fingerlink"
version = "0.1.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["server", "editor"]
server = ["tokio", "qpidfile", "axum"]
editor = ["reqwest", "tempfile", "which", "nix", "ratatui", "crossterm"]
[dependencies]
qpidfile = { version = "0.9.2", optional = true }
tokio = { version = "1.37.0", features = ["rt-multi-thread", "signal"], optional = true }
# dashmap = { version = "5.5.3", features = ["inline"]}
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["fmt"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
thiserror = "1.0.58"
clap = { version = "4.5.4", features = ["derive"] }
axum = { version = "0.7.5", optional = true }
reqwest = { version = "0.12.2", optional = true, default-features = false, features = ["rustls-tls", "blocking", "json", "gzip", "brotli", "deflate"] }
tempfile = { version = "3.10.1", optional = true }
which = { version = "6.0.1", optional = true }
nix = { version = "0.28.0", optional = true, default-features = false, features = ["signal"] }
urlencoding = { version = "2.1.3"}
ratatui = { version = "0.26.2", optional = true }
crossterm = { version = "0.27.0", optional = true }
[profile.release] # 💛 @Ryze@equestria.social
strip = "symbols"
lto = "fat"
codegen-units = 1