-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (43 loc) · 1.39 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "pod"
version = "0.4.4"
authors = [
"Bijun Li <[email protected]>",
"Ruben Seggers <[email protected]>",
"Vasili Novikov (copyright transferred to Polis) <[email protected]>",
"Youp Mickers (copyright transferred to Polis) <[email protected]>",
]
edition = "2018"
publish = false # Prevent accidental publishing
[dependencies]
bytes = "1.1.0"
chacha20poly1305 = "0.9.0"
chrono = { version = "0.4.19", features = ["serde"] }
env_logger = "0.9.0"
field_count = "0.1.1"
field_count_derive = "0.1.1"
hex = "0.4.3"
lazy_static = "1.4.0"
lettre = { version = "0.10.0-rc.3", default-features = false, features = ["builder", "rustls-tls", "smtp-transport"] }
libc = "0.2.104"
log = "0.4.14"
percent-encoding = "2.1.0"
rand = { version = "0.8.4", features = ["getrandom"] }
refinery = { version = "0.7.0", features = ["rusqlite"] }
regex = "1.5.4"
rusqlite = { version = "0.25.3", features = ["sqlcipher"] }
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.68"
serde_path_to_error = "0.1.5"
sha2 = "0.9.8"
structopt = { version = "0.3.25", features = ["color", "suggestions"] }
tokio = { version = "1.12.0", features = ["full"] }
warp = { version = "0.3.1", default-features = false, features = ["tls"] }
zeroize = "1.4.2"
[dev-dependencies]
criterion = "0.3.5"
[profile.release]
lto = true
[[bench]]
name = "rusqlite_reconnection"
harness = false