Compare commits

..

No commits in common. "ec68d4626103669f5192347be1f801fa6a6097b5" and "c41df2be787c49f67a1c0242b33b4513b89adcd5" have entirely different histories.

3 changed files with 20 additions and 2 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "file_linked"
version = "0.1.41"
version = "0.1.4"
authors = ["vandomej <jacob.vandome15@gmail.com>"]
edition = "2018"
license = "MIT"
@ -22,3 +22,4 @@ 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.31"
version = "0.1.3"
authors = ["Jacob VanDomelen <Jacob.Vandome15@gmail.com>"]
edition = "2018"
license = "MIT"
@ -14,8 +14,11 @@ 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"
@ -25,6 +28,9 @@ 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"

11
gemla/build.rs Normal file
View file

@ -0,0 +1,11 @@
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);
}