curll

Crates.iocurll
lib.rscurll
version0.1.2
created_at2025-07-31 16:09:23.367728+00
updated_at2025-08-09 18:08:49.662673+00
descriptionA rust curl
homepage
repositoryhttps://github.com/durgaprasad118/rust
max_upload_size
id1775262
size45,342
Walter White (durgaprasad118)

documentation

README

Rust's curl 🦀

  • v1 - simple http get with optional headers

Usage

  • Using the short option curll -u "https://jsonplaceholder.typicode.com/posts/1"
  • Using the long option curll --url "https://jsonplaceholder.typicode.com/posts/1"

With Headers

  • Single header curll -u "https://api.example.com/data" -H "Authorization: Bearer token123"
  • Multiple headers curll -u "https://api.example.com/data" -H "Authorization: Bearer token123" -H "Content-Type: application/json"
  • Using long option for headers curll --url "https://api.example.com/data" --header "Authorization: Bearer token123" --header "Content-Type: application/json"
Commit count: 0

cargo fmt