pass_manager/Cargo.toml

50 lines
1016 B
TOML
Raw Normal View History

2023-04-23 17:54:16 +00:00
[package]
name = "pass_manager"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
strip = true
2023-12-10 07:33:25 +00:00
lto = true
codegen-units = 1
2023-04-23 17:54:16 +00:00
[workspace]
2023-11-25 16:29:06 +00:00
members = [".", "entity", "cryptography"]
2023-04-23 17:54:16 +00:00
2023-11-19 11:45:46 +00:00
[workspace.lints.clippy]
pedantic = "warn"
all = "warn"
nursery = "warn"
[lints]
workspace = true
2023-04-23 17:54:16 +00:00
[dependencies]
ahash = "0.8"
anyhow = "1"
arrayvec = "0.7"
2024-03-05 13:38:31 +00:00
base64 = "0.22"
cryptography = { version = "0.1", path = "cryptography" }
dotenvy = "0.15"
entity = { version = "0.1", path = "entity" }
futures = "0.3"
2023-11-16 14:11:28 +00:00
itertools = "0.12"
log = "0.4"
parking_lot = "0.12"
pretty_env_logger = "0.5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2024-04-16 13:02:48 +00:00
serde_yaml = "0.9"
2023-07-25 14:44:12 +00:00
sha2 = "0.10"
teloxide = { version = "0.12", features = [
"macros",
"ctrlc_handler",
"rustls",
"throttle",
], default-features = false }
thiserror = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
trim-in-place = "0.1"