-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
81 lines (67 loc) · 1.62 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "luma"
version = "0.1.0"
authors = ["Sawyer Bergeron <[email protected]>"]
edition = "2021"
#build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
#lazy_static = "1.4.0"
#regex = "1"
logos = "0.11.4"
colored = "1.9"
term_size = "0.3.2"
#rangemap = "0.1.3"
crossbeam = "0.7"
rayon = "1.3.1"
#evmap = "10.0.2"
chashmap = "2.2.2"
static_assertions = "1.1.0"
dashmap = "4.0.2"
smallvec = { version="1.6.1", features=["const_generics"]}
lasso = { version="0.5.0", features=["multi-threaded", "ahasher"] }
#lock_api = "0.4.3"
#atomic-option = "0.1.2"
lazy_static = "1.4.0"
once_cell = "1.7.2"
tokio = { version = "1.8.0", features = ["full"] }
futures = "0.3.15"
async-recursion = "0.3.2"
async-trait = "0.1.50"
staged-builder = "0.1.0"
#parking_lot = "0.11.1"
indent = "0.1.1"
pretty = "0.11.2"
#enum-display-derive = "0.1.1"
derive_more = "*"
strum = "0.24.0"
strum_macros = "*"
boxcar = "0.1.0"
ouroboros = "0.15"
smallstr = { version="*", features=["union"] }
modular-bitfield = "0.11.2"
ifmt = "0.3.3"
either = "1.8.1"
uuid = { version="*", features=["v4"] }
console-subscriber = "0.1.8"
itertools = "0.10.5"
local-channel = "0.1.3"
tracing = "0.1"
tracing-subscriber = "0.3"
futures-intrusive = "0.5.0"
async-executor = "1.5.0"
lockfree = "0.5.1"
fixed = "1.23.0"
async-backtrace = "0.2"
rustc-hash = "1.1.0"
handlebars = "4.3.6"
rand = "0.8.5"
[profile.dev]
incremental = true
#panic = "abort"
[profile.release]
lto = true
[build-dependencies]
#[target.aarch64-apple-darwin]
#linker = "clang"
#rustflags = ["-C", "link-arg=-fuse-ld=mold"]