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"