Skip to content

Commit afaebdb

Browse files
committed
added cargo.lock
1 parent 1f9ac6f commit afaebdb

File tree

3 files changed

+196
-9
lines changed

3 files changed

+196
-9
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
debug/
44
target/
55

6-
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
7-
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
8-
Cargo.lock
9-
106
# These are backup files generated by rustfmt
117
**/*.rs.bk
128

Cargo.lock

Lines changed: 191 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cargo-ament-build"
33
version = "0.1.9"
44
authors = ["Nikolai Morin <[email protected]>"]
5-
edition = "2021"
5+
edition = "2024"
66
license = "Apache-2.0"
77
description = "Cargo plugin for use with colcon workspaces"
88
repository = "https://github.com/ros2-rust/cargo-ament-build"
@@ -13,9 +13,9 @@ keywords = ["ros2", "colcon", "ament"]
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
anyhow = "1"
17-
cargo-manifest = "0.17"
18-
pico-args = "0.4"
16+
anyhow = "1.0.98"
17+
cargo-manifest = "0.19.1"
18+
pico-args = "0.5.0"
1919

2020
# The profile that 'cargo dist' will build with
2121
[profile.dist]
@@ -35,4 +35,4 @@ targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "aarch64-unknown
3535

3636
[workspace.metadata.dist.github-custom-runners]
3737
aarch64-unknown-linux-gnu = "buildjet-8vcpu-ubuntu-2204-arm"
38-
aarch64-unknown-linux-musl = "buildjet-8vcpu-ubuntu-2204-arm"
38+
aarch64-unknown-linux-musl = "buildjet-8vcpu-ubuntu-2204-arm"

0 commit comments

Comments
 (0)