mirror of
https://github.com/SideStore/em_proxy.git
synced 2026-05-17 20:20:35 +00:00
1274fc3765
* [build] copy prebuild logic from minimuxer * [build] reduce library size * [build] update to attempt #2 and add panic = "abort" * [build] remove panic = "abort" because it made build fail * Update Makefile
28 lines
508 B
TOML
28 lines
508 B
TOML
[package]
|
|
name = "em_proxy"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[[bin]]
|
|
name = "run"
|
|
path = "src/run.rs"
|
|
|
|
[dependencies]
|
|
boringtun = { version = "0.4.0" }
|
|
libc = { version = "0.2.126" }
|
|
once_cell = { version = "1.15.0" }
|
|
|
|
simple_logger = { version = "2.3.0" }
|
|
log = { version = "0.4.17" }
|
|
|
|
[dev-dependencies]
|
|
rand = { version = "*" }
|
|
|
|
[build-dependencies]
|
|
cbindgen = "0.20.0"
|
|
|
|
[lib]
|
|
crate-type = ["staticlib"]
|