-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
104 lines (99 loc) · 2.95 KB
/
Copy pathCargo.toml
File metadata and controls
104 lines (99 loc) · 2.95 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[workspace]
default-members = [
"rshyper",
]
members = [
"rshyper",
"algo",
"core",
"hmap",
]
resolver = "3"
[workspace.package]
authors = [
"FL03 <jo3mccain@icloud.com> (https://github.com/FL03)",
"Scattered-Systems <support@scsys.io> (https://github.com/scattered-systems)",
]
categories = [
"data-structures",
]
description = "This crate focuses on hypergraphs"
edition = "2024"
homepage = "https://github.com/FL03/rshyper/wiki"
keywords = [
"hypergraph",
"graph",
"topology",
]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/FL03/rshyper.git"
rust-version = "1.85.0"
version = "0.1.9"
[workspace.dependencies]
# local
rshyper = { default-features = false, path = "rshyper", version = "0.1.9" }
rshyper-algo = { default-features = false, path = "algo", version = "0.1.9" }
rshyper-core = { default-features = false, path = "core", version = "0.1.9" }
rshyper-hmap = { default-features = false, path = "hmap", version = "0.1.9" }
# custom
contained = { default-features = false, features = ["macros"], version = "0.2.3" }
rspace-traits = { default-features = false, features = ["macros"], version = "0.0.7" }
variants = { default-features = false, features = ["derive"], version = "0.0.1" }
# benchmarking
criterion = { version = "0.8" }
# concurrency & parallelism
rayon = { default-features = false, version = "1" }
# data structures
hashbrown = { default-features = false, version = "0.16" }
# error-handling
anyhow = { default-features = false, version = "1" }
thiserror = { default-features = false, version = "2" }
# numbers
num-traits = { default-features = false, version = "0.2" }
ordered-float = { default-features = false, version = "5" }
# randomization
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 = { version = "1" }
serde_json = { default-features = false, version = "1" }
# macros & utilities
itertools = { default-features = false, features = ["macros"], version = "0.14" }
paste = { version = "1" }
smart-default = { version = "0.7" }
strum = { default-features = false, features = ["derive"], version = "0.27" }
# logging
tracing = { default-features = false, features = ["attributes"], version = "0.1" }
tracing-subscriber = { default-features = false, features = [
"ansi",
"env-filter",
"fmt",
], version = "0.3" }
# wasm
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 = true
strip = "none"
[profile.release]
codegen-units = 16
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 0
overflow-checks = false
panic = "abort"
rpath = false
strip = "debuginfo"