Compare commits

...

6 commits

3 changed files with 2 additions and 20 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "file_linked"
version = "0.1.4"
version = "0.1.41"
authors = ["vandomej <jacob.vandome15@gmail.com>"]
edition = "2018"
license = "MIT"
@ -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"

View file

@ -1,6 +1,6 @@
[package]
name = "gemla"
version = "0.1.3"
version = "0.1.31"
authors = ["Jacob VanDomelen <Jacob.Vandome15@gmail.com>"]
edition = "2018"
license = "MIT"
@ -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"

View file

@ -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);
}