Skip to content

Commit dcb15af

Browse files
Fix README (#2)
* fix url scheme * bump version
1 parent cc4cbea commit dcb15af

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "webtranscat"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
description = "WebTransport equivalent of websocat - a command-line WebTransport client for debugging and testing"
66
authors = ["dario@securityunion.dev"]

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,36 +40,36 @@ cargo install --path .
4040

4141
```bash
4242
# Connect to a WebTransport server (interactive mode)
43-
webtranscat wss://example.com:4443
43+
webtranscat https://example.com:4443
4444

4545
# Connect with verbose logging
46-
webtranscat -v wss://example.com:4443
46+
webtranscat -v https://example.com:4443
4747

4848
# Connect with insecure certificate verification (for testing)
49-
webtranscat --insecure wss://localhost:4443
49+
webtranscat --insecure https://localhost:4443
5050

5151
# Listen-only mode (don't send stdin input)
52-
webtranscat -u wss://example.com:4443
52+
webtranscat -u https://example.com:4443
5353

5454
# Exit after receiving one message
55-
webtranscat -1 wss://example.com:4443
55+
webtranscat -1 https://example.com:4443
5656

5757
# Multiple verbosity levels (like websocat)
58-
webtranscat -vv wss://example.com:4443 # Debug level
59-
webtranscat -vvv wss://example.com:4443 # Trace level
58+
webtranscat -vv https://example.com:4443 # Debug level
59+
webtranscat -vvv https://example.com:4443 # Trace level
6060

6161
# Quiet mode (suppress diagnostic messages)
62-
webtranscat -q wss://example.com:4443
62+
webtranscat -q https://example.com:4443
6363
```
6464

6565
### Environment Variables
6666

6767
```bash
6868
# Override logging with RUST_LOG
69-
RUST_LOG=debug webtranscat wss://example.com:4443
69+
RUST_LOG=debug webtranscat https://example.com:4443
7070

7171
# Early startup debugging
72-
WEBTRANSCAT_EARLY_LOG=1 webtranscat wss://example.com:4443
72+
WEBTRANSCAT_EARLY_LOG=1 webtranscat https://example.com:4443
7373
```
7474

7575
## Command Line Options

0 commit comments

Comments
 (0)