-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
62 lines (51 loc) · 985 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
authors = ["Mason Kramer <[email protected]>"]
build = "build.rs"
name = "seraphim"
version = "0.1.0"
edition = "2018"
[build-dependencies]
flexi_logger = "*"
protoc-rust = "*"
[build-dependencies.log]
features = ["max_level_trace", "release_max_level_error"]
version = "0.4"
[dependencies]
bincode = "*"
byteorder = "*"
clap = "*"
crc32c = "*"
failure = "*"
fallible-iterator = "*"
flexi_logger = "*"
fs2 = "*"
lazy_static = "*"
left-pad = "1.0.0"
petgraph = "*"
protobuf = "*"
rand = "0.6"
regex = "0.2.0"
retry = "*"
structopt = "*"
vec_map = "*"
[dependencies.clippy]
optional = true
version = "*"
[dependencies.ctrlc]
features = ["termination"]
version = "*"
[dependencies.log]
features = ["max_level_trace", "release_max_level_error"]
version = "0.4"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.tensorflow]
version = "0.12.0"
[profile]
[profile.bench]
lto = true
[profile.dev]
codegen-units = 4
[profile.release]
lto = true