2023-03-28 17:27:31 +00:00
|
|
|
[package]
|
|
|
|
name = "node_runtime"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
2024-01-27 12:51:16 +00:00
|
|
|
license = "GPL-3.0-or-later"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2024-03-05 17:01:17 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2023-03-28 17:27:31 +00:00
|
|
|
[lib]
|
|
|
|
path = "src/node_runtime.rs"
|
|
|
|
doctest = false
|
|
|
|
|
2024-05-09 13:23:21 +00:00
|
|
|
[features]
|
|
|
|
test-support = ["tempfile"]
|
|
|
|
|
2023-03-28 17:27:31 +00:00
|
|
|
[dependencies]
|
2024-01-31 02:41:29 +00:00
|
|
|
anyhow.workspace = true
|
2023-12-06 22:29:09 +00:00
|
|
|
async-compression.workspace = true
|
2024-02-25 17:02:59 +00:00
|
|
|
async-tar.workspace = true
|
2023-08-10 01:32:41 +00:00
|
|
|
async-trait.workspace = true
|
2024-05-09 13:23:21 +00:00
|
|
|
async_zip.workspace = true
|
2024-01-31 02:41:29 +00:00
|
|
|
futures.workspace = true
|
|
|
|
log.workspace = true
|
2024-03-15 15:40:28 +00:00
|
|
|
semver.workspace = true
|
2023-04-25 00:41:55 +00:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
smol.workspace = true
|
2024-05-09 13:23:21 +00:00
|
|
|
tempfile = { workspace = true, optional = true }
|
2024-02-06 19:41:36 +00:00
|
|
|
util.workspace = true
|
2024-05-09 13:23:21 +00:00
|
|
|
walkdir = "2.5.0"
|
|
|
|
windows.workspace = true
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
async-std = { version = "1.12.0", features = ["unstable"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tempfile.workspace = true
|