mirror of
https://github.com/extism/extism.git
synced 2026-01-09 13:57:55 -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.
18 lines
593 B
TOML
18 lines
593 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["extism-maturin", "manifest", "runtime", "libextism", "convert"]
|
|
exclude = ["kernel"]
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
authors = ["The Extism Authors", "oss@extism.org"]
|
|
license = "BSD-3-Clause"
|
|
homepage = "https://extism.org"
|
|
repository = "https://github.com/extism/extism"
|
|
version = "0.0.0+replaced-by-ci"
|
|
|
|
[workspace.dependencies]
|
|
extism = { path = "./runtime", version = "0.0.0+replaced-by-ci" }
|
|
extism-convert = { path = "./convert", version = "0.0.0+replaced-by-ci" }
|
|
extism-manifest = { path = "./manifest", version = "0.0.0+replaced-by-ci" }
|