diff --git a/Cargo.lock b/Cargo.lock index b251c41..5692dfb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -335,15 +335,6 @@ version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da" -[[package]] -name = "cc" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd9de9f2205d5ef3fd67e685b0df337994ddd4495e2a28d185500d0e1edfea47" -dependencies = [ - "shlex", -] - [[package]] name = "cfg-if" version = "1.0.0" @@ -804,7 +795,6 @@ dependencies = [ "pin-project-lite", "smallvec", "tokio", - "want", ] [[package]] @@ -1356,21 +1346,6 @@ version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" -[[package]] -name = "ring" -version = "0.17.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" -dependencies = [ - "cc", - "cfg-if", - "getrandom", - "libc", - "spin", - "untrusted", - "windows-sys 0.52.0", -] - [[package]] name = "rustc-demangle" version = "0.1.24" @@ -1509,12 +1484,6 @@ dependencies = [ "lazy_static", ] -[[package]] -name = "shlex" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" - [[package]] name = "signal-hook-registry" version = "1.4.2" @@ -1549,12 +1518,6 @@ dependencies = [ "windows-sys 0.52.0", ] -[[package]] -name = "spin" -version = "0.9.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" - [[package]] name = "stable_deref_trait" version = "1.2.0" @@ -1807,12 +1770,6 @@ dependencies = [ "tracing-log", ] -[[package]] -name = "try-lock" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" - [[package]] name = "tungstenite" version = "0.24.0" @@ -1859,12 +1816,6 @@ dependencies = [ "subtle", ] -[[package]] -name = "untrusted" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" - [[package]] name = "url" version = "2.5.3" @@ -1912,15 +1863,6 @@ version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" -[[package]] -name = "want" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" -dependencies = [ - "try-lock", -] - [[package]] name = "wasi" version = "0.11.0+wasi-snapshot-preview1" @@ -1935,8 +1877,6 @@ dependencies = [ "flatbuffers", "futures", "pty-process", - "rand", - "ring", "semver", "tokio", "tokio-tungstenite", @@ -1971,14 +1911,8 @@ dependencies = [ "clap", "flatbuffers", "futures", - "hyper", - "log", - "rand", - "semver", "serde", - "serde_json", "tokio", - "tokio-tungstenite", "tower-http", "tracing", "tracing-subscriber", diff --git a/agent/Cargo.toml b/agent/Cargo.toml index 08f6f96..f475945 100644 --- a/agent/Cargo.toml +++ b/agent/Cargo.toml @@ -9,14 +9,12 @@ clap = { version = "4.5.20", features = ["derive", "env"] } flatbuffers = "24.3.25" futures = "0.3.31" pty-process = { version = "0.4.0", features = ["async"] } -rand = "0.8.5" tokio = "1.41.1" tokio-tungstenite = "0.24.0" tracing = "0.1.41" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } webterm-core = { path = "../core" } url = "2.5.3" -ring = "0.17.8" semver = "1.0.23" [lints.clippy] diff --git a/relay/Cargo.toml b/relay/Cargo.toml index 00be251..5d51087 100644 --- a/relay/Cargo.toml +++ b/relay/Cargo.toml @@ -11,18 +11,12 @@ axum = { version = "0.7.7", features = ["macros", "ws", "http2"] } clap = { version = "4.5.20", features = ["derive", "env"] } flatbuffers = "24.3.25" futures = "0.3.31" -hyper = { version = "1.5.0", features = ["full"] } serde = { version = "1.0.215", features = ["derive"] } -serde_json = "1.0.132" tokio = { version = "1.41.1", features = ["full"] } -tokio-tungstenite = "0.24.0" tower-http = { version = "0.6.1", features = ["trace"] } tracing = "0.1.41" tracing-subscriber = { version = "0.3", features = ["env-filter"] } webterm-core = { path = "../core" } -rand = "0.8.5" -log = { version = "0.4.22", features = [] } -semver = "1.0.23" [lints.clippy] new_without_default = "allow"