mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-14 01:12:24 +00:00
Update dependencies and make version constraints more lenient
This commit is contained in:
@@ -4,9 +4,9 @@ version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
actix-web = "4.4.0"
|
||||
anyhow = { version = "1.0.75", features = ["backtrace"] }
|
||||
actix-web = "4.4"
|
||||
anyhow = { version = "1.0", features = ["backtrace"] }
|
||||
rustical_store = { path = "../store/" }
|
||||
serde = "1.0.188"
|
||||
serde_json = "1.0.105"
|
||||
tokio = { version = "1.32.0", features = ["sync"] }
|
||||
serde = "1.0"
|
||||
serde_json = "1.0"
|
||||
tokio = { version = "1.32", features = ["sync"] }
|
||||
|
||||
@@ -6,9 +6,9 @@ edition = "2021"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
actix-web = "4.4.0"
|
||||
actix-web-httpauth = "0.8.0"
|
||||
derive_more = "0.99.17"
|
||||
futures-util = "0.3.28"
|
||||
password-auth = "1.0.0"
|
||||
serde = { version = "1.0.188", features = ["derive"] }
|
||||
actix-web = "4.4"
|
||||
actix-web-httpauth = "0.8"
|
||||
derive_more = "0.99"
|
||||
futures-util = "0.3"
|
||||
password-auth = "1.0"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
|
||||
@@ -4,26 +4,26 @@ version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
actix-web = "4.4.0"
|
||||
actix-web-httpauth = "0.8.0"
|
||||
anyhow = { version = "1.0.75", features = ["backtrace"] }
|
||||
base64 = "0.21.3"
|
||||
derive_more = "0.99.17"
|
||||
futures-util = "0.3.28"
|
||||
quick-xml = { version = "0.30.0", features = [
|
||||
actix-web = "4.4"
|
||||
actix-web-httpauth = "0.8"
|
||||
anyhow = { version = "1.0", features = ["backtrace"] }
|
||||
base64 = "0.21"
|
||||
derive_more = "0.99"
|
||||
futures-util = "0.3"
|
||||
quick-xml = { version = "0.30", features = [
|
||||
"serde",
|
||||
"serde-types",
|
||||
"serialize",
|
||||
] }
|
||||
roxmltree = "0.18.0"
|
||||
roxmltree = "0.19"
|
||||
rustical_store = { path = "../store/" }
|
||||
rustical_dav = { path = "../dav/" }
|
||||
rustical_auth = { path = "../auth/" }
|
||||
serde = { version = "1.0.188", features = ["serde_derive", "derive"] }
|
||||
serde_json = "1.0.105"
|
||||
tokio = { version = "1.32.0", features = ["sync", "full"] }
|
||||
async-trait = "0.1.73"
|
||||
thiserror = "1.0.48"
|
||||
serde = { version = "1.0", features = ["serde_derive", "derive"] }
|
||||
serde_json = "1.0"
|
||||
tokio = { version = "1.35", features = ["sync", "full"] }
|
||||
async-trait = "0.1"
|
||||
thiserror = "1.0"
|
||||
ical = { git = "https://github.com/Peltoche/ical-rs.git", features = [
|
||||
"generator",
|
||||
] }
|
||||
|
||||
@@ -4,10 +4,10 @@ version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
actix-web = "4.4.0"
|
||||
anyhow = "1.0.75"
|
||||
async-trait = "0.1.73"
|
||||
derive_more = "0.99.17"
|
||||
futures-util = "0.3.28"
|
||||
quick-xml = "0.30.0"
|
||||
actix-web = "4.4"
|
||||
anyhow = "1.0"
|
||||
async-trait = "0.1"
|
||||
derive_more = "0.99"
|
||||
futures-util = "0.3"
|
||||
quick-xml = "0.30"
|
||||
rustical_auth = { path = "../auth/" }
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user