[package] name = "coremem" version = "0.1.0" authors = ["Colin "] edition = "2021" [lib] crate-type = ["lib"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] bincode = "1.3" # MIT common_macros = "0.1" # MIT or Apache 2.0 crossbeam = "0.8" # MIT or Apache 2.0 crossterm = "0.24" # MIT csv = "1.1" # MIT or Unlicense dashmap = "5.3" # MIT env_logger = "0.9" # MIT or Apache 2.0 font8x8 = "0.3" # MIT futures = "0.3" # MIT or Apache 2.0 image = "0.24" # MIT imageproc = "0.23" # MIT indexmap = "1.9" # MIT or Apache 2.0 log = "0.4" # MIT or Apache 2.0 more-asserts = "0.3" # CC0-1.0 ndarray = { version = "0.15", features = ["rayon", "serde"] } # MIT or Apache 2.0 num = "0.4" # MIT or Apache 2.0 # plotly = { version = "0.6", features = ["kaleido", "plotly_ndarray"], path = "../plotly/plotly" } rand = "0.8" # MIT or Apache 2.0 rayon = "1.5" # MIT or Apache 2.0 serde = "1.0" # MIT or Apache 2.0 y4m = "0.7" # MIT wgpu = "0.12" # wgpu = { version = "0.12", features = ["spirv"] } # MIT or Apache 2.0 # TODO: update to 0.13 # wgpu = { version = "0.13", features = ["spirv", "vulkan-portability"] } # MIT or Apache 2.0 # spirv-* is MIT or Apache 2.0 spirv-builder = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "d78c301799e9d254aab3156a230c9a59efd94122", features = ["use-compiled-tools"] } spirv-std = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "d78c301799e9d254aab3156a230c9a59efd94122" } spirv-std-macros = { git = "https://github.com/Rust-GPU/rust-gpu", rev = "d78c301799e9d254aab3156a230c9a59efd94122" } spirv_backend = { path = "../spirv_backend" } spirv_backend_runner = { path = "../spirv_backend_runner" } coremem_cross = { path = "../cross", features = ["iter", "fmt", "serde", "std"] } [dev-dependencies] criterion = "0.3" float_eq = "1.0" # MIT or Apache 2.0 [[bench]] name = "driver" harness = false