aboutsummaryrefslogtreecommitdiff
path: root/rust/Cargo.lock
diff options
context:
space:
mode:
authorMike Buland <mike@xagasoft.com>2025-11-25 09:47:08 -0800
committerMike Buland <mike@xagasoft.com>2025-11-25 09:47:08 -0800
commit1680dc7c18135548d1a0e237d5b4a8d95a79cd68 (patch)
tree7a05089ad0a8b737dad4d5d36d1a98c8bcfbaca0 /rust/Cargo.lock
parent8c5b9963e3467434777eeb104111478e39190384 (diff)
downloadlibgats-1680dc7c18135548d1a0e237d5b4a8d95a79cd68.tar.gz
libgats-1680dc7c18135548d1a0e237d5b4a8d95a79cd68.tar.bz2
libgats-1680dc7c18135548d1a0e237d5b4a8d95a79cd68.tar.xz
libgats-1680dc7c18135548d1a0e237d5b4a8d95a79cd68.zip
First stab at adding async/tokio support.
Diffstat (limited to '')
-rw-r--r--rust/Cargo.lock25
1 files changed, 25 insertions, 0 deletions
diff --git a/rust/Cargo.lock b/rust/Cargo.lock
index 013989c..3c89b5e 100644
--- a/rust/Cargo.lock
+++ b/rust/Cargo.lock
@@ -3,5 +3,30 @@
3version = 4 3version = 4
4 4
5[[package]] 5[[package]]
6name = "bytes"
7version = "1.11.0"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
10
11[[package]]
6name = "gats" 12name = "gats"
7version = "0.1.0" 13version = "0.1.0"
14dependencies = [
15 "tokio",
16]
17
18[[package]]
19name = "pin-project-lite"
20version = "0.2.16"
21source = "registry+https://github.com/rust-lang/crates.io-index"
22checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
23
24[[package]]
25name = "tokio"
26version = "1.48.0"
27source = "registry+https://github.com/rust-lang/crates.io-index"
28checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
29dependencies = [
30 "bytes",
31 "pin-project-lite",
32]