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
257 changes: 257 additions & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ serde_json = "1.0.145"
sha2 = "0.10"
sha1 = "0.10"
md-5 = "0.10"
url = "2"
urlencoding = "2.1.3"
uuid = { version = "1.11.0", features = ["v1", "v3", "v4", "v5", "v7"] }
ulid = { version = "1.1", features = ["serde", "uuid"] }
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,10 @@ After setting up completions, restart your shell or source your configuration fi
│ ├── base64 - Base64 encode/decode
│ │ ├── encode
│ │ └── decode
│ └── url - URL encode/decode
│ └── url - URL encode/decode/parse
│ ├── encode
│ └── decode
│ ├── decode
│ └── parse
├── Hashing & Security
│ ├── hash - Cryptographic hash digests
│ │ ├── md5
Expand Down Expand Up @@ -185,11 +186,12 @@ echo -n "hello world" | ut base64 encode -
```

#### `url`
URL encode and decode text.
URL encode, decode, and parse URLs.

```bash
ut url encode "hello world"
ut url decode "hello%20world"
ut url parse "https://example.com:8080/path?key=value#section"
printf "hello world" | ut url encode -
```

Expand Down
Loading