mirror of
https://github.com/extism/extism.git
synced 2026-01-10 06:18:00 -05:00
This is an attempt to sand down [a sharp edge](https://github.com/extism/extism/actions/runs/6949120346/job/18906546065#step:4:476) around releases – keeping the `Cargo.toml` versions in-sync with the release tag, & the versions of the workspace crates aligned with one another.
24 lines
645 B
TOML
24 lines
645 B
TOML
[package]
|
|
name = "libextism"
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
version.workspace = true
|
|
description = "libextism"
|
|
|
|
[lib]
|
|
name = "extism"
|
|
crate-type = ["cdylib", "staticlib"]
|
|
doc = false
|
|
|
|
[dependencies]
|
|
extism = {workspace = true, path = "../runtime"}
|
|
|
|
[features]
|
|
default = ["http", "register-http", "register-filesystem"]
|
|
register-http = ["extism/register-http"] # enables wasm to be downloaded using http
|
|
register-filesystem = ["extism/register-filesystem"] # enables wasm to be loaded from disk
|
|
http = ["extism/http"] # enables extism_http_request
|