Skip to content

Commit

Permalink
chore: bump to version 12.0.0
Browse files Browse the repository at this point in the history
Also specify the `version` field for local crates,
so that when publish they can get the correct package from crates.io

See: https://doc.rust-lang.org/nightly/cargo/reference/specifying-dependencies.html#multiple-locations
  • Loading branch information
weihanglo committed May 31, 2024
1 parent f970118 commit 8ac9c2e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ members = [
]

[workspace.package]
version = "11.0.1"
version = "12.0.0"
authors = ["Wesley Wiser <[email protected]>", "Michael Woerister <michaelwoerister@posteo>"]
edition = "2018"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang/measureme"

[workspace.dependencies]
analyzeme = { path = "analyzeme" }
analyzeme = { version = "12.0.0", path = "analyzeme" }
clap = { version = "4.5.0", features = ["derive"] }
decodeme = { path = "decodeme" }
decodeme = { version = "12.0.0", path = "decodeme" }
decodeme_10 = { version = "10.1.3", package = "decodeme" }
flate2 = "1.0"
inferno = { version = "0.11", default-features = false }
log = "0.4"
measureme = { path = "measureme" }
measureme = { version = "12.0.0", path = "measureme" }
measureme_10 = { version = "10.1.3", package = "measureme" }
memchr = "2"
memmap2 = "0.2.1"
Expand Down

0 comments on commit 8ac9c2e

Please sign in to comment.