-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
45 lines (42 loc) · 1.26 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
[package]
name = "neb"
version = "0.2.0"
authors = ["Hao Shi <[email protected]>"]
edition = "2021"
[lib]
name = "neb"
[dependencies]
libc = "*"
log = "*"
lazy_static = "*"
bifrost = { git = "https://github.com/shisoft/bifrost", branch = "develop" }
bifrost_plugins = { git = "https://github.com/shisoft/bifrost", branch = "develop" }
bifrost_proc_macro = { git = "https://github.com/shisoft/bifrost", branch = "develop" }
bifrost_hasher = { git = "https://github.com/shisoft/bifrost", branch = "develop" }
dovahkiin = { git = "https://github.com/ShisoftResearch/Dovahkiin.git", branch = "develop" }
lightning-containers = { git = "ssh://[email protected]/shisoft-x/Lightning.git", branch = "develop" }
rayon = "*"
serde = "*"
serde_derive = "*"
bincode = "*"
byteorder = "*"
parking_lot = "*"
rand = { version = "*", features = ["small_rng"] }
bitflags = "*"
itertools = "*"
smallvec = { version = "*", features = ["serde", "union"] }
num_cpus = "*"
static_assertions = "*"
serde_json = "*"
futures = {version = "0.3", features = ["executor", "thread-pool"] }
futures-timer = "3"
async-std = "1"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
crossbeam = "*"
crossbeam-epoch = "*"
num = "*"
core_affinity = "0.8.1"
[dev-dependencies]
env_logger = "*"
rayon = "*"