summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authornamilsk <namilsk@namilsk.tech>2026-03-18 21:21:21 +0300
committernamilsk <namilsk@namilsk.tech>2026-03-18 21:21:21 +0300
commit8887a775f5c46551f8d9ea0f2197d129008eabf1 (patch)
treec37f9808af3326d8d0adf873c756bae0ebe6257f /Cargo.toml
parentda8e70f2e3c841796c122ca90617d74cb044b763 (diff)
Written geosite protobuf parser and tests 4 it
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml10
1 files changed, 9 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 5d073aa..7cb4c02 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,14 +4,19 @@ 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/nsc"
+build = "build.rs"
+[build-dependencies]
+prost-build = "0.14.3"
[dependencies]
arti-client = "0.40.0"
-etherparse = "0.19.0"
+bytes = { version = "1.11.1", features = ["serde"] }
ipnet = "2.12.0"
iptables = "0.6.0"
maxminddb = "0.27.3"
+prost = "0.14.3"
+prost-types = "0.14.3"
rtnetlink = "0.20.0"
serde = { version = "1.0.228", features = ["derive"] }
tokio = { version = "1.50.0", features = ["full"] }
@@ -24,4 +29,7 @@ lto = true
codegen-units = 1
opt-level = 3
+[dev-dependencies]
+ureq = "2.12"
+