1
0
Fork 0
mirror of https://codeberg.org/tyy/aspm synced 2024-12-23 01:19:28 -07:00
aspm/Cargo.toml

46 lines
1.3 KiB
TOML
Raw Normal View History

[package]
name = "aspm"
authors = ["Ty"]
description = "A tool to manage ariadne signature profiles, implementing v0 of the specification"
repository = "https://codeberg.org/tyy/aspm"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["crates/*"]
2023-06-28 23:38:09 -06:00
[dependencies]
2024-01-28 15:19:37 -07:00
anyhow = "1.0.79"
2023-06-28 23:38:09 -06:00
app_dirs2 = "2.5.5"
2024-01-28 15:19:37 -07:00
clap = { version = "4.4.18", features = ["derive", "unstable-styles", "env"] }
thiserror = "1.0.56"
asp = { path = "crates/asp" }
2024-01-28 15:19:37 -07:00
indoc = "2.0.4"
anstyle = "1.0.4"
dialoguer = { version = "0.11.0", features = ["password"] }
argon2 = { version = "0.5.3", features = ["std"] }
data-encoding = "2.5.0"
sea-orm = { version = "0.12.12", features = ["sqlx-sqlite", "runtime-tokio-rustls"] }
2024-01-28 15:19:37 -07:00
async-trait = "0.1.77"
tokio = "1.35.1"
clap-stdin = "0.4.0"
gpgme = { version = "0.11.0", optional = true }
pgp = { version = "0.10.2", optional = true }
2024-01-28 15:19:37 -07:00
josekit = { version = "0.8.5", optional = true }
elliptic-curve = { version = "0.13.8", optional = true }
2024-01-28 16:49:38 -07:00
aes-gcm = "0.10.3"
migrations = { path = "crates/migrations" }
[features]
gpg-compat = ["dep:gpgme", "dep:pgp", "dep:josekit", "dep:elliptic-curve"]
default = ["gpg-compat"]
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"