pass_manager/Cargo.toml

33 lines
968 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
[workspace]
members = [".", "migration", "entity", "cryptography"]
2023-04-23 17:54:16 +00:00
[dependencies]
2023-05-27 18:56:58 +00:00
anyhow = "1.0.71"
2023-05-07 15:07:48 +00:00
arrayvec = "0.7.2"
cryptography = { version = "0.1.0", path = "cryptography" }
2023-04-23 17:54:16 +00:00
dotenv = "0.15.0"
entity = { version = "0.1.0", path = "entity" }
futures = "0.3.28"
itertools = "0.10.5"
2023-04-24 17:48:34 +00:00
log = "0.4.17"
migration = { version = "0.2.0", path = "migration" }
parking_lot = "0.12.1"
2023-05-27 18:56:58 +00:00
pretty_env_logger = "0.5.0"
sea-orm = { version = "0.11.3", features = ["sqlx-mysql", "runtime-tokio-rustls"] }
serde = "1.0.163"
serde_json = "1.0.96"
2023-04-27 13:25:23 +00:00
teloxide = { version = "0.12.2", features = ["macros", "ctrlc_handler", "rustls", "throttle"], default-features = false }
thiserror = "1.0.40"
2023-05-27 18:56:58 +00:00
tokio = { version = "1.28.1", features = ["macros", "rt-multi-thread"] }
trim-in-place = "0.1.7"