rvtime 0.0.2

A RISC-V compiler with a wasmtime-like interface
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"