diff --git a/Cargo.toml b/Cargo.toml index 1f59e9a6e..5b96c94d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,7 +47,7 @@ lemmy_routes = { version = "=0.12.0-rc.1", path = "./crates/routes" } diesel = "1.4.7" diesel_migrations = "1.4.0" chrono = { version = "0.4.19", features = ["serde"] } -serde = { version = "1.0.129", features = ["derive"] } +serde = { version = "1.0.127", features = ["derive"] } actix = "0.12.0" actix-web = { version = "4.0.0-beta.8", default-features = false, features = ["rustls"] } log = "0.4.14" @@ -56,7 +56,7 @@ strum = "0.21.0" url = { version = "2.2.2", features = ["serde"] } openssl = "0.10.36" http-signature-normalization-actix = { version = "0.5.0-beta.7", default-features = false, features = ["sha-2"] } -tokio = { version = "1.10.1", features = ["sync"] } +tokio = { version = "1.10.0", features = ["sync"] } anyhow = "1.0.43" reqwest = { version = "0.11.4", features = ["json"] } activitystreams = "0.7.0-alpha.11" diff --git a/crates/api/Cargo.toml b/crates/api/Cargo.toml index f2b85c37a..991baf57d 100644 --- a/crates/api/Cargo.toml +++ b/crates/api/Cargo.toml @@ -24,7 +24,7 @@ diesel = "1.4.7" bcrypt = "0.10.1" chrono = { version = "0.4.19", features = ["serde"] } serde_json = { version = "1.0.66", features = ["preserve_order"] } -serde = { version = "1.0.129", features = ["derive"] } +serde = { version = "1.0.127", features = ["derive"] } actix = "0.12.0" actix-web = { version = "4.0.0-beta.8", default-features = false } actix-rt = { version = "2.2.0", default-features = false } @@ -39,7 +39,7 @@ openssl = "0.10.36" http = "0.2.4" http-signature-normalization-actix = { version = "0.5.0-beta.7", default-features = false, features = ["sha-2"] } base64 = "0.13.0" -tokio = "1.10.1" +tokio = "1.10.0" futures = "0.3.16" itertools = "0.10.1" uuid = { version = "0.8.2", features = ["serde", "v4"] } diff --git a/crates/api_common/Cargo.toml b/crates/api_common/Cargo.toml index 14c079940..439900c0f 100644 --- a/crates/api_common/Cargo.toml +++ b/crates/api_common/Cargo.toml @@ -17,7 +17,7 @@ lemmy_db_views_moderator = { version = "=0.12.0-rc.1", path = "../db_views_moder lemmy_db_views_actor = { version = "=0.12.0-rc.1", path = "../db_views_actor" } lemmy_db_schema = { version = "=0.12.0-rc.1", path = "../db_schema" } lemmy_utils = { version = "=0.12.0-rc.1", path = "../utils" } -serde = { version = "1.0.129", features = ["derive"] } +serde = { version = "1.0.127", features = ["derive"] } log = "0.4.14" diesel = "1.4.7" actix-web = { version = "4.0.0-beta.8", default-features = false, features = ["cookies"] } diff --git a/crates/api_crud/Cargo.toml b/crates/api_crud/Cargo.toml index 3b9b6351c..dcdbe48ed 100644 --- a/crates/api_crud/Cargo.toml +++ b/crates/api_crud/Cargo.toml @@ -19,7 +19,7 @@ diesel = "1.4.7" bcrypt = "0.10.1" chrono = { version = "0.4.19", features = ["serde"] } serde_json = { version = "1.0.66", features = ["preserve_order"] } -serde = { version = "1.0.129", features = ["derive"] } +serde = { version = "1.0.127", features = ["derive"] } actix = "0.12.0" actix-web = { version = "4.0.0-beta.8", default-features = false } actix-rt = { version = "2.2.0", default-features = false } @@ -34,7 +34,7 @@ openssl = "0.10.36" http = "0.2.4" http-signature-normalization-actix = { version = "0.5.0-beta.7", default-features = false, features = ["sha-2"] } base64 = "0.13.0" -tokio = "1.10.1" +tokio = "1.10.0" futures = "0.3.16" itertools = "0.10.1" uuid = { version = "0.8.2", features = ["serde", "v4"] } diff --git a/crates/apub/Cargo.toml b/crates/apub/Cargo.toml index 556bb935e..a807b8248 100644 --- a/crates/apub/Cargo.toml +++ b/crates/apub/Cargo.toml @@ -24,7 +24,7 @@ activitystreams = "0.7.0-alpha.11" bcrypt = "0.10.1" chrono = { version = "0.4.19", features = ["serde"] } serde_json = { version = "1.0.66", features = ["preserve_order"] } -serde = { version = "1.0.129", features = ["derive"] } +serde = { version = "1.0.127", features = ["derive"] } serde_with = "1.9.4" actix = "0.12.0" actix-web = { version = "4.0.0-beta.8", default-features = false } @@ -41,7 +41,7 @@ http = "0.2.4" http-signature-normalization-actix = { version = "0.5.0-beta.7", default-features = false, features = ["sha-2"] } http-signature-normalization-reqwest = { version = "0.2.0", default-features = false, features = ["sha-2"] } base64 = "0.13.0" -tokio = "1.10.1" +tokio = "1.10.0" futures = "0.3.16" itertools = "0.10.1" uuid = { version = "0.8.2", features = ["serde", "v4"] } diff --git a/crates/apub_lib/Cargo.toml b/crates/apub_lib/Cargo.toml index 44738d2fc..586bfec76 100644 --- a/crates/apub_lib/Cargo.toml +++ b/crates/apub_lib/Cargo.toml @@ -10,10 +10,10 @@ lemmy_utils = { version = "=0.12.0-rc.1", path = "../utils" } lemmy_websocket = { version = "=0.12.0-rc.1", path = "../websocket" } lemmy_apub_lib_derive = { version = "=0.12.0-rc.1", path = "../apub_lib_derive" } activitystreams = "0.7.0-alpha.11" -serde = { version = "1.0.129", features = ["derive"] } +serde = { version = "1.0.127", features = ["derive"] } async-trait = "0.1.51" url = { version = "2.2.2", features = ["serde"] } serde_json = { version = "1.0.66", features = ["preserve_order"] } -anyhow = "1.0.43" +anyhow = "1.0.41" reqwest = { version = "0.11.4", features = ["json"] } log = "0.4.14" diff --git a/crates/apub_lib_derive/Cargo.toml b/crates/apub_lib_derive/Cargo.toml index 3fd9be6fd..7eb68686b 100644 --- a/crates/apub_lib_derive/Cargo.toml +++ b/crates/apub_lib_derive/Cargo.toml @@ -13,5 +13,5 @@ trybuild = { version = "1.0.45", features = ["diff"] } [dependencies] proc-macro2 = "1.0.28" -syn = "1.0.75" +syn = "1.0.74" quote = "1.0.9" diff --git a/crates/db_queries/Cargo.toml b/crates/db_queries/Cargo.toml index 3d4e39929..1735765ff 100644 --- a/crates/db_queries/Cargo.toml +++ b/crates/db_queries/Cargo.toml @@ -16,7 +16,7 @@ lemmy_db_schema = { version = "=0.12.0-rc.1", path = "../db_schema" } diesel = { version = "1.4.7", features = ["postgres","chrono","r2d2","serde_json"] } diesel_migrations = "1.4.0" chrono = { version = "0.4.19", features = ["serde"] } -serde = { version = "1.0.129", features = ["derive"] } +serde = { version = "1.0.127", features = ["derive"] } serde_json = { version = "1.0.66", features = ["preserve_order"] } strum = "0.21.0" strum_macros = "0.21.1" diff --git a/crates/db_schema/Cargo.toml b/crates/db_schema/Cargo.toml index bba2a30f3..674576d30 100644 --- a/crates/db_schema/Cargo.toml +++ b/crates/db_schema/Cargo.toml @@ -11,7 +11,7 @@ doctest = false [dependencies] diesel = { version = "1.4.7", features = ["postgres","chrono","r2d2","serde_json"] } chrono = { version = "0.4.19", features = ["serde"] } -serde = { version = "1.0.129", features = ["derive"] } +serde = { version = "1.0.127", features = ["derive"] } serde_json = { version = "1.0.66", features = ["preserve_order"] } log = "0.4.14" url = { version = "2.2.2", features = ["serde"] } diff --git a/crates/db_views/Cargo.toml b/crates/db_views/Cargo.toml index 31d95ba31..eb0e3995f 100644 --- a/crates/db_views/Cargo.toml +++ b/crates/db_views/Cargo.toml @@ -12,7 +12,7 @@ doctest = false lemmy_db_queries = { version = "=0.12.0-rc.1", path = "../db_queries" } lemmy_db_schema = { version = "=0.12.0-rc.1", path = "../db_schema" } diesel = { version = "1.4.7", features = ["postgres","chrono","r2d2","serde_json"] } -serde = { version = "1.0.129", features = ["derive"] } +serde = { version = "1.0.127", features = ["derive"] } log = "0.4.14" url = "2.2.2" diff --git a/crates/db_views_actor/Cargo.toml b/crates/db_views_actor/Cargo.toml index d5066b9af..b9f88c3e7 100644 --- a/crates/db_views_actor/Cargo.toml +++ b/crates/db_views_actor/Cargo.toml @@ -12,4 +12,4 @@ doctest = false lemmy_db_queries = { version = "=0.12.0-rc.1", path = "../db_queries" } lemmy_db_schema = { version = "=0.12.0-rc.1", path = "../db_schema" } diesel = { version = "1.4.7", features = ["postgres","chrono","r2d2","serde_json"] } -serde = { version = "1.0.129", features = ["derive"] } +serde = { version = "1.0.127", features = ["derive"] } diff --git a/crates/db_views_moderator/Cargo.toml b/crates/db_views_moderator/Cargo.toml index b5b8c0edf..6c515fdd9 100644 --- a/crates/db_views_moderator/Cargo.toml +++ b/crates/db_views_moderator/Cargo.toml @@ -12,4 +12,4 @@ doctest = false lemmy_db_queries = { version = "=0.12.0-rc.1", path = "../db_queries" } lemmy_db_schema = { version = "=0.12.0-rc.1", path = "../db_schema" } diesel = { version = "1.4.7", features = ["postgres","chrono","r2d2","serde_json"] } -serde = { version = "1.0.129", features = ["derive"] } +serde = { version = "1.0.127", features = ["derive"] } diff --git a/crates/routes/Cargo.toml b/crates/routes/Cargo.toml index 31814bbd0..758f52396 100644 --- a/crates/routes/Cargo.toml +++ b/crates/routes/Cargo.toml @@ -26,7 +26,7 @@ log = "0.4.14" anyhow = "1.0.43" chrono = { version = "0.4.19", features = ["serde"] } rss = "1.10.0" -serde = { version = "1.0.129", features = ["derive"] } +serde = { version = "1.0.127", features = ["derive"] } # TODO awc should use default-features = false, because gzip is a heavy dependency. # This must wait for pictrs to have a configurable disabled gzip awc = "3.0.0-beta.7" diff --git a/crates/utils/Cargo.toml b/crates/utils/Cargo.toml index 588bf5930..35c21b8cf 100644 --- a/crates/utils/Cargo.toml +++ b/crates/utils/Cargo.toml @@ -18,7 +18,7 @@ log = "0.4.14" itertools = "0.10.1" rand = "0.8.4" percent-encoding = "2.1.0" -serde = { version = "1.0.129", features = ["derive"] } +serde = { version = "1.0.127", features = ["derive"] } serde_json = { version = "1.0.66", features = ["preserve_order"] } thiserror = "1.0.26" comrak = { version = "0.11.0", default-features = false } @@ -29,7 +29,7 @@ actix-web = { version = "4.0.0-beta.8", default-features = false, features = ["r actix-rt = { version = "2.2.0", default-features = false } anyhow = "1.0.43" reqwest = { version = "0.11.4", features = ["json"] } -tokio = { version = "1.10.1", features = ["sync"] } +tokio = { version = "1.10.0", features = ["sync"] } strum = "0.21.0" strum_macros = "0.21.1" futures = "0.3.16" @@ -38,4 +38,4 @@ http = "0.2.4" jsonwebtoken = "7.2.0" deser-hjson = "1.0.2" smart-default = "0.6.0" -webpage = { version = "1.3.0", default-features = false, features = ["serde"] } +webpage = { version = "1.1", default-features = false, features = ["serde"] } diff --git a/crates/websocket/Cargo.toml b/crates/websocket/Cargo.toml index d3ec05319..c1511b28d 100644 --- a/crates/websocket/Cargo.toml +++ b/crates/websocket/Cargo.toml @@ -20,13 +20,13 @@ lemmy_db_views_actor = { version = "=0.12.0-rc.1", path = "../db_views_actor" } reqwest = { version = "0.11.4", features = ["json"] } log = "0.4.14" rand = "0.8.4" -serde = { version = "1.0.129", features = ["derive"] } +serde = { version = "1.0.127", features = ["derive"] } serde_json = { version = "1.0.66", features = ["preserve_order"] } actix = "0.12.0" anyhow = "1.0.43" diesel = "1.4.7" background-jobs = "0.9.0" -tokio = "1.10.1" +tokio = "1.10.0" strum = "0.21.0" strum_macros = "0.21.1" chrono = { version = "0.4.19", features = ["serde"] }