-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "mathcat_c" | ||
version = "0.6.2" | ||
version = "0.6.3" | ||
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.2" | ||
version = "0.6.3" | ||
# for testing MathCAT without having to publish a new version (change two occurences) | ||
# path = "../MathCAT/" | ||
# features = ["include-zip"] # for building, we want the zip files so we can include them separately | ||
|
@@ -21,7 +21,7 @@ crate-type = ["cdylib"] # Creates dynamic lib | |
[build-dependencies] | ||
zip = { version = "2.1", default-features = false, features = ["bzip2"] } | ||
cbindgen = "0.24" | ||
mathcat = { version = "0.6.2", features = ["include-zip"]} # for building, we want the zip files so we can include them separately | ||
mathcat = { version = "0.6.3", 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/", features = ["include-zip"]} | ||
|
||
|