hagrid-keyserver--hagrid/Cargo.toml

70 lines
1.3 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"
2018-08-16 18:35:19 +00:00
version = "0.1.0"
authors = ["Vincent Breitmoser <look@my.amazin.horse>", "Kai Michaelis <kai@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"
failure = "0.1.5"
2018-08-16 18:35:19 +00:00
rocket = "0"
rocket_codegen = "0"
2020-01-29 22:47:29 +00:00
sequoia-openpgp = { version = "0.13", default-features = false }
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"
lettre_email = { version = "0.9", git = "https://github.com/lettre/lettre" }
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"
uuid = "0.7"
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"
[dependencies.lettre]
2019-05-24 21:23:30 +00:00
version = "0.9"
default-features = false
# smtp-transport doesn't build (openssl problem)
features = ["file-transport", "sendmail-transport"]
git = "https://github.com/lettre/lettre"
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"