-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (38 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
45 lines (38 loc) · 1.07 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
[workspace]
resolver = "2"
members = [
"core",
"adapters",
"demos",
"nautilus",
]
[workspace.package]
version = "0.1.1"
edition = "2024"
license = "AGPL-3.0-or-later"
repository = "https://github.com/ecoPrimals/bingoCube"
authors = ["ecoPrimals Team"]
description = "Human-verifiable cryptographic commitment system"
[workspace.lints.rust]
unsafe_code = "forbid"
missing_docs = "warn"
rust_2018_idioms = { level = "warn", priority = -1 }
unreachable_pub = "warn"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
[profile.release]
lto = true
codegen-units = 1
strip = true
[workspace.dependencies]
bingocube-core = { path = "core", version = "0.1.1" }
bingocube-adapters = { path = "adapters", version = "0.1.1" }
bingocube-nautilus = { path = "nautilus", version = "0.1.1" }
blake3 = { version = "1.5", default-features = false, features = ["pure"] }
serde = { version = "1.0", features = ["derive"] }
thiserror = "2.0"
rand = "0.8"
egui = "0.29"
eframe = "0.29"