Skip to content

Commit

Permalink
Revert "build(deps): update sqlx requirement from 0.7.4 to 0.8.0"
Browse files Browse the repository at this point in the history
This reverts commit fb9e12a.
  • Loading branch information
jgraef committed Jul 23, 2024
1 parent fb9e12a commit 7beb4e7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion skunk-api-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ uuid = { version = "1.9.1", features = ["serde"] }
chrono = { version = "0.4.38", features = ["serde"] }
indexmap = { version = "2.2.6", features = ["serde"] }
serde_json = { version = "1.0.120", features = ["raw_value"] }
sqlx = { version = "0.8.0", default-features = false, features = ["chrono", "json", "macros", "uuid"], optional = true }
sqlx = { version = "0.7.4", default-features = false, features = ["chrono", "json", "macros", "uuid"], optional = true }
4 changes: 2 additions & 2 deletions skunk-flow-store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ semver = { version = "1.0.23", features = ["serde"] }
semver-macro = "0.1.0"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
sqlx = { version = "0.8.0", features = ["chrono", "json", "macros", "migrate", "runtime-tokio", "sqlite", "uuid"] }
sqlx = { version = "0.7.4", features = ["chrono", "json", "macros", "migrate", "runtime-tokio", "sqlite", "uuid"] }
thiserror = "1.0.61"
uuid = "1.9.1"

[build-dependencies]
sqlx = { version = "0.8.0", features = ["migrate", "runtime-tokio", "sqlite"] }
sqlx = { version = "0.7.4", features = ["migrate", "runtime-tokio", "sqlite"] }
tokio = { version = "1.37.0", features = ["macros", "rt"] }
2 changes: 1 addition & 1 deletion skunk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ rustls-pemfile = { version = "2.1.2", optional = true }
serde = { version = "1.0.202", features = ["derive"] }
serde_yml = "0.0.11"
smallvec = "1.13.2"
sqlx = { version = "0.8.0", features = ["runtime-tokio", "sqlite"], optional = true }
sqlx = { version = "0.7.4", features = ["runtime-tokio", "sqlite"], optional = true }
strum = { version = "0.26.2", features = ["derive"] }
tempfile = "3.10.1"
thiserror = "1.0.60"
Expand Down

0 comments on commit 7beb4e7

Please sign in to comment.