Update to rust 1.81 #253

Merged
savanni merged 1 commits from update-rust into main 2024-10-14 22:06:00 +00:00
3 changed files with 753 additions and 691 deletions

1440
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -19,6 +19,8 @@ clap = { version = "4", features = [ "derive" ] }
serde = { version = "1.0", features = ["derive"] }
sha2 = { version = "0.10" }
sqlx = { version = "0.7", features = [ "runtime-tokio", "sqlite" ] }
# sqlformat introduced a mistaken breaking change in 0.2.7
sqlformat = { version = "=0.2.6" }
thiserror = { version = "1" }
tokio = { version = "1", features = [ "full" ] }
uuid = { version = "0.4", features = [ "serde", "v4" ] }

View File

@ -1,3 +1,3 @@
[toolchain]
channel = "1.77.0"
channel = "1.81.0"
targets = [ "wasm32-unknown-unknown", "thumbv6m-none-eabi" ]