mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-10 01:28:41 -06:00
28 lines
989 B
TOML
28 lines
989 B
TOML
[package]
|
|
name = "kubi-shared"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
glam = { version = "0.24", features = ["debug-glam-assert", "fast-math", "serde"] }
|
|
shipyard = { git = "https://github.com/leudz/shipyard", rev = "8ef90ea6c4d1eb6c9cb0988f0d2f873f75044d49", default-features = false, features = ["std"] }
|
|
strum = { version = "0.25", features = ["derive"] }
|
|
num_enum = "0.7"
|
|
postcard = { version = "1.0", features = ["alloc"] }
|
|
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
|
|
bincode = "1.3"
|
|
anyhow = "1.0"
|
|
bracket-noise = "0.8"
|
|
rand = { version = "0.8", default_features = false, features = ["std", "min_const_gen"] }
|
|
rand_xoshiro = "0.6"
|
|
hashbrown = { version = "0.14", features = ["serde"] }
|
|
nohash-hasher = "0.2"
|
|
#bytemuck = { version = "1.14", features = ["derive"] }
|
|
static_assertions = "1.1"
|
|
nz = "0.3"
|
|
|
|
[features]
|
|
default = []
|
|
nightly = ["hashbrown/nightly", "rand/nightly", "rand/simd_support", "glam/core-simd"]
|