mirror of
https://github.com/fluencelabs/aquavm
synced 2025-04-24 14:52:15 +00:00
* chore: release master * chore: Bump air-interpreter and air-near-contract version to 0.64.1
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
name = "air-near-contract"
|
|
version = "0.64.1"
|
|
description = "AIR interpreter as a NEAR contract"
|
|
authors = ["Fluence DAO", "Cloudless Labs"]
|
|
edition = "2021"
|
|
license = "AGPL-3.0-only"
|
|
keywords = ["fluence", "air", "webassembly", "programming-language", "near"]
|
|
categories = ["wasm"]
|
|
publish = false
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
aquavm-air = { path = "../../../air" }
|
|
air-interpreter-interface = { path = "../../../crates/air-lib/interpreter-interface", default-features = false }
|
|
near-sdk = "5.1.0"
|
|
serde = { version = "1.0.190", features = [ "derive", "rc" ] }
|
|
serde_json = "1.0.108"
|
|
hashbrown = { version = "0.14.2", default-features = false }
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
opt-level = "z"
|
|
lto = true
|
|
debug = false
|
|
panic = "abort"
|
|
overflow-checks = true
|
|
|
|
# it is required to be build in own workspace, as it has special profile
|
|
[workspace]
|
|
members = []
|
|
|
|
[features]
|
|
gen_signatures = ["aquavm-air/gen_signatures"]
|
|
check_signatures = ["aquavm-air/check_signatures"]
|
|
|
|
[patch.crates-io]
|
|
fluence-keypair = { git = "https://github.com/fluencelabs/trust-graph.git", branch = "lean-keypair" }
|