mirror of
https://github.com/warpdotdev/warp.git
synced 2026-05-31 07:20:58 +08:00
33 lines
686 B
TOML
33 lines
686 B
TOML
[package]
|
|
name = "node_runtime"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
local_fs = []
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
cfg-if = { workspace = true }
|
|
futures = { workspace = true }
|
|
log = { workspace = true }
|
|
http_client = { workspace = true }
|
|
semver = "1.0"
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
warp_core = { workspace = true }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
async-fs = { workspace = true }
|
|
command.workspace = true
|
|
flate2 = "1.0"
|
|
sha2 = { workspace = true }
|
|
tar = "0.4"
|
|
zip = "2.1"
|
|
|
|
[build-dependencies]
|
|
anyhow.workspace = true
|