[package] name = "twgame" version = "0.9.2" authors = ["Zwelf "] edition = "2021" rust-version = "1.74.1" description = "DDNet physics implementation" documentation = "https://docs.rs/twgame" readme = "README.md" repository = "https://gitlab.com/ddnet-rs/twgame" license = "AGPL-3.0-only" keywords = ["ddnet", "twgame"] [dependencies] twmap = { workspace = true } twgame-core = { workspace = true } ndarray = "0.15.6" # https://github.com/yoanlcq/vek/issues/96 vek = { version = "0.16.1", default-features = false, features = ["rgba", "rgb", "std"] } bitflags = "2.5.0" uuid = { version = "1.8.0", features = ["v4", "serde"] } arrayvec = "0.7.4" rand_pcg = "0.3.1" rand = "0.8.5" hashbrown = { version = "0.14.3", features = ["serde"] } serde = { version = "1.0.197", features = ["derive"] } serde_json = "1.0.115" # Tele compat data serialization indexmap = { version = "2.2.6", features = ["serde"] } # Replacement for HashMap. Depending on exact version, because key behavior has # no stability guarantees slotmap = "=1.0.7" log = "0.4.22"