From a4447ebce8f6696a2b59931f72fd065345533e6d Mon Sep 17 00:00:00 2001 From: Alois Date: Sat, 4 Jul 2026 12:47:46 +0200 Subject: [PATCH] (fix): builds --- Cargo.lock | 1 - Cargo.toml | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 853e843..1a87082 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -985,7 +985,6 @@ dependencies = [ "mtp-crypto", "mtp-files", "mtp-host", - "mtp-transport", "mtp-type-map", "rand 0.8.6", "rcgen", diff --git a/Cargo.toml b/Cargo.toml index 275a012..daac4c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,8 +51,6 @@ edition = "2024" mtp-common = { version = "0.1.0", path = "common" } mtp-type-map = { version = "0.1.0", path = "type-map" } mtp-codec = { version = "0.1.0", path = "codec" } -mtp-transport = { version = "0.1.0", path = "transport" } - # --- optional, behind features --- mtp-crypto = { version = "0.1.0", path = "crypto", optional = true, features = [ "serde", @@ -78,7 +76,7 @@ crypto = [ ] # MTP server host - version negotiation, Registry, incoming QUIC connections. -host = ["dep:mtp-host", "mtp-codec/registry", "mtp-transport/host"] +host = ["dep:mtp-host", "mtp-codec/registry"] # MTP client - outgoing QUIC connections to a host. client = ["dep:mtp-client"]