- these tools shouldn't need access to coremem internals. - lifting them out reduces some dependencies in coremem-the-library. - separation allows faster iteration in the coremem library while temporarily breaking the post-processing tools (specifically, those tools could take deps on a specific coremem version and thereby we split the update process into two, smaller steps).
59 lines
1.9 KiB
TOML
59 lines
1.9 KiB
TOML
[package]
|
|
name = "coremem"
|
|
version = "0.1.0"
|
|
authors = ["Colin <colin@uninsane.org>"]
|
|
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
|
|
crossterm = "0.24" # MIT
|
|
csv = "1.1" # MIT or Unlicense
|
|
dashmap = "5.3" # MIT
|
|
decorum = "0.3" # MIT
|
|
dyn-clone = "1.0" # MIT or Apache 2.0
|
|
enum_dispatch = "0.3" # MIT or Apache 2.0
|
|
env_logger = "0.9" # MIT or Apache 2.0
|
|
float_eq = "1.0" # 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
|
|
lazy_static = "1.4" # 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
|
|
threadpool = "1.8" # MIT or Apache 2.0
|
|
typetag = "0.2" # 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/EmbarkStudios/rust-gpu", features = ["use-compiled-tools"] }
|
|
spirv-std = { git = "https://github.com/EmbarkStudios/rust-gpu" }
|
|
spirv-std-macros = { git = "https://github.com/EmbarkStudios/rust-gpu" }
|
|
spirv_backend = { path = "../spirv_backend" }
|
|
spirv_backend_runner = { path = "../spirv_backend_runner" }
|
|
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
|
|
[[bench]]
|
|
name = "driver"
|
|
harness = false
|