-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
41 lines (37 loc) · 997 Bytes
/
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]
name = "capter"
version = "1.0.0-alpha.35"
authors = ["capter.io <filip@capter.io>"]
license = "MIT"
description = "Capter is a lightweight end-to-end testing tool for APIs."
readme = "README.md"
homepage = "https://capter.io"
repository = "https://github.com/capterqa/cli"
keywords = ["cli", "qa", "api"]
categories = ["command-line-utilities", "development-tools"]
exclude = [".releaserc", ".capter", ".github"]
edition = "2021"
[[bin]]
name = "capter"
path = "src/main.rs"
[dependencies]
regex = "1.5.5"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8.24"
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
ci_info = "0.13.2"
crossterm = "0.19.0"
clap = { version = "2.34.0", features = ["yaml"] }
globwalk = "0.8.1"
path-clean = "0.1.0"
ureq = { version = "2.0.1", features = ["json"] }
exitcode = "1.1.2"
dotenv = "0.15.0"
[dev-dependencies]
indoc = "1.0"
mockito = "0.31.0"
[profile.release]
opt-level = 's'
lto = true
codegen-units = 1