Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
NSoiffer committed Nov 2, 2024
1 parent 54afe3f commit bf74eac
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
[package]
name = "mathcat_c"
version = "0.6.4"
version = "0.6.5"
authors = ["Neil Soiffer <[email protected]>"]
edition = "2021"
license = "MIT"
description = "C/C++ interface for MathCAT (for MathCAT info, see crates.io or nsoiffer.github.io/MathCAT)"
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
Expand Down

0 comments on commit bf74eac

Please sign in to comment.