mirror of
https://github.com/EasyTier/EasyTier.git
synced 2026-08-18 16:00:57 +00:00
d375d7e455
Add a native EasyTier proof-of-concept binary with TCP and UDP transports, TUN, UDP hole punching, AES-GCM, and a read-only RPC portal. Introduce a release-derived mini profile and musl linker policy so x86_64, big-endian MIPS, and little-endian MIPS stay below the strict 5,000,000-byte target without UPX.
38 lines
693 B
TOML
38 lines
693 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"easytier-core",
|
|
"easytier-proto",
|
|
"easytier",
|
|
"easytier-gui/src-tauri",
|
|
"easytier-web",
|
|
"easytier-contrib/easytier-mini",
|
|
"easytier-contrib/easytier-ffi",
|
|
"easytier-contrib/easytier-uptime",
|
|
"easytier-contrib/easytier-android-jni",
|
|
]
|
|
default-members = ["easytier", "easytier-web"]
|
|
exclude = [
|
|
"easytier-contrib/easytier-ohrs", # it needs ohrs sdk
|
|
]
|
|
|
|
[workspace.package]
|
|
edition = "2024"
|
|
rust-version = "1.95"
|
|
|
|
[profile.dev]
|
|
panic = "unwind"
|
|
debug = 2
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
lto = true
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
strip = true
|
|
|
|
[profile.mini]
|
|
inherits = "release"
|
|
opt-level = "z"
|
|
strip = "symbols"
|