summaryrefslogtreecommitdiff
path: root/graph-checker/Cargo.toml
diff options
context:
space:
mode:
authorAndrew Guschin <guschin@altlinux.org>2024-09-10 16:25:15 +0400
committerAndrew Guschin <guschin@altlinux.org>2024-09-10 16:25:28 +0400
commitcd198b7c36f65e8d6faaca3f3b3c47b87c2ce350 (patch)
treeb21bc3ab7d54d0ce6adcbec25ed9293716b57191 /graph-checker/Cargo.toml
parent9e30b5950eaad2ef8e5cce251e166a71b13cf336 (diff)
feat: add async processor of tasksgeng-gen
Diffstat (limited to 'graph-checker/Cargo.toml')
-rw-r--r--graph-checker/Cargo.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/graph-checker/Cargo.toml b/graph-checker/Cargo.toml
index 3b07487..f837b59 100644
--- a/graph-checker/Cargo.toml
+++ b/graph-checker/Cargo.toml
@@ -6,7 +6,18 @@ links = "nauty"
build = "build.rs"
[dependencies]
+actix = "0.13.5"
+clap = { version = "4.5.17", features = ["derive", "env"] }
+dotenv = "0.15.0"
+egui = { version = "0.28.1", features = ["rayon", "serde"] }
+futures = "0.3.30"
rayon = "1.10.0"
+reqwest = "0.12.7"
+runtime-tokio = "0.0.0"
+serde = { version = "1.0.209", features = ["derive"] }
+serde_json = "1.0.128"
+sqlx = { version = "0.8.2", features = ["runtime-tokio", "sqlite"] }
+tokio = { version = "1.40.0", features = ["full"] }
[build-dependencies]
cc = "1.0"