Update dependencies and make version constraints more lenient

This commit is contained in:
Lennart
2024-01-21 15:31:38 +01:00
parent 403d952e06
commit bc370f9fa9
7 changed files with 79 additions and 129 deletions

View File

@@ -6,11 +6,11 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { version = "1.0.75", features = ["backtrace"] }
async-trait = "0.1.73"
serde = { version = "1.0.188", features = ["derive", "rc"] }
sha2 = "0.10.7"
sqlx = { version = "0.7.1", features = [
anyhow = { version = "1.0", features = ["backtrace"] }
async-trait = "0.1"
serde = { version = "1.0", features = ["derive", "rc"] }
sha2 = "0.10"
sqlx = { version = "0.7", features = [
"sqlx-sqlite",
"sqlx-postgres",
"uuid",
@@ -21,11 +21,11 @@ sqlx = { version = "0.7.1", features = [
"runtime-tokio",
"migrate",
] }
tokio = { version = "1.32.0", features = ["sync", "full"] }
toml = "0.7.6"
ical = { git = "https://github.com/Peltoche/ical-rs.git", rev = "4f7aeb0", features = [
tokio = { version = "1.35", features = ["sync", "full"] }
toml = "0.8"
ical = { git = "https://github.com/Peltoche/ical-rs.git", features = [
"generator",
] }
chrono = "0.4.31"
regex = "1.9.5"
lazy_static = "1.4.0"
chrono = "0.4"
regex = "1.10"
lazy_static = "1.4"