-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
89 lines (83 loc) · 3.19 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
84
85
86
87
88
89
[package]
name = "mairu"
version = "0.6.0"
authors = ["Sorah Fukumori <her@sorah.jp>"]
description = "on-memory AWS credentials agent and executor"
keywords = ["aws", "security", "cli"]
categories = ["command-line-utilities", "development-tools"]
documentation = "https://github.com/sorah/mairu"
homepage = "https://github.com/sorah/mairu"
repository = "https://github.com/sorah/mairu"
edition = "2021"
license = "Apache-2.0"
[profile.deb]
inherits = "release"
debug = false
[package.metadata.deb]
section = "utils"
default-features = false
features = ["rustls"]
depends = ["libcap2-bin"] # postinst
assets = [
["target/release/mairu", "usr/bin/", "755"],
]
maintainer-scripts = "pkg/debian/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tonic-build = "0.12.3"
[features]
default = ["native-tls"]
native-tls = ["reqwest/default-tls"]
rustls = ["reqwest/rustls-tls-native-roots"]
[dependencies]
anyhow = { version = "1.0.91", features = ["backtrace"] }
async-recursion = "1.0.5"
async-stream = "0.3.6"
async-trait = "0.1.77"
aws-config = { version = "1.5.9", features = ["behavior-version-latest"] }
aws-sdk-sso = "1.47.0"
aws-sdk-ssooidc = "1.48.0"
aws-smithy-runtime-api = { version = "1.7.3", features = ["client"] }
aws-smithy-types = "1.2.9"
axum = { version = "0.7.4", features = ["tracing", "macros", "query"] }
base64 = "0.22.1"
base64ct = { version = "1.6.0", features = ["alloc", "std"] }
cfg-if = "1.0.0"
chrono = { version = "0.4.34", features = ["serde"] }
clap = { version = "4.5.1", features = ["cargo", "derive", "env"] }
daemonize = "0.5.0"
futures = "0.3.31"
futures-core = "0.3.31"
headers = "0.4.0"
hyper = { version = "1.1.0", features = ["http1", "server"] }
hyper-util = "0.1.10"
indoc = "2.0.5"
libc = "0.2.153"
nix = { version = "0.29.0", features = ["resource", "process", "ptrace", "mman", "fs", "signal", "hostname"] }
oauth2 = "5.0.0-rc.1"
once_cell = { version = "1.19.0", features = ["parking_lot"] }
parking_lot = "0.12.1"
pin-project = "1.1.7"
process_path = "0.1.4"
prost = "0.13.3"
prost-types = "0.13.3"
rand = "0.8.5"
reqwest = { version = "0.12.9", default-features = false, features = ["charset", "http2", "macos-system-configuration", "json"] }
secrecy = { version = "0.10.0", features = ["serde"] }
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
serde_with = { version = "3.11.0", features = ["base64"] }
sha2 = "0.10.8"
subtle = { version = "2.5.0", features = ["core_hint_black_box"] }
thiserror = "1.0.65"
tokio = { version = "1.41.0", features = ["full"] }
tokio-stream = { version = "0.1.14", features = ["net", "signal"] }
tonic = "0.12.3"
tower = { version = "0.5.1", features = ["tracing"] }
tracing = { version = "0.1.40", features = ["attributes"] }
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.18", features = ["fmt", "env-filter", "local-time", "json", "time"] }
url = { version = "2.5.0", features = ["serde"] }
zeroize = { version = "1.7.0", features = ["std", "aarch64", "zeroize_derive", "serde", "derive"] }
[target.'cfg(any(target_os = "freebsd", target_os = "dragonfly"))'.dependencies]
rustix = { version = "0.38.38", default-features = false, features = ["std", "process"] }