-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 800 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (24 loc) · 800 Bytes
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
[workspace]
resolver = "3"
members = [
"crates/core",
"crates/distributions",
"crates/linalg",
"crates/special",
"crates/testing",
]
[workspace.package]
version = "0.1.0-alpha.0"
edition = "2024"
license = "MPL-2.0"
authors = ["Andrej Kolčin <self@kaathewise.net>"]
[workspace.dependencies]
computare-core = { version = "0.1.0-alpha.0", path = "crates/core" }
computare-distributions = { version = "0.1.0-alpha.0", path = "crates/distributions" }
computare-special = { version = "0.1.0-alpha.0", path = "crates/special" }
computare-testing = { version = "0.1.0-alpha.0", path = "crates/testing" }
arbitrary = "1.4.2"
arbtest = "0.3.2"
libm = "0.2.16"
rand = { version = "0.10.1", default-features = false }
rug = { version = "1.30.0", default-features = false, features = ["float", "std"] }