mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-13 21:42:34 +00:00
Update dependencies
This commit is contained in:
575
Cargo.lock
generated
575
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -14,7 +14,7 @@ rustical_caldav = { path = "./crates/caldav/" }
|
|||||||
rustical_carddav = { path = "./crates/carddav/" }
|
rustical_carddav = { path = "./crates/carddav/" }
|
||||||
rustical_frontend = { path = "./crates/frontend/" }
|
rustical_frontend = { path = "./crates/frontend/" }
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
tokio = { version = "1.39", features = [
|
tokio = { version = "1.40", features = [
|
||||||
"net",
|
"net",
|
||||||
"tracing",
|
"tracing",
|
||||||
"macros",
|
"macros",
|
||||||
@@ -23,7 +23,7 @@ tokio = { version = "1.39", features = [
|
|||||||
] }
|
] }
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
env_logger = "0.11"
|
env_logger = "0.11"
|
||||||
actix-web = "4.8"
|
actix-web = "4.9"
|
||||||
anyhow = { version = "1.0", features = ["backtrace"] }
|
anyhow = { version = "1.0", features = ["backtrace"] }
|
||||||
toml = "0.8"
|
toml = "0.8"
|
||||||
clap = { version = "4.5", features = ["derive", "env"] }
|
clap = { version = "4.5", features = ["derive", "env"] }
|
||||||
|
|||||||
@@ -3,12 +3,11 @@ name = "rustical_auth"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-web = "4.8"
|
actix-web = "4.9"
|
||||||
actix-web-httpauth = "0.8"
|
actix-web-httpauth = "0.8"
|
||||||
derive_more = "0.99"
|
derive_more = "1.0"
|
||||||
futures-util = "0.3"
|
futures-util = "0.3"
|
||||||
password-auth = "1.0"
|
password-auth = "1.0"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
|
thiserror = "1.0"
|
||||||
|
|||||||
@@ -1,13 +1,14 @@
|
|||||||
use actix_web::{http::StatusCode, HttpResponse};
|
use actix_web::{http::StatusCode, HttpResponse};
|
||||||
use derive_more::{Display, Error};
|
use derive_more::Display;
|
||||||
|
use thiserror::Error;
|
||||||
|
|
||||||
#[derive(Debug, Display, Error, Clone)]
|
#[derive(Debug, Display, Error, Clone)]
|
||||||
pub enum Error {
|
pub enum Error {
|
||||||
#[display(fmt = "Internal server error")]
|
#[display("Internal server error")]
|
||||||
InternalError,
|
InternalError,
|
||||||
#[display(fmt = "Not found")]
|
#[display("Not found")]
|
||||||
NotFound,
|
NotFound,
|
||||||
#[display(fmt = "Bad request")]
|
#[display("Bad request")]
|
||||||
BadRequest,
|
BadRequest,
|
||||||
Unauthorized,
|
Unauthorized,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,11 +4,10 @@ version = "0.1.0"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-web = "4.8"
|
actix-web = "4.9"
|
||||||
actix-web-httpauth = "0.8"
|
actix-web-httpauth = "0.8"
|
||||||
anyhow = { version = "1.0", features = ["backtrace"] }
|
anyhow = { version = "1.0", features = ["backtrace"] }
|
||||||
base64 = "0.22"
|
base64 = "0.22"
|
||||||
derive_more = "0.99"
|
|
||||||
futures-util = "0.3"
|
futures-util = "0.3"
|
||||||
quick-xml = { version = "0.36", features = [
|
quick-xml = { version = "0.36", features = [
|
||||||
"serde",
|
"serde",
|
||||||
@@ -21,7 +20,7 @@ rustical_dav = { path = "../dav/" }
|
|||||||
rustical_auth = { path = "../auth/" }
|
rustical_auth = { path = "../auth/" }
|
||||||
serde = { version = "1.0", features = ["serde_derive", "derive"] }
|
serde = { version = "1.0", features = ["serde_derive", "derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
tokio = { version = "1.39", features = ["sync", "full"] }
|
tokio = { version = "1.40", features = ["sync", "full"] }
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
strum = { version = "0.26", features = ["strum_macros", "derive"] }
|
strum = { version = "0.26", features = ["strum_macros", "derive"] }
|
||||||
|
|||||||
@@ -4,11 +4,10 @@ version = "0.1.0"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-web = "4.8"
|
actix-web = "4.9"
|
||||||
actix-web-httpauth = "0.8"
|
actix-web-httpauth = "0.8"
|
||||||
anyhow = { version = "1.0", features = ["backtrace"] }
|
anyhow = { version = "1.0", features = ["backtrace"] }
|
||||||
base64 = "0.22"
|
base64 = "0.22"
|
||||||
derive_more = "0.99"
|
|
||||||
futures-util = "0.3"
|
futures-util = "0.3"
|
||||||
quick-xml = { version = "0.36", features = [
|
quick-xml = { version = "0.36", features = [
|
||||||
"serde",
|
"serde",
|
||||||
@@ -21,7 +20,7 @@ rustical_dav = { path = "../dav/" }
|
|||||||
rustical_auth = { path = "../auth/" }
|
rustical_auth = { path = "../auth/" }
|
||||||
serde = { version = "1.0", features = ["serde_derive", "derive"] }
|
serde = { version = "1.0", features = ["serde_derive", "derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
tokio = { version = "1.39", features = ["sync", "full"] }
|
tokio = { version = "1.40", features = ["sync", "full"] }
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
strum = { version = "0.26", features = ["strum_macros", "derive"] }
|
strum = { version = "0.26", features = ["strum_macros", "derive"] }
|
||||||
|
|||||||
@@ -4,10 +4,10 @@ version = "0.1.0"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-web = "4.8"
|
actix-web = "4.9"
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
derive_more = "0.99"
|
derive_more = "1.0"
|
||||||
futures-util = "0.3"
|
futures-util = "0.3"
|
||||||
quick-xml = { version = "0.36", features = [
|
quick-xml = { version = "0.36", features = [
|
||||||
"serde",
|
"serde",
|
||||||
|
|||||||
@@ -4,8 +4,13 @@ version = "0.1.0"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-web = "4.8"
|
actix-web = "4.9"
|
||||||
askama = { version = "0.12", features = ["serde", "with-actix-web"] }
|
askama = { version = "0.12", features = ["serde", "with-actix-web"] }
|
||||||
askama_actix = "0.14"
|
askama_actix = "0.14"
|
||||||
tokio = { version = "1.39", features = ["sync", "full"] }
|
tokio = { version = "1.40", features = ["sync", "full"] }
|
||||||
|
rustical_auth = { path = "../auth/" }
|
||||||
rustical_store = { path = "../store/" }
|
rustical_store = { path = "../store/" }
|
||||||
|
anyhow = "1.0"
|
||||||
|
thiserror = "1.0"
|
||||||
|
actix-session = { version = "0.10", features = ["cookie-session"] }
|
||||||
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
||||||
|
|||||||
@@ -20,12 +20,12 @@ sqlx = { version = "0.8", features = [
|
|||||||
"runtime-tokio",
|
"runtime-tokio",
|
||||||
"migrate",
|
"migrate",
|
||||||
] }
|
] }
|
||||||
tokio = { version = "1.39", features = ["sync", "full"] }
|
tokio = { version = "1.40", features = ["sync", "full"] }
|
||||||
toml = "0.8"
|
toml = "0.8"
|
||||||
ical = { version = "0.11", features = ["generator", "serde"] }
|
ical = { version = "0.11", features = ["generator", "serde"] }
|
||||||
chrono = { version = "0.4", features = ["serde"] }
|
chrono = { version = "0.4", features = ["serde"] }
|
||||||
regex = "1.10"
|
regex = "1.10"
|
||||||
lazy_static = "1.5"
|
lazy_static = "1.5"
|
||||||
rstest = "0.21"
|
rstest = "0.22"
|
||||||
rstest_reuse = "0.7.0"
|
rstest_reuse = "0.7"
|
||||||
thiserror = "1.0.61"
|
thiserror = "1.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user