diff options
author | Teddy Wing | 2021-05-29 19:20:46 +0200 |
---|---|---|
committer | Teddy Wing | 2021-05-29 19:20:46 +0200 |
commit | 9c2d269945af68e67d8daf8870be6d5664ab2153 (patch) | |
tree | 342eb952ac43ac7b28d97224160b8bb1ed71e5fd /Cargo.toml | |
parent | c90d237d2d39c1deac5f92344d13160bc16f50b7 (diff) | |
download | reflectub-9c2d269945af68e67d8daf8870be6d5664ab2153.tar.bz2 |
Start setting up database interface
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -7,3 +7,8 @@ edition = "2018" git2 = "0.13.20" reqwest = { version = "0.11.3", features = ["blocking", "json"] } serde = { version = "1.0.126", features = ["derive"] } +tokio = { version = "1.6.1", features = ["macros", "rt"] } + +[dependencies.sqlx] +version = "0.5.5" +features = ["chrono", "macros", "runtime-tokio-rustls", "sqlite"] |