codename-routes/routes-native/Cargo.toml

28 lines
542 B
TOML

[package]
name = "routes-native"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["cdylib"]
[dependencies]
gdnative = {version = "0.10", features = ["async"]}
strum = { version = "0.24", features = ["derive"] }
strum_macros = "0.24"
derive_builder = "0.11.2"
rand = "0.8.5"
rand_xoshiro = "0.6"
blake3 = "1" # 1.3.1 at time of addition
toml = "0.5.9"
noise = "0.7.0"
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
opt-level=1