forked from ingim/sage
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
51 lines (47 loc) · 1.34 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
[package]
name = "sage"
version = "0.0.1"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["In Gim <[email protected]>"]
keywords = ["deep learning", "machine learning", "differentiable programming", "scientific computing"]
categories = ["science", "mathematics"]
description = "Experimental deep learning framework"
homepage = "https://sage.rs/"
repository = "https://github.com/ingim/sage"
include = ["/src", "LICENSE-MIT", "LICENSE-APACHE", "README.md"]
[lib]
name = "sage"
crate-type = ["lib", "cdylib"]
[features]
cuda = ["rustacuda", "rustacuda_core", "rustacuda_derive"]
[dependencies]
futures = "0.3"
num-traits = "0.2"
thiserror = "1.0"
itertools = "0.10.2"
rand = "0.8.5"
rand_distr = "0.4.3"
smallvec = "1.8.0"
ocl = "0.19"
serde = "1.0.136"
lazy_static = "1.4.0"
rayon = "1.5.2"
by_address = "1.0.4"
jni = "0.5.2"
ureq = { version = "2.4.0", default-features = false, features = ["json", "charset"] }
rustacuda = { version = "0.1", optional = true }
rustacuda_core = { version = "0.1", optional = true }
rustacuda_derive = { version = "0.1", optional = true }
#
#
##tokio = { version = "1", features = ["full"] }
#
#[target.'cfg(target_os = "android")'.dependencies]
#ndk-glue = "0.6.2"
#
#[package.metadata.android.application]
#uses_cleartext_traffic = true
#
#[[package.metadata.android.uses_permission]]
#name = "android.permission.INTERNET"