diff --git a/file_linked/Cargo.toml b/file_linked/Cargo.toml index d951c7a..2016c7e 100644 --- a/file_linked/Cargo.toml +++ b/file_linked/Cargo.toml @@ -22,4 +22,3 @@ bincode = "1.3.3" log = "0.4.14" serde_json = "1.0.114" tokio = { version = "1.37.0", features = ["full"] } -futures = "0.3.30" diff --git a/gemla/Cargo.toml b/gemla/Cargo.toml index fac46e1..925c992 100644 --- a/gemla/Cargo.toml +++ b/gemla/Cargo.toml @@ -14,11 +14,8 @@ categories = ["simulation"] [dependencies] serde = { version = "1.0", features = ["derive"] } -serde_json = "1.0" uuid = { version = "1.7", features = ["serde", "v4"] } clap = { version = "4.5.2", features = ["derive"] } -toml = "0.8.10" -regex = "1" file_linked = { version = "0.1.0", path = "../file_linked" } thiserror = "1.0" anyhow = "1.0" @@ -28,9 +25,6 @@ env_logger = "0.11.3" futures = "0.3.30" tokio = { version = "1.37.0", features = ["full"] } num_cpus = "1.16.0" -easy-parallel = "3.3.1" -fann = "0.1.8" async-trait = "0.1.78" async-recursion = "1.1.0" -lerp = "0.5.0" console-subscriber = "0.2.0" diff --git a/gemla/build.rs b/gemla/build.rs deleted file mode 100644 index e6b8ca6..0000000 --- a/gemla/build.rs +++ /dev/null @@ -1,11 +0,0 @@ -fn main() { - // Replace this with the path to the directory containing `fann.lib` - let lib_dir = "F://vandomej/Downloads/vcpkg/packages/fann_x64-windows/lib"; - - println!("cargo:rustc-link-search=native={}", lib_dir); - println!("cargo:rustc-link-lib=static=fann"); - // Use `dylib=fann` instead of `static=fann` if you're linking dynamically - - // If there are any additional directories where the compiler can find header files, you can specify them like this: - // println!("cargo:include={}", path_to_include_directory); -}