Skip to content

Commit a3af065

Browse files
committed
fixes for bad minimal versions
1 parent ea5b808 commit a3af065

File tree

3 files changed

+12
-15
lines changed

3 files changed

+12
-15
lines changed

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
# https://docs.github.com/en/actions/learn-github-actions/contexts#context-availability
105105
strategy:
106106
matrix:
107-
msrv: ["1.56.1"] # 2021 edition requires 1.56
107+
msrv: ["1.78.0"] # For lock file version 4
108108
name: ubuntu / ${{ matrix.msrv }}
109109
steps:
110110
- uses: actions/checkout@v4

optd-persistent/Cargo.lock

Lines changed: 3 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

optd-persistent/Cargo.toml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
authors = ["Sarvesh Tandon", "Connor Tsui"]
66

77
[dependencies]
8-
sea-orm = { version = "1.0.0", features = [
8+
sea-orm = { version = "1.1.1", features = [
99
"sqlx-sqlite",
1010
"runtime-tokio-rustls",
1111
"macros",
@@ -14,5 +14,10 @@ sea-orm = { version = "1.0.0", features = [
1414
] }
1515
sea-orm-migration = "1.0.0"
1616
serde_json = "1.0"
17-
tokio = { version = "1.0.0", features = ["full"] }
18-
trait-variant = "0.1"
17+
tokio = { version = "1.0.1", features = ["macros", "rt-multi-thread"] }
18+
trait-variant = "0.1.2"
19+
20+
# Pin more recent versions for -Zminimal-versions
21+
async-trait = "0.1.43"
22+
async-stream = "0.3.1"
23+
strum = "0.26.1"

0 commit comments

Comments
 (0)