1
0
Fork 0
mirror of https://gitlab.com/hagrid-keyserver/hagrid.git synced 2023-02-13 20:55:02 -05:00
hagrid-keyserver--hagrid/Cargo.toml

72 lines
1.5 KiB
TOML
Raw Normal View History

2018-08-16 14:35:19 -04:00
[package]
2018-11-22 10:40:59 -05:00
name = "hagrid"
2018-08-16 14:35:19 -04: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 16:49:02 -04:00
edition = "2018"
2018-08-16 14:35:19 -04:00
[workspace]
members = [
"database",
2019-05-20 17:19:37 -04:00
"hagridctl",
]
2018-08-16 14:35:19 -04:00
[dependencies]
hagrid-database = { path = "database" }
2020-01-29 17:47:29 -05:00
chrono = "0.4.10"
failure = "0.1.5"
2018-08-16 14:35:19 -04:00
rocket = "0"
rocket_codegen = "0"
2020-02-08 05:38:26 -05:00
sequoia-openpgp = { version = "0.14", default-features = false }
2018-08-16 14:35:19 -04: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 14:06:28 -05:00
handlebars = "1.1.0"
num_cpus = "1.0"
2019-04-02 08:54:40 -04:00
ring = "0.13"
base64 = "0.10"
2020-01-29 18:39:11 -05:00
uuid = { version = "0.7", features = [ "v4" ] }
rocket_prometheus = "0.2"
lazy_static = "1.3.0"
2019-08-27 17:56:19 -04:00
rocket_i18n = "0.4"
2019-08-28 14:33:24 -04:00
gettext-macros = "0.5"
runtime-fmt = "0.4"
2019-08-28 14:33:24 -04:00
gettext = "0.4"
glob = "0.3"
rfc2047 = "0.1"
2020-01-29 17:59:36 -05:00
[patch.crates-io]
runtime-fmt = { git = "https://github.com/Valodim/runtime-fmt", rev = "44c15d832cb327ef33f95548a9a964d98c006fe4" }
[dependencies.lettre]
2020-01-29 18:39:11 -05:00
version = "0.10.0-pre"
default-features = false
# smtp-transport doesn't build (openssl problem)
2020-01-29 18:39:11 -05:00
features = ["builder", "file-transport", "sendmail-transport"]
git = "https://github.com/lettre/lettre"
2018-09-19 16:24:38 -04:00
[dependencies.rocket_contrib]
version = "0"
default-features = false
2019-05-20 17:17:50 -04: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"