-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (34 loc) · 1.19 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "numcodecs-wasm"
version = "0.1.5+wasi0.2.3"
edition = { workspace = true }
authors = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
description = "numcodecs compression for codecs compiled to WebAssembly"
readme = "README.md"
categories = ["wasm", "api-bindings", "compression", "encoding"]
keywords = [
"numcodecs",
"compression",
"encoding",
"wasm-component",
"wasm-bindgen",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "numcodecs_wasm"
crate-type = ["cdylib"]
[dependencies]
anyhow = { workspace = true }
numcodecs-python = { workspace = true }
numcodecs-wasm-host-reproducible = { workspace = true }
pyo3 = { workspace = true, features = ["macros", "abi3-py310"] }
pyo3-error = { workspace = true }
pyo3-log = { workspace = true }
[target.'cfg(target_arch = "wasm32")'.dependencies]
pyodide-webassembly-runtime-layer = { workspace = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
wasmtime = { workspace = true, features = ["runtime", "cranelift", "cache", "gc-null"] }
wasmtime_runtime_layer = { workspace = true }