-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 843 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 = "bp"
version = "2.0.0-alpha.3"
authors = ["Micooz Lee <[email protected]>"]
description = "bp is a set of advanced and efficient proxy tools written in pure Rust."
repository = "https://github.com/micooz/bp"
readme = "README.md"
keywords = ["bp", "proxy", "socks", "socks5", "firewall"]
license = "MIT"
edition = "2021"
default-run = "bp"
[[bin]]
name = "bp"
path = "bin/bp.rs"
[workspace]
members = [
"bp-cli",
"bp-core",
"bp-monitor",
"e2e",
]
[dependencies]
bp-cli = { path = "./bp-cli" }
bp-core = { path = "./bp-core" }
log = "0.4.0"
clap = { version = "3.0.0", default-features = false, features = ["std", "derive"] }
tokio = { version = "1.8.2", features = ["rt-multi-thread", "macros", "signal"] }
[profile.release]
lto = "fat"
codegen-units = 1
incremental = false
# panic = "abort"
# debug = 1