hagrid-keyserver--hagrid/Cargo.toml

73 lines
1.6 KiB
TOML
Raw Normal View History

2018-08-16 18:35:19 +00:00
[package]
2018-11-22 15:40:59 +00:00
name = "hagrid"
2021-06-24 10:04:11 +00:00
version = "1.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"
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"
2018-08-16 18:35:19 +00:00
rocket = "0"
rocket_codegen = "0"
2021-10-25 14:04:02 +00:00
sequoia-openpgp = { version = "1.5", 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"
2018-12-25 19:06:28 +00:00
handlebars = "1.1.0"
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.2"
lazy_static = "1.3.0"
2019-08-27 21:56:19 +00:00
rocket_i18n = "0.4"
2019-08-28 18:33:24 +00:00
gettext-macros = "0.5"
runtime-fmt = "0.4"
2019-08-28 18:33:24 +00:00
gettext = "0.4"
glob = "0.3"
rfc2047 = "0.1"
2020-01-29 22:59:36 +00:00
[patch.crates-io]
runtime-fmt = { git = "https://github.com/Valodim/runtime-fmt", rev = "44c15d832cb327ef33f95548a9a964d98c006fe4" }
[dependencies.lettre]
2020-01-29 23:39:11 +00:00
version = "0.10.0-pre"
default-features = false
# smtp-transport doesn't build (openssl problem)
2020-01-29 23:39:11 +00:00
features = ["builder", "file-transport", "sendmail-transport"]
git = "https://github.com/lettre/lettre"
2020-06-03 15:09:25 +00:00
rev = "245c600c82ee18b766e8729f005ff453a55dce34"
2018-09-19 20:24:38 +00:00
[dependencies.rocket_contrib]
version = "0"
default-features = false
2019-05-20 21:17:50 +00:00
features = ["handlebars_templates", "json"]
[build-dependencies]
vergen = "3"
[dev-dependencies]
regex = "1"
[[bin]]
name = "hagrid"
path = "src/main.rs"
[[bin]]
name = "hagrid-delete"
path = "src/delete.rs"