-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 1.24 KB
/
Cargo.toml
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
[workspace]
resolver = "2"
package.edition = "2021"
package.rust-version = "1.76.0"
members = [
"crates/cubedaw",
"crates/cubedaw-lib",
"crates/cubedaw-workerlib",
"crates/cubedaw-worker",
"crates/cubedaw-command",
]
[workspace.lints.rust]
unsafe_op_in_unsafe_fn = "forbid"
[workspace.lints.clippy]
# TODO uncomment this when i have time for this
# pedantic = { level = "warn", priority = -1 }
needless_question_mark = "allow" # makes code harder to read in long question mark chains
unusual_byte_groupings = "allow" # misunderstands floating-point binary representation
[workspace.dependencies]
# some features are in the repo but not released yet
# TODO change this to stable after the features/fixes get merged in
egui = { git = "https://github.com/emilk/egui.git", rev = "db8db50bf31ddff42d35a96410afc856ddb3fd27", default-features = false }
ahash = "0.8.11"
smallvec = "1.13.2"
bytemuck = "1.15.0"
crossbeam = "0.8.4"
# TODO meminterval works but it's missing some features (like iterating over an entire IntervalTree).
# however there doesn't seem to be a viable alternative for a low-dependency mutable interval tree already on crates.io
# possibly contribute back to meminterval if they're fine with it or fork it?
meminterval = "0.4.1"