Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
135 changes: 127 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ dialoguer = { version = "0.11", default-features = false }
console = "0.15"
indicatif = "0.17"
ctrlc = "3"
tokio = { version = "1", features = ["rt", "macros", "time", "sync", "net", "io-util"] }
tokio-tungstenite = { version = "0.24", default-features = false, features = ["connect", "rustls-tls-webpki-roots"] }
futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] }

[dev-dependencies]
mockito = "1.6"
Expand Down
5 changes: 5 additions & 0 deletions src/commands/dev/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ use super::{ok_mark, warn_prefix};

mod compose;
mod process;
// Used in a follow-up PR that integrates WSS into the dev lifecycle.
// Compiled + tested now so the wire format and protocol stay correct
// while the AWS Sender impl + IaC for the WS API GW catch up.
#[allow(dead_code)]
mod tunnel;

#[derive(Args)]
pub struct DevArgs {
Expand Down
Loading
Loading