-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 746 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[workspace]
resolver = "2"
members = [
"arraylib",
"arraylib_macro",
"wasm-array",
]
[workspace.package]
version = "0.2.2"
authors = ["Colin Gilgenbach <colin@gilgenbach.net>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/hexane360/wasm-array"
[workspace.dependencies]
arraylib_macro = { path = "../arraylib_macro" }
base64 = "0.22.1"
bytemuck = { version = "1.16.0", features = ["extern_crate_std", "derive", "min_const_generics", "zeroable_maybe_uninit"] }
itertools = "^0.13.0"
ndarray = "0.17.1"
num = "0.4.3"
num-complex = { version = "0.4.6", features = ["bytemuck"] }
paste = "1.0"
ordered-float = "4.2.1"
zerocopy = { version = "0.7.34", features = ["byteorder", "alloc", "derive"] }
rstest = "0.19.0"