19 lines
439 B
TOML
19 lines
439 B
TOML
[package]
|
|
name = "vm-memory-access"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Common memory access abstraction for VM cross-architecture translation"
|
|
|
|
[dependencies]
|
|
vm-common = { path = "../vm-common" }
|
|
vm-core = { path = "../vm-core" }
|
|
vm-error = { path = "../vm-error" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
thiserror = "1.0"
|
|
log = "0.4"
|
|
static_assertions = "1.1"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
no_std = [] |