First minimal commit
This commit is contained in:
parent
7019867411
commit
bc8bc0c2e4
10 changed files with 1051 additions and 1 deletions
26
Cargo.toml
Normal file
26
Cargo.toml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
[package]
|
||||
name = "Mesh-Killswitch"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
description = "Tun-in interface for Mesh networks like Tor/I2P with traffic-routing support (DIRECT/PROXY/BLOCK etc.)"
|
||||
repository = "https://codeberg.org/NamelessTeam/Mesh-Killswitch"
|
||||
|
||||
|
||||
[dependencies]
|
||||
etherparse = "0.19.0"
|
||||
ipnet = "2.12.0"
|
||||
iptables = "0.6.0"
|
||||
maxminddb = "0.27.3"
|
||||
rtnetlink = "0.20.0"
|
||||
serde = { version = "1.0.228", features = ["derive"] }
|
||||
tokio = { version = "1.50.0", features = ["full"] }
|
||||
toml = { version = "1.0.6", features = ["serde"] }
|
||||
tun = { version = "0.8.6", features = ["async", "tokio"] }
|
||||
|
||||
[profile.release]
|
||||
strip = true
|
||||
lto = true
|
||||
codegen-units = 1
|
||||
opt-level = 3
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue