forked from jbr/async-sqlx-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (24 loc) · 809 Bytes
/
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
[package]
name = "async-sqlx-session"
version = "0.2.1"
authors = ["Jacob Rothstein <hi@jbr.me>"]
edition = "2018"
description = "sqlx session store for async-session"
readme = "README.md"
repository = "https://github.com/jbr/async-sqlx-session"
documentation = "https://docs.rs/async-sqlx-session"
license = "MIT OR Apache-2.0"
keywords = ["sessions", "tide", "async-session", "sqlx", "sqlite"]
categories = ["web-programming::http-server", "web-programming", "database"]
[package.metadata.docs.rs]
features = ["pg", "sqlite"]
[features]
default = []
sqlite = ["sqlx/sqlite"]
pg = ["sqlx/postgres", "sqlx/json"]
[dependencies]
async-session = "2.0.1"
sqlx = { version = "0.3.5", features = ["chrono"] }
async-std = "1.7.0"
[dev-dependencies]
async-std = { version = "1.7.0", features = ["attributes"] }