1
0
Fork 0
mirror of https://codeberg.org/tyy/aspm synced 2024-12-22 19:29:28 -07:00
aspm/Cargo.toml
TymanWasTaken 5390a9389a
Handful of things
- Update redb to fix regression when loading db multiple times (though I am likely just going to replace redb with sqlite)

- Rename AspKeyType::EdDSA to AspKeyType::Ed25519

- Make `aspm keys list` look nicer
2023-06-30 23:59:30 -04:00

24 lines
675 B
TOML

[package]
name = "aspm"
authors = ["Ty"]
description = "A tool to manage ariadne signature profiles, implementing v0 of the specification"
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/*"]
[dependencies]
anyhow = "1.0.71"
app_dirs2 = "2.5.5"
clap = { version = "4.3.9", features = ["derive", "unstable-styles", "env"] }
thiserror = "1.0.40"
asp = { path = "crates/asp" }
indoc = "2.0.1"
anstyle = "1.0.1"
redb = "1.0.3"
dialoguer = { version = "0.10.4", features = ["password"] }
argon2 = { version = "0.5.0", features = ["std"] }
data-encoding = "2.4.0"