kubi/kubi-shared/Cargo.toml

23 lines
800 B
TOML
Raw Normal View History

2023-01-30 00:46:22 +00:00
[package]
name = "kubi-shared"
2023-05-17 10:30:14 +00:00
version = "0.0.0"
2023-01-30 00:46:22 +00:00
edition = "2021"
2023-02-13 02:01:29 +00:00
publish = false
2023-01-30 00:46:22 +00:00
[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"
hashbrown = "0.13"
nohash-hasher = "0.2.0"
2023-02-16 01:00:09 +00:00
[features]
default = []
nightly = ["hashbrown/nightly", "rand/nightly", "rand/simd_support", "glam/core-simd"]