-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (35 loc) · 650 Bytes
/
Cargo.toml
File metadata and controls
42 lines (35 loc) · 650 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = 'slither'
version = '0.1.0'
authors = ['Gus Caplan <me@gus.host>']
edition = '2018'
[lib]
name = 'slither'
path = 'src/lib.rs'
[[bin]]
name = 'slither'
path = 'src/bin.rs'
[profile.release]
lto = true
[dependencies.gc]
path = 'rust-gc/gc'
[dependencies.gc_derive]
path = 'rust-gc/gc_derive'
[dependencies]
clap = '2'
num = '0.2'
byteorder = '1.3'
indexmap = '1.0'
mio = '0.6'
lazy_static = '1.2'
threadpool = '1.7'
num_cpus = '1.9'
regex = '1.1'
rustyline = '5.0'
unic = '0.9'
phf = { version = '0.7' }
ryu = '0.2'
serde = { version = '1.0', features = ['derive'] }
serde_json = '1.0'
[build-dependencies]
phf_codegen = '0.7'