diff --git a/Cargo.lock b/Cargo.lock index 9defd3a..412dba9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -459,13 +459,13 @@ dependencies = [ [[package]] name = "librtbit-bencode" version = "0.1.5" -source = "git+https://github.com/TheDancingDeveloper-org/librtbit-bencode.git?branch=migration%2Fgithub-native-source#cb3bfef8de92fbef66fd8edb2811f84cdffd2d15" +source = "git+https://github.com/TheDancingDeveloper-org/librtbit-bencode.git#c6e9086c4805375fa9f865228f0727a495639bcb" dependencies = [ "anyhow", "arrayvec", "atoi", "bytes", - "librtbit-buffers", + "librtbit-buffers 0.1.2 (git+https://github.com/TheDancingDeveloper-org/librtbit-buffers.git?branch=migration%2Fgithub-native-source)", "librtbit-clone-to-owned", "serde", "serde_derive", @@ -483,6 +483,17 @@ dependencies = [ "serde_derive", ] +[[package]] +name = "librtbit-buffers" +version = "0.1.2" +source = "git+https://github.com/TheDancingDeveloper-org/librtbit-buffers.git#60fde393b379face7c0acfe7f654a1a5ae3f3731" +dependencies = [ + "bytes", + "librtbit-clone-to-owned", + "serde", + "serde_derive", +] + [[package]] name = "librtbit-clone-to-owned" version = "0.1.1" @@ -504,7 +515,7 @@ dependencies = [ "hex 0.4.3", "itertools", "librtbit-bencode", - "librtbit-buffers", + "librtbit-buffers 0.1.2 (git+https://github.com/TheDancingDeveloper-org/librtbit-buffers.git)", "librtbit-clone-to-owned", "librtbit-sha1-wrapper", "memchr", diff --git a/Cargo.toml b/Cargo.toml index 242a23e..f889058 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,8 +21,8 @@ rand = "0.10" parking_lot = "0.12" serde = "1" serde_derive = "1" -buffers = { git = "https://github.com/TheDancingDeveloper-org/librtbit-buffers.git", branch = "migration/github-native-source", package = "librtbit-buffers" } -bencode = { git = "https://github.com/TheDancingDeveloper-org/librtbit-bencode.git", branch = "migration/github-native-source", package = "librtbit-bencode" } +buffers = { git = "https://github.com/TheDancingDeveloper-org/librtbit-buffers.git", package = "librtbit-buffers" } +bencode = { git = "https://github.com/TheDancingDeveloper-org/librtbit-bencode.git", package = "librtbit-bencode" } clone_to_owned = { git = "https://github.com/TheDancingDeveloper-org/librtbit-clone-to-owned.git", package = "librtbit-clone-to-owned" } sha1w = { git = "https://github.com/TheDancingDeveloper-org/librtbit-sha1-wrapper.git", package = "librtbit-sha1-wrapper", optional = true, default-features = false } itertools = "0.14"