Skip to content

Commit b1688d5

Browse files
committed
remove 3 clients crate + adjustments
1 parent a471844 commit b1688d5

File tree

18 files changed

+87
-2483
lines changed

18 files changed

+87
-2483
lines changed

nym-vpn-core/Cargo.lock

Lines changed: 81 additions & 81 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nym-vpn-core/Cargo.toml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
resolver = "2"
33
members = [
44
"crates/nym-apple-network",
5-
"crates/nym-authenticator-client",
65
"crates/nym-common",
76
"crates/nym-connection-monitor",
87
"crates/nym-dbus",
@@ -12,7 +11,6 @@ members = [
1211
"crates/nym-gateway-probe",
1312
"crates/nym-harbour-master-client",
1413
"crates/nym-ipc",
15-
"crates/nym-ip-packet-client",
1614
"crates/nym-macos",
1715
"crates/nym-offline-monitor",
1816
"crates/nym-platform-metadata",
@@ -29,7 +27,6 @@ members = [
2927
"crates/nym-vpnc",
3028
"crates/nym-vpnd-types",
3129
"crates/nym-vpnd",
32-
"crates/nym-wg-gateway-client",
3330
"crates/nym-wg-go",
3431
"crates/nym-wg-metadata-client",
3532
"crates/nym-windows",
@@ -192,17 +189,15 @@ wiremock = "0.6.4"
192189
wmi = "0.17.2"
193190
x25519-dalek = "2.0"
194191
zeroize = "1.8.1"
195-
sentry = { version = "0.42.0", default-features = false}
192+
sentry = { version = "0.42.0", default-features = false }
196193

197194
nym-apple-network = { path = "crates/nym-apple-network" }
198-
nym-authenticator-client = { path = "crates/nym-authenticator-client" }
199195
nym-common = { path = "crates/nym-common" }
200196
nym-connection-monitor = { path = "crates/nym-connection-monitor" }
201197
nym-dbus = { path = "crates/nym-dbus" }
202198
nym-dns = { path = "crates/nym-dns" }
203199
nym-firewall = { path = "crates/nym-firewall" }
204200
nym-gateway-directory = { path = "crates/nym-gateway-directory" }
205-
nym-ip-packet-client = { path = "crates/nym-ip-packet-client" }
206201
nym-ipc = { path = "crates/nym-ipc" }
207202
nym-macos = { path = "crates/nym-macos" }
208203
nym-offline-monitor = { path = "crates/nym-offline-monitor" }
@@ -217,14 +212,14 @@ nym-vpn-network-config = { path = "crates/nym-vpn-network-config" }
217212
nym-vpn-proto = { path = "crates/nym-vpn-proto" }
218213
nym-vpn-store = { path = "crates/nym-vpn-store" }
219214
nym-vpnd-types = { path = "crates/nym-vpnd-types" }
220-
nym-wg-gateway-client = { path = "crates/nym-wg-gateway-client" }
221215
nym-wg-go = { path = "crates/nym-wg-go" }
222216
nym-wg-metadata-client = { path = "crates/nym-wg-metadata-client" }
223217
nym-windows = { path = "crates/nym-windows" }
224218
nym-platform-metadata = { path = "crates/nym-platform-metadata" }
225219
nym-vpn-lib-types-uniffi = { path = "crates/nym-vpn-lib-types-uniffi" }
226220
nym-vpnd-types-uniffi = { path = "crates/nym-vpnd-types-uniffi" }
227221

222+
nym-authenticator-client = { git = "https://github.com/nymtech/nym", branch = "develop" }
228223
nym-authenticator-requests = { git = "https://github.com/nymtech/nym", branch = "develop" }
229224
nym-api-requests = { git = "https://github.com/nymtech/nym", branch = "develop" }
230225
nym-bandwidth-controller = { git = "https://github.com/nymtech/nym", branch = "develop" }
@@ -243,6 +238,7 @@ nym-http-api-client = { git = "https://github.com/nymtech/nym", branch = "develo
243238
nym-http-api-client-macro = { git = "https://github.com/nymtech/nym", branch = "develop" }
244239
nym-network-defaults = { git = "https://github.com/nymtech/nym", branch = "develop" }
245240
nym-ip-packet-requests = { git = "https://github.com/nymtech/nym", branch = "develop" }
241+
nym-ip-packet-client = { git = "https://github.com/nymtech/nym", branch = "develop" }
246242
nym-node-requests = { git = "https://github.com/nymtech/nym", branch = "develop" }
247243
nym-pemstore = { git = "https://github.com/nymtech/nym", branch = "develop" }
248244
nym-service-provider-requests-common = { git = "https://github.com/nymtech/nym", branch = "develop" }
@@ -251,6 +247,7 @@ nym-statistics-common = { git = "https://github.com/nymtech/nym", branch = "deve
251247
nym-task = { git = "https://github.com/nymtech/nym", branch = "develop" }
252248
nym-topology = { git = "https://github.com/nymtech/nym", branch = "develop" }
253249
nym-validator-client = { git = "https://github.com/nymtech/nym", branch = "develop" }
250+
nym-wg-gateway-client = { git = "https://github.com/nymtech/nym", branch = "develop" }
254251
nym-wireguard-private-metadata-client = { git = "https://github.com/nymtech/nym", branch = "develop" }
255252
nym-wireguard-private-metadata-shared = { git = "https://github.com/nymtech/nym", branch = "develop" }
256253
nym-wireguard-types = { git = "https://github.com/nymtech/nym", branch = "develop" }

nym-vpn-core/crates/nym-authenticator-client/Cargo.toml

Lines changed: 0 additions & 27 deletions
This file was deleted.

nym-vpn-core/crates/nym-authenticator-client/src/error.rs

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)