mirror of
https://github.com/extism/extism.git
synced 2026-01-10 14:27:57 -05:00
24 lines
698 B
TOML
24 lines
698 B
TOML
[package]
|
|
name = "libextism"
|
|
version = "0.5.2"
|
|
edition = "2021"
|
|
authors = ["The Extism Authors", "oss@extism.org"]
|
|
license = "BSD-3-Clause"
|
|
homepage = "https://extism.org"
|
|
repository = "https://github.com/extism/extism"
|
|
description = "libextism"
|
|
|
|
[lib]
|
|
name = "extism"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
extism-runtime = {path = "../runtime"}
|
|
|
|
[features]
|
|
default = ["http", "register-http", "register-filesystem"]
|
|
nn = ["extism-runtime/nn"]
|
|
register-http = ["extism-runtime/register-http"] # enables wasm to be downloaded using http
|
|
register-filesystem = ["extism-runtime/register-filesystem"] # enables wasm to be loaded from disk
|
|
http = ["extism-runtime/http"] # enables extism_http_request
|