-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (34 loc) · 915 Bytes
/
Cargo.toml
File metadata and controls
47 lines (34 loc) · 915 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[workspace]
# Require version 2 to avoid "feature" additiveness for dev-dependencies
# https://doc.rust-lang.org/cargo/reference/resolver.html#feature-resolver-version-2
resolver = "2"
members = [
"crates/*",
"examples/*",
]
[workspace.package]
version = "0.0.1"
repository = "https://github.com/crutcher/clockmill"
rust-version = "1.90.0"
edition = "2024"
license = "MIT"
[workspace.lints.rust]
warnings = "deny"
[workspace.lints.clippy]
double_must_use = "allow"
doc_markdown = "warn"
[workspace.dependencies]
burn = "^0.20.0"
serde = { version = "^1.0.228" }
bimm-contracts = "^0.19.2"
rand = "^0.9.2"
nearly = "^0.4.0"
indicatif = "^0.18.3"
clap = "^4.5.52"
criterion = { version = "^0.8.1" }
piston = "^1.0.0"
piston2d-graphics = "^0.45.0"
# moving to 0.73.2 crashes in a way I haven't debugged yet.
pistoncore-glutin_window = "^0.72.0"
piston2d-opengl_graphics = "^0.89.0"
gl = "^0.14.0"