diff --git a/Cargo.lock b/Cargo.lock index 74af2850..81efe6a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -608,7 +608,7 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "xandikos" -version = "0.2.8" +version = "0.2.10" dependencies = [ "clap", "pyo3", diff --git a/Cargo.toml b/Cargo.toml index f5a559dc..10251dd9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "xandikos" version = "0.2.10" -authors = [ "Jelmer Vernooij "] +authors = [ "Jelmer Vernooij ",] edition = "2021" license = "GPL-3.0+" description = "Lightweight CalDAV/CardDAV server" @@ -9,6 +9,12 @@ repository = "https://github.com/jelmer/xandikos.git" homepage = "https://github.com/jelmer/xandikos" [dependencies] -pyo3 = { version = "0.18", features=["auto-initialize"]} clap = "<=4.2" -tokio = { version = "1", features = ["full"] } + +[dependencies.pyo3] +version = "0.18" +features = [ "auto-initialize",] + +[dependencies.tokio] +version = "1" +features = [ "full",] diff --git a/NEWS b/NEWS index 53c795fa..06c7f293 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -0.2.10 UNRELEASED +0.2.10 2023-09-04 * Add support for systemd socket activation. (schnusch, #136, #155)