mirror of
https://github.com/GothenburgBitFactory/taskchampion-sync-server.git
synced 2026-04-05 17:20:35 +00:00
Bumps [clap](https://github.com/clap-rs/clap) from 4.5.41 to 4.5.60. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.41...clap_complete-v4.5.60) --- updated-dependencies: - dependency-name: clap dependency-version: 4.5.60 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
36 lines
1.0 KiB
TOML
36 lines
1.0 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"core",
|
|
"server",
|
|
"sqlite",
|
|
"postgres",
|
|
]
|
|
rust-version = "1.88.0" # MSRV
|
|
|
|
[workspace.dependencies]
|
|
async-trait = "0.1.88"
|
|
uuid = { version = "^1.22.0", features = ["serde", "v4"] }
|
|
actix-web = "^4.13.0"
|
|
anyhow = "1.0"
|
|
thiserror = "2.0"
|
|
futures = "^0.3.25"
|
|
serde_json = "^1.0"
|
|
serde = { version = "^1.0.147", features = ["derive"] }
|
|
clap = { version = "^4.5.60", features = ["string", "env"] }
|
|
log = "^0.4.17"
|
|
env_logger = "^0.11.7"
|
|
rusqlite = { version = "0.37", features = ["bundled"] }
|
|
chrono = { version = "^0.4.38", features = ["serde"] }
|
|
actix-rt = "2"
|
|
tempfile = "3"
|
|
pretty_assertions = "1"
|
|
temp-env = "0.3"
|
|
tokio = { version = "1.50", features = ["rt", "macros"] }
|
|
tokio-postgres = { version = "0.7.13", features = ["with-uuid-1"] }
|
|
bb8 = "0.9.0"
|
|
bb8-postgres = { version = "0.9.0", features = ["with-uuid-1"] }
|
|
openssl = { version = "0.10.73", default-features = false, features = ["vendored"] }
|
|
native-tls = { version = "0.2.14", default-features = false, features = ["vendored"] }
|
|
postgres-native-tls = "0.5.1"
|