Skip to content

Commit

Permalink
Update dependencies (#2)
Browse files Browse the repository at this point in the history
* updated: flake.lock and flake.nix

* update: global cargo upgrade + admin package work

* cargo upgrade (incompatible upgrade)

* fixed: types packages

* web package

* update: web now compiles

* update: version update

* update: sqlx migrations

* fixed stiff

* fixed some stuffs

* web: Pin the wasm-bindgen version for nixpkgs

---------

Co-authored-by: Quentin Boyer <[email protected]>
  • Loading branch information
Maix0 and traxys authored Dec 29, 2024
1 parent e076ee2 commit 724258c
Show file tree
Hide file tree
Showing 32 changed files with 2,532 additions and 3,656 deletions.
3,321 changes: 2,161 additions & 1,160 deletions Cargo.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[workspace]
resolver="2"
members = [
"api",
"cli",
Expand Down
12 changes: 6 additions & 6 deletions admin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = { version = "3.2.5", features = ["derive", "env"] }
color-eyre = "0.6.1"
comfy-table = "6.0.0"
tokio = { version = "1.19.2", features = ["macros", "rt"] }
clap = { version = "4.5.23", features = ["derive", "env"] }
color-eyre = "0.6.3"
comfy-table = "7.1.3"
tokio = { version = "1.42.0", features = ["macros", "rt"] }

[dependencies.sqlx]
version = "0.6.0"
features = ["postgres", "migrate", "runtime-tokio-rustls", "macros", "uuid", "offline"]
version = "0.8.2"
features = ["postgres", "migrate", "runtime-tokio-rustls", "macros", "uuid"]
2 changes: 1 addition & 1 deletion admin/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ impl RecoveryAction {
async fn main() -> color_eyre::Result<()> {
color_eyre::install()?;

let args = Args::from_args();
let args = Args::parse();
let ctx = args.context;

args.action.run(Context::new(ctx).await?).await
Expand Down
Loading

0 comments on commit 724258c

Please sign in to comment.