codename-routes/routes-native/Cargo.toml

28 lines
542 B
TOML
Raw Permalink Normal View History

2022-04-30 16:37:47 +00:00
[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
2022-04-30 16:55:43 +00:00
[lib]
crate-type = ["cdylib"]
2022-04-30 16:37:47 +00:00
[dependencies]
2022-05-04 14:46:58 +00:00
gdnative = {version = "0.10", features = ["async"]}
strum = { version = "0.24", features = ["derive"] }
strum_macros = "0.24"
2022-05-06 22:17:56 +00:00
derive_builder = "0.11.2"
rand = "0.8.5"
rand_xoshiro = "0.6"
blake3 = "1" # 1.3.1 at time of addition
2022-05-03 22:06:50 +00:00
toml = "0.5.9"
2022-05-13 16:45:53 +00:00
noise = "0.7.0"
2022-05-04 10:46:12 +00:00
[profile.dev.package."*"]
opt-level = 3
[profile.dev]
opt-level=1