mirror of
https://gitlab.com/keys.openpgp.org/hagrid.git
synced 2025-10-05 16:12:44 +02:00
105 lines
2.6 KiB
TOML
105 lines
2.6 KiB
TOML
[package]
|
|
name = "hagrid"
|
|
version = "2.1.0"
|
|
authors = ["Vincent Breitmoser <look@my.amazin.horse>", "Kai Michaelis <kai@sequoia-pgp.org>", "Justus Winter <justus@sequoia-pgp.org>"]
|
|
build = "build.rs"
|
|
default-run = "hagrid"
|
|
edition = "2024"
|
|
rust-version = "1.89"
|
|
resolver = "3"
|
|
|
|
[workspace]
|
|
members = [
|
|
"database",
|
|
"hagridctl",
|
|
"tester",
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
anyhow = "1"
|
|
hagrid-database = { path = "database" }
|
|
aes-gcm = "0.10"
|
|
base64 = "0.10"
|
|
chrono = "0.4"
|
|
clap = ">= 4.5.37"
|
|
fs2 = "0.4"
|
|
gettext = "0.4"
|
|
gettext-macros = "0.6"
|
|
gettext-utils = "0.1"
|
|
glob = "0.3"
|
|
hex = "0.3"
|
|
hyperx = "1.4"
|
|
idna = "0.1"
|
|
indicatif = "0.11"
|
|
lettre = { version = "=0.10.0-rc.5", default-features = false }
|
|
log = ">= 0.4.27"
|
|
multipart = "~0.18"
|
|
num_cpus = "1"
|
|
pathdiff = "0.1"
|
|
r2d2 = "0.8"
|
|
r2d2_sqlite = "0.24"
|
|
rand = "0.6"
|
|
regex = "1"
|
|
rocket = ">= 0.5.1"
|
|
rocket_codegen = ">= 0.5.1"
|
|
rocket_dyn_templates = ">= 0.2.0"
|
|
rocket_i18n = { git = "https://github.com/Valodim/rocket_i18n", branch = "go-async", default-features = false }
|
|
rocket_prometheus = ">= 0.10.1"
|
|
rusqlite = "0.31"
|
|
self_cell = "1"
|
|
serde = "1.0"
|
|
serde_derive = "1"
|
|
serde_json = "1"
|
|
sha2 = "0.10"
|
|
tempfile = "3"
|
|
time = "0.1"
|
|
toml = "0.5"
|
|
url = "1"
|
|
uuid = "0.7"
|
|
vergen = "3"
|
|
walkdir = "2"
|
|
zbase32 = "0.1"
|
|
sequoia-openpgp = { version = "=1.17.0", default-features = false }
|
|
rstest = ">= 0.26.1"
|
|
|
|
[dependencies]
|
|
hagrid-database = { workspace = true }
|
|
chrono = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
rocket = { workspace = true, features = ["json"] }
|
|
rocket_dyn_templates = { workspace = true, features = ["handlebars"] }
|
|
rocket_codegen = { workspace = true }
|
|
sequoia-openpgp = { workspace = true, features = ["crypto-openssl"] }
|
|
multipart = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_derive = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
time = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
url = { workspace = true }
|
|
num_cpus = { workspace = true }
|
|
aes-gcm = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
base64 = { workspace = true }
|
|
uuid = { workspace = true, features = ["v4"] }
|
|
rocket_prometheus = { workspace = true }
|
|
gettext-macros = { workspace = true }
|
|
gettext-utils = { workspace = true }
|
|
gettext = { workspace = true }
|
|
glob = { workspace = true }
|
|
hyperx = { workspace = true }
|
|
# this is a slightly annoying update, so keeping this back for now
|
|
lettre = { workspace = true, features = ["builder", "file-transport", "sendmail-transport", "smtp-transport"] }
|
|
rocket_i18n= { workspace = true, features = ["rocket"] }
|
|
|
|
[build-dependencies]
|
|
vergen = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
regex = { workspace = true }
|
|
rstest = { workspace = true }
|
|
|
|
[[bin]]
|
|
name = "hagrid"
|
|
path = "src/main.rs"
|