-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
57 lines (46 loc) · 1.22 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
[package]
name = "glenside"
version = "0.1.0"
authors = ["Gus Smith <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# See src/lib.rs for documentation of Glenside's features.
[features]
default = ['tvm', 'cplex']
cplex = ['rplex']
run-on-github-actions = []
[dev-dependencies]
clap = "2.33.1"
env_logger = "0.7.1"
ndarray-rand = "0.11.0"
test-logger = "0.1.0"
ndarray-npy = "0.6.0"
[dependencies]
approx = "0.3.2"
egg = "0.7"
either = "1.5.3"
itertools = "0.9.0"
log = "0.4.8"
num-traits = "0.2.11"
serde_json = "1.0"
ordered-float = "2.0.0"
[dependencies.rand]
version = "0.7.3"
# Limited features so we can compile to WASM. Probably slows things down when
# not compiling to WASM, but whatever!
default-features = false
features = ['getrandom', 'wasm-bindgen']
[dependencies.rplex]
optional = true
# TODO(@gussmith23) See if we can get these changes merged in
git = "https://github.com/gussmith23/rplex"
[dependencies.tvm]
rev = "7688db7ac5c4e1a043bf0dddeed75780ec49e70a"
git = "https://github.com/apache/tvm"
optional = true
[dependencies.ndarray]
version = "0.13.0"
features = ["approx"]
[dependencies.serde]
version = "1.0"
features = ["derive"]