-
Notifications
You must be signed in to change notification settings - Fork 258
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 1015 Bytes
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 1015 Bytes
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
[package]
name = "push"
edition = "2021"
version = "0.1.0"
authors = ["jrconlin <[email protected]>", "Phil Jenvey <[email protected]>"]
license = "MPL-2.0"
exclude = ["/android", "/ios"]
[dependencies]
serde = "1"
serde_json = "1"
bincode = "1.2"
lazy_static = "1.4"
base64 = "0.21"
rusqlite = { version = "0.37.0", features = ["bundled", "unlock_notify"] }
url = "2.2"
viaduct = { path = "../viaduct" }
error-support = { path = "../support/error" }
sql-support = { path = "../support/sql" }
rc_crypto = { path = "../support/rc_crypto", features = ["ece"] }
thiserror = "2"
uniffi = { version = "0.31" }
types = { path = "../support/types" }
[build-dependencies]
uniffi = { version = "0.31", features = ["build"] }
[dev-dependencies]
error-support = { path = "../support/error", features = ["testing"] }
mockito = { version = "0.31", default-features = false }
hex = "0.4"
tempfile = "3.1.0"
mockall = "0.12"
viaduct-dev = { path = "../support/viaduct-dev" }
nss = { path = "../support/rc_crypto/nss" }