-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
42 lines (36 loc) · 1.27 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
authors = ["Brian Payne <bwpayne@gmail.com>"]
edition = "2021"
name = "dot-http"
version = "0.3.0"
readme = "README.md"
description = "dot-http is a text-based scriptable HTTP client. It is a simple language that resembles the actual HTTP protocol but with additional features to make it practical for someone who builds and tests APIs."
repository = "https://github.com/bayne/dot-http"
keywords = ["http", "scriptable", "javascript", "API"]
categories = ["command-line-utilities", "development-tools::testing", "web-programming::http-client"]
license = "Apache-2.0"
[[bin]]
name = "dot-http"
path = "src/main.rs"
[badges]
maintenance = { status = "experimental" }
travis-ci = { repository = "bayne/dot-http" }
appveyor = { repository = "bayne/dot-http", branch = "master", service = "github" }
[dependencies]
Boa = {version ="0.8.0", optional = true}
rusty_v8 = {version = "0.5", optional = true} # Warning! Experimental
reqwest = { version = "0.11.11", features = ["blocking"] }
tokio = { version = "1.13.1", features = ["sync"] }
pest = "2.1.2"
pest_derive = "2.1.0"
clap = "2.33.0"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
anyhow = "1.0"
[dev-dependencies]
httpmock = "0.6.6"
tempfile = "3.1.0"
[features]
default = ["boa"]
boa = ["Boa"]
v8 = ["rusty_v8"]