Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump all editions, and required versions for new release #140

Merged
merged 3 commits into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dof/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "dof"
version = "0.1.5"
version = "0.2.0"
authors = [
"Benjamin Naecker <[email protected]>",
"Adam H. Leventhal <[email protected]>",
]
bnaecker marked this conversation as resolved.
Show resolved Hide resolved
edition = "2018"
edition = "2021"
license = "Apache-2.0"
description = "Tools to read and write the DTrace Object Format (DOF)"
repository = "https://github.com/oxidecomputer/usdt.git"
Expand Down
2 changes: 1 addition & 1 deletion dtrace-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "dtrace-parser"
version = "0.1.14"
authors = ["Benjamin Naecker <[email protected]>",
"Adam H. Leventhal <[email protected]>"]
edition = "2018"
edition = "2021"
license = "Apache-2.0"
description = "Parse DTrace provider definitions into Rust"
repository = "https://github.com/oxidecomputer/usdt.git"
Expand Down
2 changes: 1 addition & 1 deletion dusty/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "dusty"
version = "0.1.0"
authors = ["Benjamin Naecker <[email protected]>"]
edition = "2018"
edition = "2021"
description = "Tool to inspect USDT probe records in object files"
license = "Apache-2.0"
rust-version = "1.70.0"
Expand Down
2 changes: 1 addition & 1 deletion probe-test-attr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "probe-test-attr"
version = "0.1.0"
authors = ["Benjamin Naecker <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
usdt = { path = "../usdt", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion probe-test-build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "probe-test-build"
version = "0.1.0"
authors = ["Benjamin Naecker <[email protected]>",
"Adam H. Leventhal <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
usdt = { path = "../usdt", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion probe-test-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "probe-test-macro"
version = "0.1.0"
authors = ["Benjamin Naecker <[email protected]>",
"Adam H. Leventhal <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
usdt = { path = "../usdt", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion tests/argument-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "argument-types"
version = "0.1.0"
authors = ["Benjamin Naecker <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
usdt = { path = "../../usdt" }
Expand Down
2 changes: 1 addition & 1 deletion tests/compile-errors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "compile-errors"
version = "0.1.0"
authors = ["Benjamin Naecker <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
usdt = { path = "../../usdt" }
Expand Down
2 changes: 1 addition & 1 deletion tests/does-it-work/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "does-it-work"
version = "0.1.0"
authors = ["Benjamin Naecker <[email protected]>",
"Adam H. Leventhal <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
usdt = { path = "../../usdt" }
Expand Down
2 changes: 1 addition & 1 deletion tests/empty/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "empty"
version = "0.1.0"
authors = ["Benjamin Naecker <[email protected]>",
"Adam H. Leventhal <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies.usdt]
path = "../../usdt"
Expand Down
2 changes: 1 addition & 1 deletion tests/fake-cmd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "fake-cmd"
version = "0.1.0"
authors = ["Benjamin Naecker <[email protected]>",
"Adam H. Leventhal <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
fake-lib = { path = "../fake-lib" }
Expand Down
2 changes: 1 addition & 1 deletion tests/fake-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "fake-lib"
version = "0.1.0"
authors = ["Benjamin Naecker <[email protected]>",
"Adam H. Leventhal <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
usdt = { path = "../../usdt", features = ["asm"] }
Expand Down
2 changes: 1 addition & 1 deletion tests/test-json/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "test-json"
version = "0.1.0"
authors = ["Benjamin Naecker <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
usdt = { path = "../../usdt" }
Expand Down
2 changes: 1 addition & 1 deletion tests/test-unique-id/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "test-unique-id"
version = "0.1.0"
authors = ["Benjamin Naecker <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
usdt = { path = "../../usdt" }
Expand Down
2 changes: 1 addition & 1 deletion tests/usize/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "usize"
version = "0.1.0"
authors = ["Benjamin Naecker <[email protected]>",
"Adam H. Leventhal <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
usdt = { path = "../../usdt", features = ["asm"] }
Expand Down
2 changes: 1 addition & 1 deletion tests/zero-arg-probe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "zero-arg-probe"
version = "0.1.0"
authors = ["Benjamin Naecker <[email protected]>",
"Adam H. Leventhal <[email protected]>"]
edition = "2018"
edition = "2021"

[dependencies]
usdt = { path = "../../usdt" }
Expand Down
6 changes: 3 additions & 3 deletions usdt-attr-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "usdt-attr-macro"
version = "0.3.5"
version = "0.4.0"
authors = ["Benjamin Naecker <[email protected]>"]
edition = "2018"
edition = "2021"
license = "Apache-2.0"
description = "Procedural macro for generating Rust macros for USDT probes"
repository = "https://github.com/oxidecomputer/usdt.git"
Expand All @@ -16,7 +16,7 @@ proc-macro2 = "1"
serde_tokenstream = "0.2"
syn = { version = "2", features = ["full"] }
quote = "1"
usdt-impl = { path = "../usdt-impl", default-features = false, version = "= 0.3.5" }
usdt-impl = { path = "../usdt-impl", default-features = false, version = "= 0.4.0" }

[features]
default = ["asm"]
Expand Down
8 changes: 4 additions & 4 deletions usdt-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "usdt-impl"
version = "0.3.5"
version = "0.4.0"
authors = ["Benjamin Naecker <[email protected]>",
"Adam H. Leventhal <[email protected]>"]
edition = "2018"
edition = "2021"
license = "Apache-2.0"
description = "Main implementation crate for the USDT package"
repository = "https://github.com/oxidecomputer/usdt.git"
Expand All @@ -24,10 +24,10 @@ thread-id = "4"
version_check = "0.9.4"

[target.'cfg(target_os = "macos")'.dependencies]
dof = { path = "../dof", optional = true, default-features = false, version = "= 0.1.5" }
dof = { path = "../dof", optional = true, default-features = false, version = "= 0.2.0" }

[target.'cfg(not(target_os = "macos"))'.dependencies]
dof = { path = "../dof", default-features = false, version = "= 0.1.5" }
dof = { path = "../dof", default-features = false, version = "= 0.2.0" }

[features]
default = ["asm"]
Expand Down
6 changes: 3 additions & 3 deletions usdt-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "usdt-macro"
version = "0.3.5"
version = "0.4.0"
authors = ["Benjamin Naecker <[email protected]>",
"Adam H. Leventhal <[email protected]>"]
edition = "2018"
edition = "2021"
license = "Apache-2.0"
description = "Procedural macro for generating Rust macros for USDT probes"
repository = "https://github.com/oxidecomputer/usdt.git"
Expand All @@ -14,7 +14,7 @@ proc-macro2 = "1"
serde_tokenstream = "0.2"
syn = { version = "2", features = ["full"] }
quote = "1"
usdt-impl = { path = "../usdt-impl", default-features = false, version = "= 0.3.5" }
usdt-impl = { path = "../usdt-impl", default-features = false, version = "= 0.4.0" }

[features]
default = ["asm"]
Expand Down
2 changes: 1 addition & 1 deletion usdt-tests-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ name = "usdt-tests-common"
version = "0.0.0"
license = "Apache-2.0"
description = "Common routines for integration tests in this repository"
edition = "2018"
edition = "2021"

[dependencies]
12 changes: 6 additions & 6 deletions usdt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "usdt"
version = "0.3.5"
version = "0.4.0"
authors = [
"Benjamin Naecker <[email protected]>",
"Adam H. Leventhal <[email protected]>",
]
edition = "2018"
edition = "2021"
license = "Apache-2.0"
description = "Dust your Rust with USDT probes"
repository = "https://github.com/oxidecomputer/usdt.git"
Expand All @@ -20,12 +20,12 @@ repository = "https://github.com/oxidecomputer/usdt.git"
[dependencies]
dtrace-parser = { path = "../dtrace-parser", optional = true, version = "= 0.1.14" }
serde = "1"
usdt-impl = { path = "../usdt-impl", default-features = false, version = "= 0.3.5", features = [
usdt-impl = { path = "../usdt-impl", default-features = false, version = "= 0.4.0", features = [
"des",
] }
usdt-macro = { path = "../usdt-macro", default-features = false, version = "= 0.3.5" }
usdt-attr-macro = { path = "../usdt-attr-macro", default-features = false, version = "= 0.3.5" }
dof = { path = "../dof", features = ["des"] }
usdt-macro = { path = "../usdt-macro", default-features = false, version = "= 0.4.0" }
usdt-attr-macro = { path = "../usdt-attr-macro", default-features = false, version = "= 0.4.0" }
dof = { path = "../dof", features = ["des"], version = "= 0.2.0" }
goblin = { version = "0.6", features = ["elf32", "elf64"] }
memmap = { version = "0.7" }

Expand Down
Loading