-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (22 loc) · 825 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
[workplace]
exclude = ["example/*", "benches/*"]
[package]
name = "rs_aio_db"
version = "0.8.2"
edition = "2021"
repository = "https://github.com/milen-denev/rs_aio_db"
license = "Apache-2.0"
keywords = ["database", "sqlite"]
authors = ["Milen Denev"]
description = "All in one (aka Aio) database with async support. Based on sqlite, bevy_reflect and tokio, includes a dead simple API to be used (no SQL needed just pure Rust). Comes with automigration."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rusqlite = { version = "0.32", features = ["bundled"] }
bevy_reflect = "0.15.1"
tokio = {version = "1" , features = ["full"] }
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
bincode = "1"
hex = "0.4"
stopwatch = "0.0.7"
env_logger = "0.11"