2023-03-28 20:27:31 +03:00
|
|
|
[package]
|
|
|
|
name = "node_runtime"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "src/node_runtime.rs"
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
util = { path = "../util" }
|
|
|
|
async-compression = { version = "0.3", features = ["gzip", "futures-bufread"] }
|
|
|
|
async-tar = "0.4.2"
|
2023-04-25 03:41:55 +03:00
|
|
|
futures.workspace = true
|
|
|
|
anyhow.workspace = true
|
|
|
|
parking_lot.workspace = true
|
|
|
|
serde.workspace = true
|
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
smol.workspace = true
|
2023-06-28 23:43:45 +03:00
|
|
|
log.workspace = true
|