-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
38 lines (33 loc) · 901 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
[package]
name = "illumos-metadata-agent"
description = "Cloud metadata bootstrap software for illumos systems"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/illumos/metadata-agent"
[features]
default = [ "vendored-openssl" ]
vendored-openssl = [ "openssl/vendored" ]
[[bin]]
name = "metadata"
path = "src/main.rs"
[dependencies]
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
serde_yaml = "0.9"
tempfile = "3"
anyhow = "1"
slog = "2.7"
slog-term = "2.7"
atty = "0.2"
toml = "0.7"
#
# I believe it is necessary to pull this in here, so that we can demand the
# static linking of the vendored OpenSSL. We don't use it directly, but the
# same version will then be used by reqwest.
#
openssl = { version = "0.10", optional = true }
[dependencies.reqwest]
version = "0.11"
default-features = false
features = [ "blocking", "json" ]