mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
![dependabot[bot]](/assets/img/avatar_default.png)
* Bump uuid from 1.7.0 to 1.8.0 Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.7.0 to 1.8.0. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.7.0...1.8.0) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * use as_bytes --------- 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 <djmitche@google.com>
47 lines
1.3 KiB
TOML
47 lines
1.3 KiB
TOML
[workspace]
|
|
|
|
members = [
|
|
"taskchampion/taskchampion",
|
|
"taskchampion/sync-server",
|
|
"taskchampion/lib",
|
|
"taskchampion/integration-tests",
|
|
"taskchampion/xtask",
|
|
]
|
|
|
|
resolver = "2"
|
|
|
|
# src/tc/rust is just part of the TW build and not a public crate
|
|
exclude = [ "src/tc/rust" ]
|
|
|
|
# All Rust dependencies are defined here, and then referenced by the
|
|
# Cargo.toml's in the members with `foo.workspace = true`.
|
|
[workspace.dependencies]
|
|
actix-rt = "2"
|
|
actix-web = "^4.3.1"
|
|
anyhow = "1.0"
|
|
byteorder = "1.5"
|
|
cc = "1.0.73"
|
|
chrono = { version = "^0.4.22", features = ["serde"] }
|
|
clap = { version = "^4.3.0", features = ["string"] }
|
|
env_logger = "^0.10.0"
|
|
ffizz-header = "0.5"
|
|
flate2 = "1"
|
|
futures = "^0.3.25"
|
|
google-cloud-storage = { version = "0.15.0", default-features = false, features = ["rustls-tls", "auth"] }
|
|
lazy_static = "1"
|
|
libc = "0.2.136"
|
|
log = "^0.4.17"
|
|
pretty_assertions = "1"
|
|
proptest = "^1.4.0"
|
|
ring = "0.17"
|
|
rstest = "0.17"
|
|
rusqlite = { version = "0.29", features = ["bundled"] }
|
|
serde_json = "^1.0"
|
|
serde = { version = "^1.0.147", features = ["derive"] }
|
|
strum = "0.25"
|
|
strum_macros = "0.25"
|
|
tempfile = "3"
|
|
tokio = { version = "1", features = ["rt-multi-thread"] }
|
|
thiserror = "1.0"
|
|
ureq = { version = "^2.9.0", features = ["tls"] }
|
|
uuid = { version = "^1.8.0", features = ["serde", "v4"] }
|