mirror of
https://github.com/warpdotdev/warp.git
synced 2026-05-06 23:32:51 +08:00
Migrated from /Users/kevinyang/Documents/GitHub/warp-internal via `script/migrate-private-to-public`. ## Commits -823458bAdd reconnect logic to remote server -104aafbtech spec -c4039c3clippy -c4e3a39nit
39 lines
987 B
TOML
39 lines
987 B
TOML
[package]
|
|
name = "remote_server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Warp Team <dev@warp.dev>"]
|
|
publish.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-channel.workspace = true
|
|
command.workspace = true
|
|
dashmap.workspace = true
|
|
futures.workspace = true
|
|
futures-lite.workspace = true
|
|
log.workspace = true
|
|
prost.workspace = true
|
|
repo_metadata.workspace = true
|
|
serde.workspace = true
|
|
thiserror.workspace = true
|
|
uuid.workspace = true
|
|
warp_core.workspace = true
|
|
warp_util.workspace = true
|
|
warpui.workspace = true
|
|
|
|
[target.'cfg(not(target_family = "wasm"))'.dependencies]
|
|
async-io.workspace = true
|
|
async-process.workspace = true
|
|
|
|
[target.'cfg(target_family = "wasm")'.dependencies]
|
|
getrandom = { version = "0.2", features = ["js"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["io-util", "macros", "rt-multi-thread"] }
|
|
tokio-util = { workspace = true, features = ["compat"] }
|
|
|
|
[build-dependencies]
|
|
prost-build.workspace = true
|