Files
naturecodevoid 1274fc3765 Prebuild (#1)
* [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
2023-02-22 20:56:56 -08:00

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"]