Cargo.toml

 1[package]
 2name = "node_runtime"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/node_runtime.rs"
10doctest = false
11
12[dependencies]
13util = { path = "../util" }
14async-compression.workspace = true
15async-tar = "0.4.2"
16futures.workspace = true
17async-trait.workspace = true
18anyhow.workspace = true
19parking_lot.workspace = true
20serde.workspace = true
21serde_derive.workspace = true
22serde_json.workspace = true
23smol.workspace = true
24log.workspace = true