Skip to content

Commit

Permalink
chore: resolve a circular dependency, update other dependencies, etc. (
Browse files Browse the repository at this point in the history
…#448)

* chore: resolve a circular dependency, update other dependencies, split some stuff up

* chore: add playground lockfile, deprecated function fixed

* chore: satisfy clippy complaints

* chore(core): more clippy complaints

* chore: pls clippy

* chore: clippy is satisfied!

* chore: removed unused code

* chore: clippy pls

* fix: increased retries, so mariadb won't fail

* fix(workflows): mariadb environment variables changed

* fix(workflows): mariadb deprecated some mysql stuff

* fix(tests): mariadb deprecated mysql stuff, so stuff needs to be done

* chore: remove some redundant imports

* chore: remove redundant imports

* chore: cargo fmt

* chore: removed the redundant deps I didn't notice

* chore: gah, forgot to fmt
  • Loading branch information
iamwacko committed Feb 25, 2024
1 parent 9fe7085 commit b0aa180
Show file tree
Hide file tree
Showing 44 changed files with 5,141 additions and 1,769 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/synth-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@ jobs:
mariadb:
image: mariadb
env:
MYSQL_ROOT_PASSWORD: mysecretpassword
MYSQL_DATABASE: test_db
MARIADB_ROOT_PASSWORD: mysecretpassword
MARIADB_DATABASE: test_db
ports:
- 3307:3306
options: >-
--name mariadb-synth-harness
--health-cmd="mysqladmin ping"
--health-cmd="mariadb-admin ping"
--health-interval=10s
--health-timeout=5s
--health-retries=3
--health-retries=5
strategy:
matrix:
include:
Expand Down

0 comments on commit b0aa180

Please sign in to comment.