aboutsummaryrefslogtreecommitdiff
path: root/crates/whirl_db/Cargo.toml
blob: 5a39d1a9fcc3ca7d9fd06629a87f45945e09099b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "whirl_db"
version = "0.1.0"
authors = ["Fuwn <[email protected]>"]
edition = "2018"
description = "Provides abstractions to interact with the database layer"
documentation = "https://whirlsplash.org/docs/"
readme = "../../README.rst"
homepage = "https://whirlsplash.org"
repository = "https://github.com/Whirlsplash/whirl"
license = "GPL-3.0-only"
keywords = ["rust", "worldserver", "whirl", "whirlsplash"]
publish = false

[dependencies]
# Database
libsqlite3-sys = { version = "0.9.1", features = ["bundled"] }
diesel = { version = "1.4.8", features = ["sqlite"] }

# Environment
dotenv = "0.15.0"