15 lines
514 B
TOML
15 lines
514 B
TOML
[package]
|
|
name = "wasmtime_serde_host"
|
|
version = "0.1.3"
|
|
edition = "2021"
|
|
license = "Unlicense OR MIT"
|
|
authors = ["Heráclito <heraclitoqsaldanha@gmail.com>"]
|
|
description = "Simple library for serializing complex types to the wasmtime runtime using serde"
|
|
repository = "https://github.com/Heraclito-Q-Saldanha/wasmtime_serde"
|
|
|
|
[dependencies]
|
|
wasmtime_serde_host_macro = "0.1.0"
|
|
wasmtime = {version = "9.0.2", default-features = false, features = ["cranelift"]}
|
|
serde = "1.0.163"
|
|
bincode = "1.3.3"
|
|
anyhow = "1.0.71" |