[package]
edition = "2024"
name = "rvtime"
version = "0.0.2"
authors = ["clearloop <tianyi.gc@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A RISC-V compiler with a wasmtime-like interface"
readme = "README.md"
keywords = [
"riscv",
"jit",
"compiler",
"cranelift",
"sandbox",
]
categories = [
"compilers",
"virtualization",
]
license = "Apache-2.0"
repository = "https://github.com/crabtalk/rvtime"
[lib]
name = "rvtime"
path = "src/lib.rs"
[[example]]
name = "calling_a_guest"
path = "examples/calling_a_guest.rs"
[[example]]
name = "guest_heap"
path = "examples/guest_heap.rs"
[[example]]
name = "host_functions"
path = "examples/host_functions.rs"
[[example]]
name = "interrupting"
path = "examples/interrupting.rs"
[[test]]
name = "abi"
path = "tests/abi.rs"
[[test]]
name = "api"
path = "tests/api.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.compiler]
version = "0.0.2"
package = "rvtime-compiler"
[dependencies.libc]
version = "0.2"
[dependencies.rv]
version = "0.0.2"
package = "rvtime-core"
[dependencies.tracing]
version = "0.1"
[dependencies.translator]
version = "0.0.2"
package = "rvtime-cranelift"
[dev-dependencies.libc]
version = "0.2"
[dev-dependencies.rv]
version = "0.0.2"
package = "rvtime-core"