diff --git a/Cargo.toml b/Cargo.toml index 3918204..b0def1f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mathcat_c" -version = "0.6.4" +version = "0.6.5" authors = ["Neil Soiffer "] edition = "2021" license = "MIT" @@ -8,20 +8,21 @@ description = "C/C++ interface for MathCAT (for MathCAT info, see crates.io or n resolver = "2" # allows different build dependency features [dependencies.mathcat] -version = "0.6.4" +version = "0.6.5" # for testing MathCAT without having to publish a new version (change two occurences) -path = "../MathCAT/" +# path = "../MathCAT/" features = ["include-zip"] # for building, we want the zip files so we can include them separately [lib] name = "libmathcat_c" crate-type = ["cdylib"] # Creates dynamic lib -#crate-type = ["staticlib"] # Creates static lib [build-dependencies] zip = { version = "2.1", default-features = false, features = ["bzip2"] } cbindgen = "0.24" -mathcat = {path = "../MathCAT/", version = "0.6.4", features = ["include-zip"]} # for building, we want the zip files so we can include them separately +# for testing MathCAT without having to publish a new version (change two occurences) +# mathcat = {path = "../MathCAT/", version = "0.6.5", features = ["include-zip"]} # for building, we want the zip files so we can include them separately +mathcat = {version = "0.6.5", features = ["include-zip"]} # for building, we want the zip files so we can include them separately [profile.release] debug = true