-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 1.02 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "tower-sessions-libsql-store"
version = "0.3.0"
edition = "2021"
authors = ["Mike Worthley <[email protected]>"]
license = "MIT"
homepage = "https://github.com/daybowbow-dev/tower-sessions-libsql-store"
keywords = ["axum", "sessions", "cookie", "tower", "libsql"]
categories = ["asynchronous", "network-programming", "web-programming"]
repository = "https://github.com/daybowbow-dev/tower-sessions-libsql-store"
documentation = "https://docs.rs/tower-sessions-libsql-store"
description = "A small library for using tower-sessions with libsql"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.77"
libsql = "0.6.0"
rmp-serde = "1.1.2"
thiserror = "1.0.57"
time = "0.3.34"
tower-sessions-core = { version = "0.13.0", features = ["deletion-task"] }
[dev-dependencies]
axum = "0.7.4"
serde = "1.0.196"
serde_json = "1.0.113"
tokio = { version = "1.36.0", features = ["full"] }
tokio-test = "0.4.3"
tower-sessions = "0.13.0"