diff --git a/.forgejo/workflows/push-main.yml b/.forgejo/workflows/push-main.yml index c073b30..33f6537 100644 --- a/.forgejo/workflows/push-main.yml +++ b/.forgejo/workflows/push-main.yml @@ -19,7 +19,7 @@ jobs: container: image: - git.kemitix.net/kemitix/rust:v3.0.0 + git.kemitix.net/kemitix/rust:v4.0.1 steps: - name: Checkout repository diff --git a/.forgejo/workflows/push-next.yml b/.forgejo/workflows/push-next.yml index 13450c8..34b9cd9 100644 --- a/.forgejo/workflows/push-next.yml +++ b/.forgejo/workflows/push-next.yml @@ -18,7 +18,7 @@ jobs: container: image: - git.kemitix.net/kemitix/rust:v3.0.0 + git.kemitix.net/kemitix/rust:v4.0.1 strategy: matrix: diff --git a/Cargo.toml b/Cargo.toml index 975c142..b463053 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,16 +9,20 @@ repository = "https://git.kemitix.net/kemitix/trello-to-deck" [dependencies] bon = "3.0" -clap = {version = "4.5", features = ["derive"]} +clap = { version = "4.5", features = ["derive"] } color-eyre = "0.6" file-format = { version = "0.26", features = ["reader-txt"] } ignore = "0.4" -kxio = "5.0" +kxio = "5.0" +native-tls = { version = "0.2", features = ["vendored"] } regex = "1.10" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tokio = { version = "1.37", features = ["full"] } +[package.metadata.cargo-machete] +ignored = ["native-tls"] + [dev-dependencies] assert2 = "0.3" mutants = "0.0"