Skip to content

Commit

Permalink
Merge pull request #66 from Julien-cpsn/import_curl_files
Browse files Browse the repository at this point in the history
Import curl files
  • Loading branch information
Julien-cpsn authored May 5, 2024
2 parents 1fec4ea + b308b7d commit 2c82866
Show file tree
Hide file tree
Showing 18 changed files with 578 additions and 27 deletions.
214 changes: 206 additions & 8 deletions Cargo.lock

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

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,15 @@ jsonxf = "1.1.1"
toml = "0.8.11"
boa_engine = { version = "0.18.0", default-features = false }
parse_postman_collection = "0.2.3"
clap = { version = "4.5.0", features = ["derive", "color"] }
curl-parser = { version = "0.3.1", default-features = false }
clap = { version = "4.5.4", features = ["derive", "color", "suggestions"] }
arboard = "3.3.2"
tokio = { version = "1.36.0", features = ["rt", "rt-multi-thread", "macros"] }
parking_lot = { version = "0.12.2", features = ["serde"] }
strum = "0.26.2"
lazy_static = "1.4.0"
nestify = "0.3.3"
walkdir = "2.5.0"
snailquote = "0.3.1"
indexmap = { version = "2.2.6", features = ["serde"] }
base64 = "0.22.0"
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,13 +276,15 @@ https://github.com/NachoNievaG/atac.nvim
| [toml](https://github.com/toml-rs/toml) | 0.8.11 | Serialize & Deserialize application config files |
| [boa_engine](https://github.com/boa-dev/boa) | 0.18.0 | Create Javascript runtimes. Used for pre and post request scripts |
| [My fork](https://github.com/Julien-cpsn/postman-collection-rs) of [postman_collection](https://github.com/mandrean/postman-collection-rs) | 0.2.1 | Deserialize Postman collection files |
| [curl-parser](https://github.com/tyrchen/curl-parser) | 0.3.1 | Parse cURL request files |
| [clap](https://github.com/clap-rs/clap) | 4.5.0 | Command Line Argument Parser |
| [arboard](https://github.com/1Password/arboard) | 3.3.2 | Copy response body to clipboard |
| [tokio](https://github.com/tokio-rs/tokio) | 1.0.0 | Handle asynchronous requests |
| [parking_lot](https://github.com/Amanieu/parking_lot) | 0.12.2 | Smaller, faster and more flexible implementation of RwLock and Mutex. Used everywhere. |
| [strum](https://github.com/Peternator7/strum) | 0.26.2 | Enum facilities |
| [lazy_static](https://github.com/rust-lang-nursery/lazy-static.rs) | 1.4.0 | Allows for more flexible constants. Mainly used for accessing CLI arguments everywhere |
| [nestify](https://github.com/snowfoxsh/nestify) | 0.3.3 | Used to nest struct definitions |
| [walkdir](https://github.com/BurntSushi/walkdir) | 2.5.0 | Recursively retrieve files |
| [snailquote](https://github.com/euank/snailquote) | 0.3.1 | Unescape string |
| [indexmap](https://github.com/indexmap-rs/indexmap) | 2.2.6 | Ordered hashmap. Used in environments to preserve files' values order |
| [base64](https://github.com/marshallpierce/rust-base64) | 0.22.0 | Encode auth. |
Expand Down
Loading

0 comments on commit 2c82866

Please sign in to comment.