diff options
Diffstat (limited to 'graph-checker/Cargo.toml')
| -rw-r--r-- | graph-checker/Cargo.toml | 11 |
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" |