forked from mozilla/application-services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (29 loc) · 781 Bytes
/
Cargo.toml
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
[package]
name = "sync15"
edition = "2018"
version = "0.1.0"
authors = ["Thom Chiovoloni <[email protected]>"]
license = "MPL-2.0"
exclude = ["/android", "/ios"]
[features]
default = []
[dependencies]
base64 = "0.12"
ffi-support = "0.4"
serde = "1"
serde_derive = "1"
serde_json = "1"
url = "2.1"
log = "0.4"
lazy_static = "1.4"
base16 = "0.2"
rc_crypto = { path = "../support/rc_crypto", features = ["hawk"] }
viaduct = { path = "../viaduct" }
interrupt-support = { path = "../support/interrupt" }
error-support = { path = "../support/error" }
sync-guid = { path = "../support/guid", features = ["random"] }
sync15-traits = {path = "../support/sync15-traits"}
thiserror = "1.0"
anyhow = "1.0"
[dev-dependencies]
env_logger = { version = "0.7", default-features = false }