-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (75 loc) · 2.34 KB
/
Cargo.toml
File metadata and controls
79 lines (75 loc) · 2.34 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[workspace]
default-members = ["rspace"]
members = [
"rspace",
"core",
"traits",
]
resolver = "3"
[workspace.package]
authors = [
"FL03 <joe@pzzld.org> (https://github.com/FL03)",
]
categories = []
description = "rspace focuses on establishing a robust foundation for exploring and utilitizing containers, spaces, fields, and other abstractions in Rust."
edition = "2024"
homepage = "https://github.com/FL03/rspace/wiki"
keywords = ["containers", "hkt", "space", "mathematics", "science"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/FL03/rspace.git"
rust-version = "1.85.0"
version = "0.0.9"
[workspace.dependencies]
rspace = { default-features = false, path = "rspace", version = "0.0.9" }
rspace-core = { default-features = false, path = "core", version = "0.0.9" }
rspace-traits = { default-features = false, path = "traits", version = "0.0.9" }
# development & benchmarking
criterion = { version = "0.8" }
# data structures
hashbrown = { default-features = false, version = "0.16" }
ndarray = { default-features = false, version = "0.17" }
# error handling
anyhow = { default-features = false, version = "1" }
thiserror = { default-features = false, version = "2" }
# logging
tracing = { default-features = false, features = ["attributes"], version = "0.1" }
tracing-subscriber = { version = "0.3" }
# math
num-complex = { default-features = false, version = "0.4" }
num-traits = { default-features = false, version = "0.2" }
# random
getrandom = { default-features = false, version = "0.3" }
rand = { default-features = false, version = "0.9" }
rand_distr = { default-features = false, version = "0.5" }
# serialization
serde = { default-features = false, features = ["derive"], version = "1" }
serde_derive = { default-features = false, version = "1" }
serde_json = { default-features = false, version = "1" }
# macros & utilities
paste = { version = "1" }
# WebAssembly
wasm-bindgen = { default-features = false, version = "0.2" }
# ********* Profiles *********
[profile.dev]
codegen-units = 256
debug = true
debug-assertions = true
incremental = true
lto = "thin"
opt-level = 2
overflow-checks = true
panic = "abort"
rpath = false
strip = false
[profile.release]
codegen-units = 16
debug = false
debug-assertions = false
incremental = false
lto = "fat"
opt-level = "z"
overflow-checks = false
panic = "abort"
rpath = false
strip = "debuginfo"