-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 795 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 795 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
[package]
name = "hex-database"
edition = "2018"
version = "0.1.0"
authors = ["Lorenz Schmidt <bytesnake@mailbox.org>"]
[dependencies.rusqlite]
version = "0.14.0"
features = ["bundled"]
optional = true
[dependencies]
serde = { version = "1.0", optional = true, features = ["derive"] }
sha2 = {version = "0.8", optional = true}
hex-gossip = { path = "./gossip/", optional = true }
bincode = {version = "1.0", optional = true }
futures = {version = "0.1", optional = true }
tokio = {version = "0.1", default-features = false, features = ["io", "reactor", "tcp"], optional = true }
log = "0.4"
tempfile = "3"
[dev-dependencies]
hex-conf = { path = "../conf/" }
env_logger = "0.6.0"
telebot = "0.3"
[features]
default = ["rusqlite", "serde", "hex-gossip", "sha2", "bincode", "futures", "tokio"]