summaryrefslogtreecommitdiffstats
path: root/store/Cargo.toml
blob: 816adff147027e550868e894325e9084a831eb97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "sequoia-store"
version = "0.1.0"
authors = ["Justus Winter <justus@pep-project.org>"]
build = "build.rs"

[features]
default = ["background-services"]
background-services = []

[dependencies]
openpgp = { path = "../openpgp" }
sequoia-core = { path = "../core" }
sequoia-net = { path = "../net" }
capnp = "0.8"
capnp-rpc = "0.8"
failure = "0.1.1"
futures = "0.1.17"
rand = "0.5"
rusqlite = "0.13"
time = "0.1.38"
tokio-core = "0.1.10"
tokio-io = "0.1.4"

[build-dependencies]
capnpc = "0.8"

[lib]
name = "sequoia_store"
path = "src/lib.rs"

[[bin]]
name = "keystore"
path = "src/server.rs"
doc = false
required-features = ["background-services"]