-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (54 loc) · 1.22 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (54 loc) · 1.22 KB
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
[package]
name = "resin"
edition = "2021"
version = "0.0.12"
description = "A reactive, probabilistic logic programming language using Reactive Circuits."
repository = "https://github.com/simon-kohaut/resin"
keywords = [
"probabilistic logic",
"reactive circuits",
]
[profile.dev]
opt-level = 0
[profile.dev.package."*"]
opt-level = 2
[profile.test]
opt-level = 3
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
[lib]
name = "resin"
crate-type = ["cdylib", "rlib"]
[dependencies]
petgraph = "*"
plotly = "*"
ndarray = { version = "0.17.0", features=["approx"] }
ndarray-rand = "0.16.0"
ndarray-npy = "*"
nalgebra = "0.34.0"
itertools = "*"
nom = "*"
regex = "*"
rand = "0.9"
lazy_static = "*"
linfa = "0.4"
linfa-nn = "0.5"
linfa-clustering = "0.4"
linfa-datasets = { version = "0.4", features = ["iris"] }
rand_xoshiro = "*"
approx = "*"
clingo = { version = "0.7.2", features = ["derive"] }
clap = { version = "4.4.1", features = ["derive"] }
rayon = "*"
chashmap = "*"
atomic_float = "*"
rand_distr = "*"
cpu-time = "*"
rand_chacha = "*"
polars = { version = "*", features = ["rows"] }
tempfile = "*"
pyo3 = { version = "0.27", features = ["extension-module"], optional = true }
[features]
python-bindings = ["dep:pyo3"]