2023-01-29 18:46:22 -06:00
|
|
|
[package]
|
|
|
|
name = "kubi-shared"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-02-12 20:01:29 -06:00
|
|
|
publish = false
|
2023-01-29 18:46:22 -06:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-03-06 17:52:00 -06:00
|
|
|
glam = { version = "0.23", features = ["debug-glam-assert", "fast-math", "serde"] }
|
2023-05-16 04:21:01 -05:00
|
|
|
shipyard = { git = "https://github.com/leudz/shipyard", rev = "a4f4d27edcf", default-features = false, features = ["std"] }
|
2023-01-29 19:45:35 -06:00
|
|
|
strum = { version = "0.24", features = ["derive"] }
|
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-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"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2023-03-08 10:27:53 -06:00
|
|
|
nightly = ["rand/nightly", "rand/simd_support", "serde/unstable", "glam/core-simd"]
|