-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
83 lines (64 loc) · 1.76 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[package]
name = "minos"
version = "0.3.3"
authors = ["Jordi Polo Carres <[email protected]>"]
description = """
Minos is a command line tool to generate and run scenarios against
APIs described by OpenAPI files.
"""
homepage = "https://github.com/JordiPolo/minos"
repository = "https://github.com/JordiPolo/minos"
readme = "README.md"
keywords = ["openapi", "testing", "cli"]
categories = ["command-line-utilities", "api"]
license = "Unlicense OR MIT"
autotests = false
edition = "2018"
[dependencies]
daedalus = { path = "crates/daedalus" }
#openapi_utils = { path = "../../oasproxy/openapi_utils" }
openapi_utils = "0.2"
anyhow = "1.0"
thiserror = "1.0"
regex = "1.0"
serde_json = "1.0"
termcolor = "1.0"
rand = "0.8"
openapiv3 = "0.3"
valico = "3"
tracing = { version = "0.1", default-features = false, features = ["log", "std"] }
tracing-subscriber = "0.2"
itertools = "0.10"
comfy-table = "2.0"
lazy_static = "*"
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
hyper = { version = "0.14", default-features = false, features = ["client", "http1", "stream", "runtime"] }
http = "*"
tokio = { version = "1", features = ["full"] }
mauth-client = "*"
indicatif = "*"
# clap = "3.0.0-beta.1"
gumdrop = "*"
[dependencies.clap]
#version = "0.9"
# default-features = false
# features = ["rustls"]
git = "https://github.com/clap-rs/clap.git"
rev = "v3.0.0-beta.2"
#rev = "90622b397e3d5bd6bdcecfbf1488b13f5a3f8301"
#rev = "e4c2d09"
[dependencies.goose]
version = "0.10.8"
default-features = false
features = ["rustls"]
#git = "https://github.com/tag1consulting/goose"
#rev = "014cb20"
[profile.dev]
debug = 0
[profile.release]
opt-level = 3
lto = true
#codegen-units = 1 # better optimizations
incremental = false
panic = 'abort'
debug = true