Skip to content

Commit 7b3ab40

Browse files
committed
build: add async-session dependency
This is because I have to implement my own `async-session` store for SQLx, since jbr/async-sqlx-session#25 hasn't been merged for ~2 years and I don't want to wait to keep writing this project.
1 parent 0b6055d commit 7b3ab40

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Cargo.lock

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ repository = 'https://www.github.com/Iron-E/winvoice-server'
1414

1515
[dependencies]
1616
argon2 = {optional = true, version = '0.5'}
17+
async-session = {optional = true, version = '3'}
1718
async-trait = {optional = true, version = '0.1'}
1819
axum = {features = ['headers'], optional = true, version = '0.6'}
1920
axum-login = {features = ['sqlx'], optional = true, version = '0.5'}
@@ -76,6 +77,7 @@ pretty_assertions = '1'
7677
[features]
7778
bin = [
7879
'argon2',
80+
'async-session',
7981
'async-trait',
8082
'axum',
8183
'axum-login',

0 commit comments

Comments
 (0)