@@ -0,0 +1,4 @@
+/target
+.idea
+Cargo.lock
+Config.json
@@ -0,0 +1,8 @@
+[package]
+name = "pin_trading_tool"
+version = "0.1.0"
+edition = "2021"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+[dependencies]
@@ -0,0 +1 @@
+1.81.0
+mod web_api;
@@ -0,0 +1,3 @@
+mod types;
+mod mexc_client;
+mod ws_manager;
@@ -0,0 +1,13 @@
+mod config;
+mod models;
+mod data_manager;
+mod order_execution;
+mod state;
+mod utils;
+mod strategy;
+mod exchange;
+mod api;
+fn main() {
+ println!("Hello, world!");
+}
+mod pin_strategy;
@@ -0,0 +1,2 @@
+mod error;
+mod log_setup;