Skip to content

Commit 0a92aeb

Browse files
authored
Rust beta fixes (#514)
* rust beta that breaks stuff * flake up * replace with macros, replace miette * progress * progress * finish * up * Update typos config * format toml * revert back to stable
1 parent 5b814bf commit 0a92aeb

File tree

132 files changed

+2574
-3463
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+2574
-3463
lines changed

Cargo.lock

+205-146
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -117,3 +117,4 @@ install-updater = true
117117

118118
[patch.crates-io]
119119
diesel-async = { git = "https://github.com/weiznich/diesel_async.git", rev = "017ebe2fb7a2709ab5db92148dea5ce812a35e09" }
120+
tokio-postgres-rustls = { git = "https://github.com/jbg/tokio-postgres-rustls.git", rev = "b3b59ac2fa1b5823f2426fef78a0fb74c004ec38" }

_typos.toml

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
[default]
2+
extend-ignore-words-re = ["guid"]
3+
14
[files]
25
extend-exclude = [
36
"crates/kitsune-language/examples/basic.rs",
@@ -10,4 +13,7 @@ extend-exclude = [
1013

1114
"lib/http-signatures/tests/data.rs",
1215
"lib/post-process/tests/input/*",
16+
17+
# Exclude all snapshot files
18+
"*.snap",
1319
]

crates/kitsune-activitypub/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ autometrics = { version = "1.0.1", default-features = false }
1111
base64-simd = "0.8.0"
1212
diesel = "2.1.5"
1313
diesel-async = "0.4.1"
14+
eyre = "0.6.12"
1415
futures-util = "0.3.30"
1516
headers = "0.4.0"
1617
http = "1.1.0"
@@ -32,7 +33,6 @@ kitsune-wasm-mrf = { path = "../kitsune-wasm-mrf" }
3233
mime = "0.3.17"
3334
mime_guess = { version = "2.0.4", default-features = false }
3435
rsa = "0.9.6"
35-
scoped-futures = "0.1.3"
3636
serde = "1.0.197"
3737
sha2 = "0.10.8"
3838
simd-json = "0.13.9"
@@ -52,7 +52,7 @@ kitsune-config = { path = "../kitsune-config" }
5252
kitsune-test = { path = "../kitsune-test" }
5353
kitsune-webfinger = { path = "../kitsune-webfinger" }
5454
pretty_assertions = "1.4.0"
55-
tokio = { version = "1.36.0", features = ["macros"] }
55+
tokio = { version = "1.37.0", features = ["macros"] }
5656
tower = { version = "0.4.13", default-features = false, features = ["util"] }
5757

5858
[lints]

0 commit comments

Comments
 (0)