chore(deps): bump the deps group across 1 directory with 12 updates#110
Closed
dependabot[bot] wants to merge 72 commits intomainfrom
Closed
chore(deps): bump the deps group across 1 directory with 12 updates#110dependabot[bot] wants to merge 72 commits intomainfrom
dependabot[bot] wants to merge 72 commits intomainfrom
Conversation
…Ticket Rust enum variant ServerKind::Meta -> ServerKind::Canopy, and the on-disk/serialized string changes from "meta" to "canopy". MetaTicket is renamed to CanopyTicket throughout. Migration updates the seeded nil server row from kind='meta', name='Meta Server' to kind='canopy', name='Canopy'.
server_grouped_ids takes no arguments; tests now post {} as the body
since with input = Json the macro deserialises an empty object.
New TypeScript SPA at private-web/, dev-only for now (not built into the container image). Targets React 19 and MUI v9. Vite proxies /api/private_server to the running Leptos backend so the frontend can call existing server functions during the migration. Includes a single Hello route that calls commons.is_current_user_admin to verify the proxy round-trip end to end.
watch-private-api binds the Leptos server fns to 127.0.0.1:8081 (Node's vite-proxy can't resolve [::1] literals so we go IPv4 in dev). watch-private-web runs Vite on :8090 with the API proxy. Round-trip verified: a POST to localhost:8090/api/private_server/fns/... forwards to the backend and returns 200.
First migrated page: status dashboard with release summary, server cards grouped by rank, and version/status legends. Includes an auto- reload tick (60s, plus visibilitychange recovery and a custom canopy-reload-status document event for manual reload). Adds reusable VersionSquare/VersionIndicator/StatusDot components, Legends, the useReloadInterval hook, and the wire-shape types for the statuses fns. App.tsx now has a top nav with Status as the only entry; / redirects to /status.
Two related changes folded together because the text edits overlap: 1. Switch private-web from pnpm to npm. The earlier scaffold and dev- workflow commits assumed pnpm because I (incorrectly) inferred it from a sibling project. Replace pnpm-lock.yaml with package-lock.json, update the justfile recipe, AGENTS.md, and the plan. 2. Add Playwright e2e harness per the plan's new Phase 3.5: tests live in private-web/e2e/, run via 'npm run test:e2e', start Vite via webServer, and assume the operator already has the API running. Includes two smoke tests for the status page (chrome + backend round-trip). Made AppBar 'Canopy' title an h1 so the smoke test can query it by heading role.
Migrates the admins management page. Shows the current list, supports adding via the form (with empty/invalid validation) and deleting per row. Errors render inline; successful adds show a transient snackbar (replacing the Leptos toast pattern, scoped to the page for now). Adds /admins to the top nav. E2e: four playwright tests covering listing seeded admins, the delete button, the add flow, and the empty-email error path. Tests use unique emails per run to avoid collisions in the shared dev DB.
Migrates /versions: collapsible accordion grouped by minor release, each minor expands to show its patch versions linking to the (not yet migrated) detail page. Drafts and yanked versions are tinted in the row background and show a status chip. Adds a VersionStatusChip component (replaces the Leptos VersionStatusBadge), wire-shape types for the versions module, and two smoke e2e tests.
Migrates /versions/:version as a read-only view: header with version number and status chip, info panel (created, last updated, chrome support), artifacts table, markdown-rendered changelog, and the related lower patches in the same minor. Adds a small Markdown component (react-markdown + remark-gfm) for the changelog rendering, replacing pulldown-cmark + dangerouslySet- InnerHTML. Admin actions (status change, changelog edit, artifact CRUD) follow in subsequent commits.
Adds the admin-gated controls: status select with a Change button (with the same can't-revert-to-draft-unless-latest-in-minor rule as the Leptos version), and an Edit button on the Changelog section that swaps the rendered markdown for a textarea. Both refetch the version detail on success rather than reloading the whole page (cleaner than the Leptos behaviour, and quicker). Adds a useApiAction hook for write-only fns alongside the existing useApi for reads.
Adds the admin-only artifact create/edit/delete flow with the same lock-unlock pattern as Leptos: Unlock toggles per-row Edit/Delete buttons; Create reveals an inline form. Edit swaps the row contents for input fields. Delete shows a Really-delete confirm step. E2e: a smoke test for the detail page that tolerates either render of the version data or an error alert (real DB state often won't have version rows for a hard-coded test version).
Migrates /servers and /servers/facilities (Central / Facility tabs). Each tab paginates 10 per page; uses MUI Pagination instead of the Leptos PaginatedList component. Adds a ServerShorty React component (replaces the Leptos one). Layout is a vertical stack of bordered rows showing name, rank chip, kind chip, and host. Three smoke e2e tests covering tab presence, switch, and round-trip.
Migrates /servers/:id read-only: header with rank/kind chips, name + status dots for self and children, optional Edit button (admin), URL + Device cards, info panel (last-seen, platform, timezone, version indicator, postgres/nodejs/chrome versions, mobile listing flag, parent link, location), child servers list, and the version/status legends. Extracts ServerKindChip and ServerRankChip from the existing ServerShorty so the detail page can reuse them. Bumps tsconfig.app target/lib to ES2023 for Array.findLast support. Smoke e2e test that the page mounts on any id and surfaces either the heading or an alert. Edit, import, and geo pages follow as separate commits.
Migrates /servers/:id/edit. Form fields: name, host, kind (central/ facility select), rank (production/clone/demo/test/dev/unranked select), device id, parent server, location (cloud/on-premise/unknown select), lat/lon, and the 'Available in Tamanu Mobile app' checkbox for centrals. Parent server uses MUI Autocomplete with debounced search via servers.search_parent. Pasting a UUID directly is also possible by typing it. The cloud-region preset (lat/lon-from-region) is deferred until the geo page is migrated; for now lat/lon are plain inputs. On save, navigate to the detail page. Smoke e2e covers mount.
Migrates /devices (Search), /devices/untrusted, and /devices/trusted. Search exposes a debounced search box hitting devices.search and an admin-only Import Ticket dialog that mirrors the Leptos modal, including client-side base64 decoding of the Canopy ticket to extract kind/rank hints (which lock the corresponding selects). Adds DeviceShorty React component and the parseCanopyTicket helper. Three smoke e2e tests covering tabs, search input, and untrusted-tab round-trip. Detail and history pages follow next.
…ontend job build.rs already runs npm install + npm run build inside cargo build, so the runners need npm available — they do, ubuntu-24.04 ships it. Drop the parallel build-frontend job; drop the LEPTOS env vars from the workflow; tighten build.rs to treat SKIP_FRONTEND_BUILD= (empty) as 'do build', so the build-servers-release recipe's override works. Dockerfile.native now copies static/ from the build context (built in the workflow with just _copy-bulma) instead of a 'frontend' artefact. The private-web SPA is embedded in the private-server binary, so we no longer ship target/site/.
- devices.get_device_name_by_id: was for the Leptos breadcrumb, React derives the name client-side from get_device_by_id. - servers.list_all/list_centrals/list_facilities: convenience wrappers for list_some that the React side never calls directly. - versions.get_artifacts_by_version_id: showed every configured artifact including ones a public client wouldn't see; the detail page now uses versions.get_version_artifacts (the deduplicated public-API view) so the admin sees the same as the public. Also restores commons.public_url and commons.server_versions_url to the React AppBar — the right-side 'Public' / 'Server Versions' external links got dropped during the migration and now render again, gated on the corresponding env var being set on the backend. Updates the artifacts test to assert deduplication on the new endpoint.
…t captions >= becomes ≥, <= becomes ≤, != becomes ≠. So 'Applies to: >=2.44.2' now reads 'Applies to: ≥2.44.2'.
The Arcs were a Leptos-era ergonomic for sharing values across signals on the SSR side. Axum just serialises whatever's in Json(...), so the wire shape is identical with or without them — the Arc only added a clone gate in handler code that we no longer need. Touches DeviceInfo, ServerDetailData, and the list_some/list_trusted/ list_untrusted/search return types. JSON serialisation is unchanged (serde transparently serialises Arc<T> as T), so no client change.
…snippet Both endpoints called BestoolSnippet::create with the same body — only the supersedes field differed. Single endpoint takes an optional supersedes uuid; absent for a brand-new snippet, set to the prior id when editing (which records the new snippet as superseding the old). Always returns the saved BestoolSnippetDetail. The create flow on the React side still just refreshes the list; the edit flow uses the returned id to navigate to the new version's detail page.
Devices was the outlier — it had `{ limit?, offset? }` (both optional,
limit listed first). The rest already used `{ offset, limit? }` with
offset required and limit optional. Switching devices to match.
The React side already always sends both, so no client-side change is
needed. limit defaults stay per-endpoint (10 for device lists, 100 for
connection history).
Introduces a small Page<T> { items, total } wrapper at crate::fns::Page
(and a matching Page<T> in private-web/src/types.ts). Five list endpoints
now embed their own count, removing the separate count fns:
- devices.list_untrusted (drops count_untrusted)
- devices.list_trusted (drops count_trusted)
- bestool.list_snippets (drops count_snippets)
- servers.list_some (drops count_some)
- sql.get_query_history (drops get_query_history_count)
Each was a guaranteed second round-trip from the React side anyway —
both calls fired in parallel from the same component on the same render
— so this is one fewer request per list page. The React useApi calls
become a single fetch with .data.items / .data.total instead of
juggling two states.
- watch-private-build: cargo build --bin private-server, watching crates/ - watch-private-api: runs target/debug/private-server directly, watching the binary path so it restarts on a fresh build instead of going through cargo run (which doesn't propagate watchexec's signals to its grandchild — left zombie servers holding the port) Both recipes pass -I so watchexec doesn't apply its default ignore filters.
The ring becomes a single stroked circle (r=40.55, stroke-width=8.9 gives the same outer-45/inner-36.1 it had before). The cross becomes two overlapping rectangles. Three elements, no path arithmetic, easy to tweak the next time.
The public-server's tera templates were the only consumer of Bulma and the Leptos-era /static/private/main.css. The private side has moved to React+MUI and no longer needs either. Replace both with a single hand-rolled stylesheet covering only the primitives the templates use.
The Bulma submodule, _copy-bulma justfile recipe, static/bulma/ and static/private/ directories, and the unreferenced static/bestool.css are no longer needed: the public-server's templates now ship with a hand-rolled public.css, and the private-server has its React bundle embedded in the binary.
cargo-leptos is no longer pulled in by 'just install-deps' (and hasn't been since the React migration); LEPTOS_OUTPUT_NAME, SERVER_FN_MOD_PATH and DISABLE_SERVER_FN_HASH are no longer consumed by anything in CI; and playwright.config.ts described the API server in stale terms.
The Playwright suite no longer assumes 'just watch-private-api' is running. A worker-scoped fixture spawns target/debug/private-server on a dynamic port against a freshly-migrated canopy_e2e_<random> database, starts Vite on its own dynamic port with VITE_PROXY_TARGET pointed at the API, waits for both, and tears the lot down (incl. dropping the database) when the worker finishes. This means each Playwright worker gets a fresh, isolated stack — no port collisions with the operator's running dev servers, and no shared state between workers. Override CANOPY_E2E_ADMIN_DATABASE_URL (default postgres://localhost/postgres) if your local Postgres uses different credentials. Set CANOPY_E2E_VERBOSE=1 to stream backend/frontend logs through the test runner.
Builds target/debug/{private-server,migrate}, runs npm ci in private-web,
caches the Playwright browser bundle keyed on the lockfile, and runs
npm run test:e2e against the same canopy/canopy Postgres role the rust
test job uses. Uploads the playwright-report on failure.
Bumps the deps group with 12 updates in the / directory: | Package | From | To | | --- | --- | --- | | [axum](https://github.com/tokio-rs/axum) | `0.8.8` | `0.8.9` | | [axum-test](https://github.com/JosephLenton/axum-test) | `18.7.0` | `20.0.0` | | [clap](https://github.com/clap-rs/clap) | `4.6.0` | `4.6.1` | | [diesel](https://github.com/diesel-rs/diesel) | `2.3.7` | `2.3.9` | | [diesel-async](https://github.com/weiznich/diesel_async) | `0.7.4` | `0.9.0` | | [jiff](https://github.com/BurntSushi/jiff) | `0.2.23` | `0.2.24` | | [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) | `0.13.1` | `0.13.3` | | [tokio](https://github.com/tokio-rs/tokio) | `1.50.0` | `1.52.1` | | [tachys](https://github.com/leptos-rs/leptos) | `0.2.14` | `0.2.15` | | [diesel_migrations](https://github.com/diesel-rs/diesel) | `2.3.1` | `2.3.2` | | [uuid](https://github.com/uuid-rs/uuid) | `1.22.0` | `1.23.1` | | [tokio-postgres](https://github.com/rust-postgres/rust-postgres) | `0.7.16` | `0.7.17` | Updates `axum` from 0.8.8 to 0.8.9 - [Release notes](https://github.com/tokio-rs/axum/releases) - [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md) - [Commits](tokio-rs/axum@axum-v0.8.8...axum-v0.8.9) Updates `axum-test` from 18.7.0 to 20.0.0 - [Release notes](https://github.com/JosephLenton/axum-test/releases) - [Commits](https://github.com/JosephLenton/axum-test/commits) Updates `clap` from 4.6.0 to 4.6.1 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](clap-rs/clap@clap_complete-v4.6.0...clap_complete-v4.6.1) Updates `diesel` from 2.3.7 to 2.3.9 - [Release notes](https://github.com/diesel-rs/diesel/releases) - [Changelog](https://github.com/diesel-rs/diesel/blob/main/CHANGELOG.md) - [Commits](diesel-rs/diesel@v2.3.7...v2.3.9) Updates `diesel-async` from 0.7.4 to 0.9.0 - [Release notes](https://github.com/weiznich/diesel_async/releases) - [Changelog](https://github.com/diesel-rs/diesel_async/blob/main/CHANGELOG.md) - [Commits](diesel-rs/diesel_async@v0.7.4...v0.9.0) Updates `jiff` from 0.2.23 to 0.2.24 - [Release notes](https://github.com/BurntSushi/jiff/releases) - [Changelog](https://github.com/BurntSushi/jiff/blob/master/CHANGELOG.md) - [Commits](BurntSushi/jiff@jiff-static-0.2.23...jiff-static-0.2.24) Updates `pulldown-cmark` from 0.13.1 to 0.13.3 - [Release notes](https://github.com/raphlinus/pulldown-cmark/releases) - [Commits](pulldown-cmark/pulldown-cmark@v0.13.1...v0.13.3) Updates `tokio` from 1.50.0 to 1.52.1 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.50.0...tokio-1.52.1) Updates `tachys` from 0.2.14 to 0.2.15 - [Release notes](https://github.com/leptos-rs/leptos/releases) - [Commits](https://github.com/leptos-rs/leptos/commits) Updates `diesel_migrations` from 2.3.1 to 2.3.2 - [Release notes](https://github.com/diesel-rs/diesel/releases) - [Changelog](https://github.com/diesel-rs/diesel/blob/main/CHANGELOG.md) - [Commits](https://github.com/diesel-rs/diesel/commits/v2.3.2) Updates `uuid` from 1.22.0 to 1.23.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](uuid-rs/uuid@v1.22.0...v1.23.1) Updates `tokio-postgres` from 0.7.16 to 0.7.17 - [Release notes](https://github.com/rust-postgres/rust-postgres/releases) - [Commits](rust-postgres/rust-postgres@tokio-postgres-v0.7.16...tokio-postgres-v0.7.17) --- updated-dependencies: - dependency-name: axum dependency-version: 0.8.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps - dependency-name: axum-test dependency-version: 20.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: deps - dependency-name: clap dependency-version: 4.6.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps - dependency-name: diesel dependency-version: 2.3.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps - dependency-name: diesel-async dependency-version: 0.9.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: jiff dependency-version: 0.2.24 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps - dependency-name: pulldown-cmark dependency-version: 0.13.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps - dependency-name: tokio dependency-version: 1.52.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: tachys dependency-version: 0.2.15 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps - dependency-name: diesel_migrations dependency-version: 2.3.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps - dependency-name: uuid dependency-version: 1.23.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: tokio-postgres dependency-version: 0.7.17 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps ... Signed-off-by: dependabot[bot] <support@github.com>
Contributor
Author
|
This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests. To ignore these dependencies, configure ignore rules in dependabot.yml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps the deps group with 12 updates in the / directory:
0.8.80.8.918.7.020.0.04.6.04.6.12.3.72.3.90.7.40.9.00.2.230.2.240.13.10.13.31.50.01.52.10.2.140.2.152.3.12.3.21.22.01.23.10.7.160.7.17Updates
axumfrom 0.8.8 to 0.8.9Release notes
Sourced from axum's releases.
Commits
c59208crevert axum-core changelog changes99068f5Revert "FixIntoResponsefor tuples overriding error response codes (#3603)"23d7098Revert "axum-core 0.5.6"e8a39adaxum-macros 0.5.16e9a249axum-extra 0.12.60ec9041axum 0.8.9c3fcebbaxum-core 0.5.6a8790fcupdate release notes26ba7bbdocs: consolidate state management docs in crate root (#3683)9fc59efUpdate to tokio-tungstenite 0.29 (#3689)Updates
axum-testfrom 18.7.0 to 20.0.0Release notes
Sourced from axum-test's releases.
Commits
Updates
clapfrom 4.6.0 to 4.6.1Release notes
Sourced from clap's releases.
Changelog
Sourced from clap's changelog.
Commits
1420275chore: Released2c817ddocs: Update changelogf88c94eMerge pull request #6341 from epage/sepacbb822fix(complete): Reduce risk of conflict with actual subcommandsa49fadbrefactor(complete): Pull out subcommand separatorddc008bMerge pull request #6332 from epage/update497dc50chore: Update compatible dependenciesdca2326Merge pull request #6331 from clap-rs/renovate/j178-prek-action-2.x54bdaa3chore(deps): Update j178/prek-action action to v2f0d30d9chore: ReleaseUpdates
dieselfrom 2.3.7 to 2.3.9Changelog
Sourced from diesel's changelog.
Commits
2e7eb35Also bump derives versionb3a16a3Merge pull request #5046 from apastrana6/ap/fix-derive-as-changeset9f0a6c1Prepare a 2.3.9 releaseadcc896Enable some clippy lints to prevent having dbg in a release again66760dfRemove MySQL time serializer debug output58820dcMerge pull request #5036 from weiznich/prepare_2.3.8895b5baPrepare a 2.3.8 releaseea008d3Fix several UB instances64003c6Merge pull request #5034 from ayarotsky/fix-reject-aggregate-select-with-non-...49b936eMerge pull request #5012 from ayarotsky/fix-aggregate-expressions-and-order-byUpdates
diesel-asyncfrom 0.7.4 to 0.9.0Release notes
Sourced from diesel-async's releases.
Changelog
Sourced from diesel-async's changelog.
Commits
18f2c86Merge pull request #285 from diesel-rs/fix/padding_accessacc90e9Prepare a 0.9 releaseba3ed66Merge pull request #284 from diesel-rs/async_closures4e2fc54Use real async closures for transactions237ac09Prepare 0.8.067e3e3fMerge pull request #282 from dav-wolff/fix-sync-connection-wrapper-panic03caa1eReplace timeout based tests with more robust channel usage7df84d8Merge pull request #283 from dav-wolff/remove-unsafe-pin-projectionb426870Use pin_project_lite instead of manually pin-projecting7dacba2Remove pin-project dependencyUpdates
jifffrom 0.2.23 to 0.2.24Changelog
Sourced from jiff's changelog.
Commits
2cc55b20.2.24c6542f1changelog: 0.2.24ec3c2ecapi: addTimeZone::memory_usageandZoned::memory_usagebc752b6docs: improve comment inSpan::checked_addexamplef6c8a55readme: update 1.0 timeline97314c1docs: fix typobad71d8docs: typoUpdates
pulldown-cmarkfrom 0.13.1 to 0.13.3Release notes
Sourced from pulldown-cmark's releases.
Commits
b0e6f65chore: bump pulldown-cmark version in Cargo.locked2ee59chore: bump pulldown-cmark version676afd2fix: wrong wikilink end-offsetbad7926chore: bump pulldown-cmark in Cargo.lockf67922dfix: bump tar to 0.4.45 for security purposesUpdates
tokiofrom 1.50.0 to 1.52.1Release notes
Sourced from tokio's releases.
... (truncated)
Commits
905c146chore: prepare to release v1.52.1 (#8059)56aaa43rt: revert #7757 to fix regression inspawn_blocking(#8057)57ff47aci: updatetrybuildto expect output from rustc 1.95.0 (#8058)812de3eci: bump taiki-e/cache-cargo-install-action from 1 to 3 (#8053)ba82e73ci: use Dependabot to keep github actions up to date (#8052)2e85f9dci: replace cirrus-ci with freebsd-vm (#8041)a7e1cd8ci: update GitHub Actions workflows to use latest tool versions (#8047)5f7be0achore: perpare 1.52.0 (#8045)36d12d2taskdump: allow impl FnMut() in taskdumps instead of just fn() (#8040)f943312fs: support io-uring inAsyncReadforFile(#7907)Updates
tachysfrom 0.2.14 to 0.2.15Commits
Updates
diesel_migrationsfrom 2.3.1 to 2.3.2Release notes
Sourced from diesel_migrations's releases.
Changelog
Sourced from diesel_migrations's changelog.
Commits
Updates
uuidfrom 1.22.0 to 1.23.1Release notes
Sourced from uuid's releases.
Commits
ca0c85fMerge pull request #879 from uuid-rs/cargo/v1.23.1b4db015prepare for 1.23.1 release771069dMerge pull request #878 from aznashwan/fix-from-gregorian-deprecation-note80994a2fix: Timestamp::from_gregorian deprecation note90c5be8Merge pull request #877 from guybedford/remove-wasm-bindgen-msrv8b8c4f4Remove deprecated feature from wasm-bindgen dependency00ab922Merge pull request #876 from uuid-rs/cargo/v1.23.0726ba45prepare for 1.23.0 release996dadeMerge pull request #875 from uuid-rs/fix/context-orderinge140479simplify a use stmtUpdates
tokio-postgresfrom 0.7.16 to 0.7.17Release notes
Sourced from tokio-postgres's releases.
Commits
35a85bdRelease tokio-postgres v0.7.1764674baRelease postgres-types v0.2.1340b760dRelease postgres-derive v0.4.86c92298Release postgres-protocol v0.6.11e088d7dstyle(clippy): fixclippy::useless_conversion19897e8build(deps): upgrade semver compatible Rust dependencies2584926build(deps): upgrade RustCrypto dependencies10a7724chore: add bit-vec v0.9 support2853157fix: cargo fmt --allc8f8993feat: add rustfmt.toml for opiniated formattingDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions