267fcec12d
1. TOML format (taplo): 123 files reformatted using correct config - Command: taplo format --config .config/taplo.toml 2. Zepter feature propagation fix: - pezframe-support: added pezsp-timestamp/try-runtime to try-runtime feature 3. generate-umbrella.py bug fix: - Script crashed when Cargo.toml/src didn't exist in umbrella dir - Added existence checks before deletion
30 lines
882 B
TOML
30 lines
882 B
TOML
[package]
|
|
name = "pezsc-executor-common"
|
|
version = "0.29.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "A set of common definitions that are needed for defining execution engines."
|
|
documentation.workspace = true
|
|
readme = "README.md"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
pezsc-allocator = { workspace = true, default-features = true }
|
|
pezsp-maybe-compressed-blob = { workspace = true, default-features = true }
|
|
pezsp-wasm-interface = { workspace = true, default-features = true }
|
|
polkavm = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
wasm-instrument = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = []
|
|
std = ["pezsc-allocator/std", "polkavm/std"]
|