aboutsummaryrefslogtreecommitdiff
path: root/rust/Cargo.toml
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.toml
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 'rust/Cargo.toml')
-rw-r--r--rust/Cargo.toml4
1 files changed, 4 insertions, 0 deletions
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
index d8b03fe..e945f0b 100644
--- a/rust/Cargo.toml
+++ b/rust/Cargo.toml
@@ -4,3 +4,7 @@ version = "0.1.0"
4edition = "2024" 4edition = "2024"
5 5
6[dependencies] 6[dependencies]
7tokio = { version = "1.48.0", optional = true, features = ["io-util"] }
8
9[features]
10tokio = ["dep:tokio"]