kubi/kubi-shared/Cargo.toml

23 lines
852 B
TOML
Raw Normal View History

2023-01-30 00:46:22 +00:00
[package]
name = "kubi-shared"
version = "0.1.0"
edition = "2021"
2023-02-13 02:01:29 +00:00
publish = false
2023-01-30 00:46:22 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-03-06 23:52:00 +00:00
glam = { version = "0.23", features = ["debug-glam-assert", "fast-math", "serde"] }
shipyard = { git = "https://github.com/leudz/shipyard", rev = "a4f4d27edcf", default-features = false, features = ["std"] }
2023-01-30 01:45:35 +00:00
strum = { version = "0.24", features = ["derive"] }
2023-03-08 00:31:38 +00:00
postcard = { version = "1.0", features = ["alloc"] }
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
2023-01-31 01:51:54 +00:00
anyhow = "1.0"
2023-01-30 02:23:39 +00:00
bracket-noise = "0.8"
2023-02-16 01:00:09 +00:00
rand = { version = "0.8", default_features = false, features = ["std", "min_const_gen"] }
rand_xoshiro = "0.6"
[features]
default = []
2023-03-08 16:27:53 +00:00
nightly = ["rand/nightly", "rand/simd_support", "serde/unstable", "glam/core-simd"]