kubi/kubi-shared/Cargo.toml

29 lines
1,008 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-07-09 01:03:45 +00:00
glam = { version = "0.24", features = ["debug-glam-assert", "fast-math", "serde"] }
2023-11-21 15:45:41 +00:00
shipyard = { git = "https://github.com/leudz/shipyard", rev = "8ef90ea6c4d1eb6c9cb0988f0d2f873f75044d49", default-features = false, features = ["std"] }
2023-07-09 01:03:45 +00:00
strum = { version = "0.25", features = ["derive"] }
2023-11-20 19:59:34 +00:00
num_enum = "0.7"
2023-03-08 00:31:38 +00:00
postcard = { version = "1.0", features = ["alloc"] }
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
serde_with = "3.4"
2023-11-19 17:27:20 +00:00
bincode = "1.3"
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"
2023-11-19 17:27:20 +00:00
hashbrown = { version = "0.14", features = ["serde"] }
2023-07-09 01:03:45 +00:00
nohash-hasher = "0.2"
2023-11-19 17:27:20 +00:00
#bytemuck = { version = "1.14", features = ["derive"] }
2023-11-20 19:59:34 +00:00
static_assertions = "1.1"
2023-11-26 00:29:02 +00:00
nz = "0.3"
2023-11-19 17:27:20 +00:00
2023-02-16 01:00:09 +00:00
[features]
default = []
nightly = ["hashbrown/nightly", "rand/nightly", "rand/simd_support", "glam/core-simd"]