Skip to content

Commit

Permalink
bump v numbers & wire the manifest correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
imrn99 committed May 12, 2024
1 parent 14da0d1 commit 9173b2b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [
]

[workspace.package]
version = "0.0.1"
version = "0.0.2"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://imrn99.github.io/integraal/"
Expand All @@ -20,8 +20,8 @@ authors = ["Isaie Muron <[email protected]>"]

[workspace.dependencies]
# members
integraal = { version = "0.0.1", path = "./integraal" }
integraal-examples = { version = "0.0.1", path = "./examples" }
integraal = { version = "0.0.2", path = "./integraal" }
integraal-examples = { version = "0.0.2", path = "./examples" }

# external
rand = "0.9.0-alpha.1"
Expand Down
14 changes: 7 additions & 7 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "integraal-examples"
version = "0.0.1"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://imrn99.github.io/integraal/"
repository = "https://github.com/imrn99/integraal"
readme = "../README.md"
version.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
readme.workspace = true
authors.workspace = true
description = "Example of the Integraal crate"
categories = ["algorithms", "concurrency", "mathematics", "science"]
keywords = ["algorithms", "analysis", "integration", "numerical-analysis", "numerical-method"]
authors = ["Isaie Muron <[email protected]>"]

[dependencies]
integraal = { workspace = true, features = ["montecarlo"] }
Expand Down
14 changes: 7 additions & 7 deletions integraal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "integraal"
version = "0.0.1"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://imrn99.github.io/integraal/"
repository = "https://github.com/imrn99/integraal"
readme = "../README.md"
version.workspace = true
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
readme.workspace = true
authors.workspace = true
description = "Integral computation, done in Rust! "
categories = ["algorithms", "concurrency", "mathematics", "science"]
keywords = ["algorithms", "analysis", "integration", "numerical-analysis", "numerical-method"]
authors = ["Isaie Muron <[email protected]>"]


# FEATURES
Expand Down

0 comments on commit 9173b2b

Please sign in to comment.