This commit is contained in:
azw 2023-11-11 12:08:08 +00:00
parent 5ad5aa0c27
commit af0cae3d24
2 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ serde = "*"
serde_derive = "*"
serde_json = "*"
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.11.22", features = ["blocking", "json"] }
actix-web = "4"
r9 = { path = "../r9" }
r9_macro = { path = "../r9_macro" }

View File

@ -17,6 +17,7 @@ use std::sync::{Arc, Mutex};
use std::collections::HashMap;
use std::any::Any;
use serde_derive::Deserialize;
use reqwest::blocking;
use r9_macro::SharedFromSelf;
use r9_macro_derive::SharedFromSelf;