-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 1.18 KB
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
[package]
name = "region-proxy"
version = "1.2.5"
edition = "2021"
authors = ["Masanari Higashi"]
description = "A CLI tool to create a SOCKS proxy through AWS EC2 in any region"
license = "MIT"
repository = "https://github.com/M-Igashi/region-proxy"
keywords = ["aws", "ec2", "proxy", "socks", "ssh"]
categories = ["command-line-utilities", "network-programming"]
exclude = ["CLAUDE.md", ".claude/"]
[dependencies]
aws-config = { version = "1.8", features = ["behavior-version-latest"] }
# default-features excludes legacy `rustls` feature that pulls vulnerable rustls-webpki 0.101.x via hyper-rustls 0.24.
aws-sdk-ec2 = { version = "1.221", default-features = false, features = ["default-https-client", "rt-tokio"] }
tokio = { version = "1", features = ["full"] }
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1"
dirs = "6"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1", features = ["v4"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
nix = { version = "0.31", features = ["signal", "process"] }
[profile.release]
lto = true
codegen-units = 1
strip = true