Files
warp/crates/remote_server/Cargo.toml
Yunfan Yang 2d0d88fea6 Add reconnection logic to remote server (#9289)
Migrated from /Users/kevinyang/Documents/GitHub/warp-internal via
`script/migrate-private-to-public`.

## Commits

- 823458b Add reconnect logic to remote server
- 104aafb tech spec
- c4039c3 clippy
- c4e3a39 nit
2026-04-28 18:02:55 -04:00

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