| 1 | [package] |
| 2 | name = "cielago" |
| 3 | version = "0.1.3" |
| 4 | edition = "2024" |
| 5 | authors = ["Steve Simkins <stevedsimkins@gmail.com>"] |
| 6 | description = "Like Postman but actually works" |
| 7 | repository = "https://github.com/stevedylandev/cielago" |
| 8 | homepage = "https://github.com/stevedylandev/cielago" |
| 9 | license = "MIT" |
| 10 | readme = "README.md" |
| 11 | keywords = ["tui", "api", "http", "client", "terminal"] |
| 12 | categories = ["command-line-utilities", "development-tools"] |
| 13 | exclude = ["/.github", "/dist-workspace.toml", "/cliff.toml"] |
| 14 | |
| 15 | [dependencies] |
| 16 | anyhow = "1.0.104" |
| 17 | clap = { version = "4.6.6", features = ["derive"] } |
| 18 | crossterm = "0.29.0" |
| 19 | dirs = "6.0.0" |
| 20 | ratatui = "0.30.2" |
| 21 | reqwest = { version = "0.13.4", default-features = false, features = [ |
| 22 | "rustls", |
| 23 | "json", |
| 24 | "query", |
| 25 | "form", |
| 26 | ] } |
| 27 | serde = { version = "1.0.229", features = ["derive"] } |
| 28 | serde_json = { version = "1.0.151", features = ["preserve_order"] } |
| 29 | serde_yaml = "0.9.34" |
| 30 | thiserror = "2.0.19" |
| 31 | tokio = { version = "1.53.1", features = ["rt-multi-thread", "macros"] } |
| 32 | url = "2.5.8" |
| 33 | uuid = { version = "1.24.0", features = ["v4", "serde"] } |
| 34 | |
| 35 | [dev-dependencies] |
| 36 | wiremock = "0.6" |
| 37 | tempfile = "3" |
| 38 | tokio = { version = "1.53.1", features = ["rt-multi-thread", "macros"] } |
| 39 | |
| 40 | # The profile that 'dist' will build with |
| 41 | [profile.dist] |
| 42 | inherits = "release" |
| 43 | lto = "thin" |
| 44 | tap = "stevedylandev/homebrew-tap" |