-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
73 lines (55 loc) · 1.73 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
[package]
name = "drg"
version = "0.11.0"
authors = ["Jean-Baptiste Trystram <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
description = "A command line tool to interact with a drogue-cloud instance."
repository = "https://github.com/drogue-iot/drg/"
homepage = "https://drogue.io/"
categories = ["command-line-utilities"]
[dependencies]
drogue-client = "0.11"
async-trait = "0.1"
tokio = { version = "1", features = ["full"] }
anyhow = "1.0"
thiserror = "1.0"
reqwest = { version = "0.11", features = ["blocking", "json"] }
clap = { version = "3.2.22", features = ["cargo", "env"] }
oauth2 = "4.1.0"
simple_logger = { version = "1.11.0", default-features = false, features = [ "colored" ] }
log = "0.4.13"
strum = "0.21"
strum_macros = "0.21"
serde_json = "1.0"
serde_yaml = "0.8"
serde = { version = "1.0", features = ["derive"] }
colored_json = "3"
tempfile = "3.2.0"
tiny_http = "0.8.0"
qstring = "0.7.2"
url = { version = "2.2.1", features = ["serde"] }
urlencoding = "1.3"
chrono = { version = "0.4", features = ["serde"]}
webbrowser = "0.5.5"
edit = "0.1.3"
dirs = "3.0"
tabular = "0.2"
base64 = "0.21.0"
rcgen = { version = "0.8.11", features = ["pem", "x509-parser"] }
x509-parser = "0.9.2"
json_value_merge = "0.1.2"
rsa = "0.5.0"
rand = "0.8.4"
sha-crypt = "0.3.2"
tungstenite = { version = "0.18.0", features = ["native-tls"]}
native-tls = "0.2.10"
[dev-dependencies]
assert_cmd = "2.0.6"
rstest = "0.12.0"
test-utils = { path = "test-utils" }
uuid = {version= "1.0", features = ["v4"]}
[patch.crates-io]
#drogue-client = { git = "https://github.com/drogue-iot/drogue-client", rev = "3e0fdb91305803c51946f8a818e4f053ab88c2c3" } # FIXME: awaiting release
#drogue-client = { path = "../drogue-client" }