forked from ShisoftResearch/Skyhooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (33 loc) · 773 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
33
34
35
36
37
38
39
[package]
name = "skyhooks"
version = "0.1.0"
authors = ["Hao Shi <shisoftgenius@gmail.com>"]
edition = "2018"
[lib]
crate-type = ["dylib", "rlib", "staticlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libc = "*"
log = { version = "*" }
lazy_static = { version = "*" }
num_cpus = "1.0"
lfmap = { git = "https://github.com/shisoft/lfmap.rs", branch = "develop" }
crossbeam-queue = "*"
crossbeam = "*"
sys-info = "*"
errno = "*"
rand = "*"
rand_xoshiro = "*"
lazy-init = "*"
seahash = "*"
smallvec = "*"
thread_local = "1.0"
[dependencies.regex]
version = "1.3.1"
default-features = false
features = ["std"]
[dev-dependencies]
env_logger = "0.7.1"
rand_xorshift = "*"
[features]
bump_heap_only = []