-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (24 loc) · 929 Bytes
/
Cargo.toml
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
[package]
name = "numcodecs-wasm-guest"
version = "0.2.0"
edition = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
description = "Export numcodecs API compressors from wasm components"
readme = "README.md"
categories = ["wasm", "api-bindings", "compression", "encoding"]
keywords = ["numcodecs", "compression", "encoding", "wasm-component", "wasm-bindgen"]
[dependencies]
numcodecs = { workspace = true }
wit-bindgen = { workspace = true, features = ["macros", "realloc"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
format_serde_error = { workspace = true, features = ["serde_json"] }
ndarray = { workspace = true, features = ["std"] }
schemars = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true, features = ["std"] }
thiserror = { workspace = true }
[lints]
workspace = true