readdy/maze/Cargo.toml

18 lines
472 B
TOML
Raw Permalink Normal View History

2024-09-16 12:14:45 +02:00
[package]
name = "maze"
version = "0.1.0"
edition = "2021"
[dependencies]
nutype = { version = "0.5.0", default-features = false }
heapless = "0.8.0"
shared = { path = "../shared" }
bitflags = "2.6.0"
rand = { version = "0.8.5", default-features = false, features = ["small_rng"] }
[dev-dependencies]
rand = { version = "0.8.5", features = ["getrandom", "small_rng", "std", "std_rng"] }
shared = { path = "../shared", features = ['full-rand'] }
pretty_assertions = "1"