From bee8c7face90079e57ce907a850b4b45ee025993 Mon Sep 17 00:00:00 2001 From: zirkonya Date: Sat, 29 Aug 2026 22:18:24 +0200 Subject: Add Cargo.toml + Cargo.lock --- Cargo.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 776e589..6295036 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,10 +5,26 @@ edition = "2024" [dependencies] getset = "0.1.7" +thiserror = "1" +# Runtime +smol = { version = "2.0.2", optional = true } +tokio = { version = "1.53.1", optional = true } +# Macros zr_protocol_macros = { version = "0.1.0", path = "macros", optional = true } [features] +# Macros macros = ["dep:zr_protocol_macros"] +# Runtime +async = [] +tokio = ["dep:tokio", "async"] +smol = ["dep:smol", "async"] +# Transport +tcp = [] +udp = [] +# Type +f16 = [] +f128 = [] [workspace] members = ["macros"] -- cgit v1.2.3