[package] name = "arena-voxel-tree" version = "0.0.1" edition = "2021" keywords = ["voxel", "arena-tree", "non-binary-tree"] categories = ["voxel", "data-structures"] description = "An adaptation of r3bl-org Arena-tree implementation to the voxel context. Async + Multithreaded" readme = "README.md" # This is not included in cargo docs. # Email address(es) has to be verified at https://crates.io/me/ authors = ["Julia Naomi ", "Nazmul Idris "] repository = "https://github.com/naomijub/arena-voxel-tree" documentation = "https://docs.rs/arena-voxel-tree" homepage = "https://docs.rs/arena-voxel-tree" license = "Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] smallvec = "1.10" # Async tokio = { version = "1.27.0", features = ["full"] } async-trait = "0.1.68" futures = "0.3.28" # Crossterm & EventStream support. crossterm = { version = "0.26.1", features = ["event-stream"] } futures-util = "0.3.28" # Bitflags. bitflags = "2.3" # lazy_static replacement. once_cell = "1.17.1" # https://github.com/serde-rs/serde. serde = { version = "1.0", features = ["derive"] } serde_json = "1.0"