From 1680dc7c18135548d1a0e237d5b4a8d95a79cd68 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 25 Nov 2025 09:47:08 -0800 Subject: First stab at adding async/tokio support. --- rust/Cargo.lock | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'rust/Cargo.lock') diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 013989c..3c89b5e 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -2,6 +2,31 @@ # It is not intended for manual editing. version = 4 +[[package]] +name = "bytes" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" + [[package]] name = "gats" version = "0.1.0" +dependencies = [ + "tokio", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" + +[[package]] +name = "tokio" +version = "1.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" +dependencies = [ + "bytes", + "pin-project-lite", +] -- cgit v1.2.3