mirror of
https://codeberg.org/tyy/aspm
synced 2024-12-22 20:39:29 -07:00
954d6fac2e
The key querying first tries exact match on a fingerprint, and then falls back to contains() on the alias
35 lines
1,012 B
TOML
35 lines
1,012 B
TOML
[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/*"]
|
|
|
|
[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"
|
|
dialoguer = { version = "0.10.4", features = ["password"] }
|
|
argon2 = { version = "0.5.0", features = ["std"] }
|
|
data-encoding = "2.4.0"
|
|
sea-orm = { version = "0.11.3", features = ["sqlx-sqlite", "runtime-tokio-native-tls"] }
|
|
tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread"] }
|
|
sea-orm-migration = "0.11.3"
|
|
async-trait = "0.1.68"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|