forked from tensorflow/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (36 loc) · 1002 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
[package]
name = "tensorflow"
version = "0.11.0"
authors = ["Adam Crume <[email protected]>"]
description = "Rust language bindings for TensorFlow."
license = "Apache-2.0"
keywords = ["TensorFlow", "bindings"]
readme = "README.md"
repository = "https://github.com/tensorflow/rust"
documentation = "https://tensorflow.github.io/rust/tensorflow"
[dependencies]
libc = "0.2.43"
aligned_alloc = "0.1.3"
num-complex = { version = "0.2.1", default-features = false }
tensorflow-sys = { version = "0.14.0", path = "tensorflow-sys" }
byteorder = "1.2.7"
crc = "1.8.1"
[dev-dependencies]
random = "0.12.2"
[features]
tensorflow_gpu = ["tensorflow-sys/tensorflow_gpu"]
tensorflow_unstable = []
# This is for testing purposes; users should not use this.
nightly = []
[workspace]
[[example]]
name = "addition"
[[example]]
name = "expressions"
required-features = ["tensorflow_unstable"]
[[example]]
name = "regression"
[[example]]
name = "regression_savedmodel"
[[example]]
name = "regression_checkpoint"