hagrid-keyserver--hagrid/Cargo.toml

64 lines
1.5 KiB
TOML
Raw Permalink Normal View History

2018-08-16 18:35:19 +00:00
[package]
2018-11-22 15:40:59 +00:00
name = "hagrid"
2022-04-09 11:37:51 +00:00
version = "1.2.1"
2021-06-24 10:04:11 +00:00
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"
2019-09-02 20:49:02 +00:00
edition = "2018"
2018-08-16 18:35:19 +00:00
[workspace]
members = [
"database",
2019-05-20 21:19:37 +00:00
"hagridctl",
]
2018-08-16 18:35:19 +00:00
[dependencies]
hagrid-database = { path = "database" }
2020-01-29 22:47:29 +00:00
chrono = "0.4.10"
2020-11-04 21:21:00 +00:00
anyhow = "1"
rocket = { version = "0.5.0-rc.2", features = [ "json" ] }
rocket_dyn_templates = { version = "0.1.0-rc.2", features = ["handlebars"] }
rocket_codegen = "0.5.0-rc.2"
sequoia-openpgp = { version = "1", default-features = false, features = ["crypto-nettle"] }
2018-08-16 18:35:19 +00:00
multipart = "0"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
time = "0.1"
tempfile = "3.0"
structopt = "0.2"
url = "1.6"
num_cpus = "1.0"
2019-04-02 12:54:40 +00:00
ring = "0.13"
base64 = "0.10"
2020-01-29 23:39:11 +00:00
uuid = { version = "0.7", features = [ "v4" ] }
rocket_prometheus = "0.10.0-rc.1"
lazy_static = "1.3.0"
2022-02-26 15:34:57 +00:00
gettext-macros = "0.6.1"
gettext-utils = "0.1"
2019-08-28 18:33:24 +00:00
gettext = "0.4"
glob = "0.3"
hyperx = "1.4"
# this is a slightly annoying update, so keeping this back for now
lettre = { version = "=0.10.0-rc.5", default-features = false, features = ["builder", "file-transport", "sendmail-transport"] }
2022-01-10 20:30:27 +00:00
[dependencies.rocket_i18n]
git = "https://github.com/Plume-org/rocket_i18n"
branch = "go-async"
2022-01-10 20:30:27 +00:00
default-features = false
features = ["rocket"]
[build-dependencies]
vergen = "3"
[dev-dependencies]
regex = "1"
[[bin]]
name = "hagrid"
path = "src/main.rs"
[[bin]]
name = "hagrid-delete"
path = "src/delete.rs"