From c2a3b0860f07d725c251c190be474ee9d20fe35c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=93=D1=80=D0=B8=D0=B3=D0=BE=D1=80=D0=B8=D0=B9=20=D0=A1?= =?UTF-8?q?=D0=B0=D1=84=D1=80=D0=BE=D0=BD=D0=BE=D0=B2?= Date: Sat, 2 Aug 2025 14:56:43 +0000 Subject: [PATCH] Upload files to "futriix/src" --- futriix/src/Cargo.toml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 futriix/src/Cargo.toml diff --git a/futriix/src/Cargo.toml b/futriix/src/Cargo.toml new file mode 100644 index 0000000..95a8bfb --- /dev/null +++ b/futriix/src/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "futriix" +version = "0.2.0" +edition = "2024" + +[dependencies] +tokio = { version = "1.0", features = ["full"] } +rmp-serde = "0.15" # MessagePack +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" +toml = "0.7" +colored = "2.0" +log = "0.4" +#simplelog = { version = "0.12.2", features = ["termcolor", "std"] } +simplelog = { version = "0.12.2", features = ["termcolor"] } +crossbeam = "0.8" +parking_lot = "0.12" +ctrlc = "3.2" +warp = "0.3" # Для HTTP API и HTTP-сервера +futures = "0.3" # Для работы с асинхронными потоками FutureExt +chrono = { version = "0.4", features = ["serde"] } +rlua = "0.20.1"