Bump taskchampion from 0.9.0 to 1.0.0 (#3722)

* Bump taskchampion from 0.9.0 to 1.0.0

Bumps [taskchampion](https://github.com/GothenburgBitFactory/taskchampion) from 0.9.0 to 1.0.0.
- [Release notes](https://github.com/GothenburgBitFactory/taskchampion/releases)
- [Commits](https://github.com/GothenburgBitFactory/taskchampion/compare/v0.9.0...v1.0.0)

---
updated-dependencies:
- dependency-name: taskchampion
  dependency-type: direct:production
  update-type: version-update:semver-major
...

* Bump MSRV

* update url to address RUSTSEC-2024-0421

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Dustin J. Mitchell <dustin@v.igoro.us>
This commit is contained in:
dependabot[bot] 2024-12-10 13:45:25 +00:00 committed by GitHub
parent 4add839548
commit ddae5c4ba9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 1069 additions and 81 deletions

View file

@ -32,7 +32,7 @@ jobs:
# If this version is old enough to cause errors, or older than the # If this version is old enough to cause errors, or older than the
# TaskChampion MSRV, bump it to the MSRV of the currently-required # TaskChampion MSRV, bump it to the MSRV of the currently-required
# TaskChampion package; if necessary, bump that version as well. # TaskChampion package; if necessary, bump that version as well.
toolchain: "1.73.0" # MSRV toolchain: "1.78.0" # MSRV
override: true override: true
- uses: actions-rs/cargo@v1.0.3 - uses: actions-rs/cargo@v1.0.3

View file

@ -119,7 +119,7 @@ jobs:
# TaskChampion MSRV, bump it to the MSRV of the currently-required # TaskChampion MSRV, bump it to the MSRV of the currently-required
# TaskChampion package; if necessary, bump that version as well. # TaskChampion package; if necessary, bump that version as well.
# This should match the MSRV in `src/taskchampion-cpp/Cargo.toml`. # This should match the MSRV in `src/taskchampion-cpp/Cargo.toml`.
toolchain: "1.73.0" # MSRV toolchain: "1.78.0" # MSRV
override: true override: true
- uses: actions-rs/cargo@v1.0.3 - uses: actions-rs/cargo@v1.0.3

1140
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -22,7 +22,7 @@ You will need the following libraries:
- libuuid (not needed for OSX) - libuuid (not needed for OSX)
You will need a Rust toolchain of the Minimum Supported Rust Version (MSRV): You will need a Rust toolchain of the Minimum Supported Rust Version (MSRV):
- rust 1.73.0 - rust 1.78.0
Basic Installation Basic Installation
------------------ ------------------

View file

@ -3,13 +3,13 @@ name = "taskchampion-lib"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
publish = false publish = false
rust-version = "1.73.0" # MSRV rust-version = "1.78.0" # MSRV
[lib] [lib]
crate-type = ["staticlib"] crate-type = ["staticlib"]
[dependencies] [dependencies]
taskchampion = "0.9.0" taskchampion = "1.0.0"
cxx = "1.0.133" cxx = "1.0.133"
[features] [features]