-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (34 loc) · 1.03 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
[package]
name = "neuralarena-cdk"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
candid = "0.10.3"
ic-cdk = {version = "0.12.1", optional = true}
serde = "1.0.190"
serde_json = "1.0.108"
rmp-serde = "1.1.2"
rand = {version = "=0.8.5", optional = true}
ulid = {version = "=1.1.0", features = [], default-features = false, optional = true}
wasm-bindgen = {version = "0.2.84", optional = true}
three-rs = {version = "0.1.0", path = "../three-rs", features = [], optional = true}
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = {version = "=0.2.12", features = ["custom"], optional = true}
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
getrandom = {version = "=0.2.12", optional = true}
[profile.dev]
opt-level = 3
[profile.release]
codegen-units = 1
[features]
cppmalloc = []
random = ["dep:ic-cdk", "dep:rand", "dep:getrandom"]
uniqueid = ["dep:ulid", "random"]
serdeser = ["dep:ic-cdk"]
db = ["serdeser"]
nn = []
js = ["dep:wasm-bindgen"]
three = ["dep:three-rs"]
default = ["three"]