-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
70 lines (57 loc) · 1.07 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
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
authors.workspace = true
build = "build.rs"
categories.workspace = true
description.workspace = true
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
name = "rstmt-neo"
readme.workspace = true
repository.workspace = true
version.workspace = true
[features]
default = []
full = [
"default",
"rand",
"serde",
]
# [FF] Dependencies
rand = [
"num/rand",
"rstmt-core/rand",
]
serde = [
"dep:serde",
"petgraph/serde",
"rstmt-core/serde",
]
[lib]
bench = true
crate-type = ["cdylib", "rlib"]
doctest = false
test = true
[build-dependencies]
[dependencies]
itertools = "0.13"
num = "0.4"
paste.workspace = true
petgraph = "0.7"
strum.workspace = true
thiserror = "1"
[dependencies.serde]
features = ["derive"]
optional = true
version = "1"
[dependencies.rstmt-core]
path = "../core"
version = "0.0.2"
[dev-dependencies]
lazy_static.workspace = true
[package.metadata.docs.rs]
all-features = true
rustc-args = ["--cfg", "docsrs"]
[target.wasm32-unknown-unknown.dependencies]
[target.wasm32-wasi]