mirror of
https://github.com/fluencelabs/aquavm
synced 2025-04-24 14:52:15 +00:00
32 lines
1.2 KiB
TOML
32 lines
1.2 KiB
TOML
[package]
|
|
name = "air-interpreter-cid"
|
|
description = "AIR interpreter CID util module"
|
|
version = "0.9.0"
|
|
authors = ["Fluence DAO", "Cloudless Labs"]
|
|
edition = "2021"
|
|
license = "AGPL-3.0-only"
|
|
documentation = "https://docs.rs/air-interpreter-cid"
|
|
repository = "https://github.com/fluencelabs/aquavm/tree/master/crates/air-lib/interpreter-cid"
|
|
keywords = ["fluence", "air", "programming-language", "cid", "ipld"]
|
|
categories = ["wasm"]
|
|
|
|
[dependencies]
|
|
cid = { version = "0.11.0", default-features = false, features = ["std"] }
|
|
multihash = { version = "0.19.1" }
|
|
serde = { version = "1.0.190", features = ["derive", "rc"] }
|
|
serde_json = "1.0.95"
|
|
thiserror = "1.0.49"
|
|
|
|
# beware: `digest` version should match one of the used in particular hash crates
|
|
digest = "0.10.7"
|
|
sha2 = "0.10.7"
|
|
fluence-blake3 = { version = "1.5.0", features = ["traits-preview"] }
|
|
multihash-codetable = { version = "0.1.1", features = ["blake3", "sha2", "digest"] }
|
|
rkyv = { version = "0.7.43", features = ["validation", "strict"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
multihash-codetable = { version = "0.1.1", features = ["ripemd"] }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
fluence-blake3 = { version = "1.5.0", features = ["traits-preview", "wasm32_simd"] }
|