kubi/kubi-shared/Cargo.toml

27 lines
978 B
TOML
Raw Normal View History

2023-01-29 18:46:22 -06:00
[package]
name = "kubi-shared"
2023-05-17 05:30:14 -05:00
version = "0.0.0"
2023-01-29 18:46:22 -06:00
edition = "2021"
2023-02-12 20:01:29 -06:00
publish = false
2023-01-29 18:46:22 -06:00
[dependencies]
2023-07-08 20:03:45 -05:00
glam = { version = "0.24", features = ["debug-glam-assert", "fast-math", "serde"] }
2023-11-21 09:45:41 -06:00
shipyard = { git = "https://github.com/leudz/shipyard", rev = "8ef90ea6c4d1eb6c9cb0988f0d2f873f75044d49", default-features = false, features = ["std"] }
2023-07-08 20:03:45 -05:00
strum = { version = "0.25", features = ["derive"] }
2023-11-20 13:59:34 -06:00
num_enum = "0.7"
2023-03-07 18:31:38 -06:00
postcard = { version = "1.0", features = ["alloc"] }
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
2023-11-19 11:27:20 -06:00
bincode = "1.3"
2023-01-30 19:51:54 -06:00
anyhow = "1.0"
2023-01-29 20:23:39 -06:00
bracket-noise = "0.8"
2023-02-15 19:00:09 -06:00
rand = { version = "0.8", default_features = false, features = ["std", "min_const_gen"] }
rand_xoshiro = "0.6"
2023-11-19 11:27:20 -06:00
hashbrown = { version = "0.14", features = ["serde"] }
2023-07-08 20:03:45 -05:00
nohash-hasher = "0.2"
2023-11-19 11:27:20 -06:00
#bytemuck = { version = "1.14", features = ["derive"] }
2023-11-20 13:59:34 -06:00
static_assertions = "1.1"
2023-11-19 11:27:20 -06:00
2023-02-15 19:00:09 -06:00
[features]
default = []
nightly = ["hashbrown/nightly", "rand/nightly", "rand/simd_support", "glam/core-simd"]