The loader package's `ensure_wasi_sdk_exists` private method checks for the wasi-sdk, fetching it if it can't be found. This logic was re-implemented in xtask for `build-wasm-stdlib`, but without the fetching functionality. We can have nice things in xtask too! Rather than make this function a public member of `tree-sitter-loader`, we just re-implement and leave a nice comment asking people to keep the two in sync.
31 lines
701 B
TOML
31 lines
701 B
TOML
[package]
|
|
name = "xtask"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anstyle.workspace = true
|
|
anyhow.workspace = true
|
|
bindgen = { version = "0.72.0" }
|
|
clap.workspace = true
|
|
etcetera.workspace = true
|
|
indoc.workspace = true
|
|
regex.workspace = true
|
|
schemars.workspace = true
|
|
semver.workspace = true
|
|
serde_json.workspace = true
|
|
tree-sitter-cli = { path = "../cli/" }
|
|
tree-sitter-loader = { path = "../loader/" }
|
|
notify = "8.2.0"
|
|
notify-debouncer-full = "0.6.0"
|