forked from drogue-iot/drg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (40 loc) · 1.18 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
[package]
name = "drg"
version = "0.7.1"
authors = ["Jean-Baptiste Trystram <jbtrystram@redhat.com>"]
edition = "2018"
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]
anyhow = "1.0"
reqwest = { version = "0.11", features = ["blocking", "json"] }
clap = "2.33.3"
oauth2 = "3.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 = "2"
tempfile = "3.2.0"
tiny_http = "0.6.2"
qstring = "0.7.2"
url = { version = "2.2.1", features = ["serde"] }
chrono = { version = "0.4", features = ["serde"]}
webbrowser = "0.5.5"
edit = "0.1.3"
dirs = "3.0"
tabular = "0.1.4"
base64 = "0.13.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"
tungstenite = { version = "0.12.0", features = ["native-tls"]}