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
Justus Winter d5c4c74656
Move the database module to a new crate.
- This way we can share the code between multiple binaries without
    running the common tests twice.

  - Fixes #45.
2019-03-05 17:30:56 +01:00

59 lines
1.1 KiB
TOML

[package]
name = "hagrid"
version = "0.1.0"
authors = ["Kai Michaelis <kai@sequoia-pgp.org>"]
build = "build.rs"
[workspace]
members = [
"database",
]
[dependencies]
hagrid-database = { path = "database" }
failure = "0.1.5"
rocket = "0"
rocket_codegen = "0"
sequoia-openpgp = { git = "https://gitlab.com/sequoia-pgp/sequoia.git", rev = "e07bb25de0b2291088f88dc5360f3d04f702049c" }
multipart = "0"
log = "0"
# rand = "0.5"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
time = "0.1"
tempfile = "3.0"
structopt = "0.2"
url = "1.6"
# hex = "0.3"
lettre_email = "0.8"
handlebars = "1.1.0"
# base64 = "0.10"
# pathdiff = "0.1"
num_cpus = "1.0"
fs_extra = "1.0"
[dependencies.lettre]
version = "0.8"
default-features = false
# smtp-transport doesn't build (openssl problem)
features = ["file-transport", "sendmail-transport"]
[dependencies.rocket_contrib]
version = "0"
default-features = false
features = ["handlebars_templates"]
[build-dependencies]
vergen = "3"
[dev-dependencies]
regex = "1"
[[bin]]
name = "hagrid"
path = "src/main.rs"
[[bin]]
name = "hagrid-import"
path = "src/import.rs"