mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-10 04:09:37 +00:00
- [x] Fill in GPL license text. - [x] live_kit_client depends on live_kit_server as non-dev dependency, even though it seems to only be used for tests. Is that an issue? Release Notes: - N/A
25 lines
491 B
TOML
25 lines
491 B
TOML
[package]
|
|
name = "node_runtime"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-only"
|
|
|
|
|
|
[lib]
|
|
path = "src/node_runtime.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
util = { path = "../util" }
|
|
async-compression.workspace = true
|
|
async-tar = "0.4.2"
|
|
futures.workspace = true
|
|
async-trait.workspace = true
|
|
anyhow.workspace = true
|
|
parking_lot.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
smol.workspace = true
|
|
log.workspace = true
|