mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
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:
parent
4add839548
commit
ddae5c4ba9
5 changed files with 1069 additions and 81 deletions
2
.github/workflows/checks.yml
vendored
2
.github/workflows/checks.yml
vendored
|
@ -32,7 +32,7 @@ jobs:
|
|||
# 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 package; if necessary, bump that version as well.
|
||||
toolchain: "1.73.0" # MSRV
|
||||
toolchain: "1.78.0" # MSRV
|
||||
override: true
|
||||
|
||||
- uses: actions-rs/cargo@v1.0.3
|
||||
|
|
2
.github/workflows/tests.yaml
vendored
2
.github/workflows/tests.yaml
vendored
|
@ -119,7 +119,7 @@ jobs:
|
|||
# TaskChampion MSRV, bump it to the MSRV of the currently-required
|
||||
# TaskChampion package; if necessary, bump that version as well.
|
||||
# This should match the MSRV in `src/taskchampion-cpp/Cargo.toml`.
|
||||
toolchain: "1.73.0" # MSRV
|
||||
toolchain: "1.78.0" # MSRV
|
||||
override: true
|
||||
|
||||
- uses: actions-rs/cargo@v1.0.3
|
||||
|
|
1140
Cargo.lock
generated
1140
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
2
INSTALL
2
INSTALL
|
@ -22,7 +22,7 @@ You will need the following libraries:
|
|||
- libuuid (not needed for OSX)
|
||||
|
||||
You will need a Rust toolchain of the Minimum Supported Rust Version (MSRV):
|
||||
- rust 1.73.0
|
||||
- rust 1.78.0
|
||||
|
||||
Basic Installation
|
||||
------------------
|
||||
|
|
|
@ -3,13 +3,13 @@ name = "taskchampion-lib"
|
|||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
publish = false
|
||||
rust-version = "1.73.0" # MSRV
|
||||
rust-version = "1.78.0" # MSRV
|
||||
|
||||
[lib]
|
||||
crate-type = ["staticlib"]
|
||||
|
||||
[dependencies]
|
||||
taskchampion = "0.9.0"
|
||||
taskchampion = "1.0.0"
|
||||
cxx = "1.0.133"
|
||||
|
||||
[features]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue