pass_manager/Cargo.toml

56 lines
1.1 KiB
TOML

[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
lto = true
codegen-units = 1
[workspace]
members = [".", "entity", "cryptography"]
[workspace.lints.clippy]
pedantic = "warn"
all = "warn"
nursery = "warn"
[lints]
workspace = true
[dependencies]
ahash = "0.8"
anyhow = "1"
arrayvec = "0.7"
base64 = "0.21"
cryptography = { version = "0.1", path = "cryptography" }
dotenvy = "0.15"
entity = { version = "0.1", path = "entity" }
futures = "0.3"
hex = "0.4"
itertools = "0.12"
log = "0.4"
parking_lot = "0.12"
pretty_env_logger = "0.5"
serde = "1"
serde_json = "1"
sha2 = "0.10"
sqlx = { version = "0.7", features = [
"mysql",
"runtime-tokio-rustls",
"macros",
"migrate",
], default-features = false }
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"