feat: add sqlx

This commit is contained in:
2021-03-21 17:45:27 +08:00
parent dd05e11b30
commit b4f8d33e64
3 changed files with 1536 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
[package]
name = "sqlx"
version = "0.1.0"
authors = ["Hatter Jiang <jht5945@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sqlx = { version = "0.4.1", features = [ "sqlite", "runtime-async-std-rustls" ] }
async-std = { version = "1.6", features = [ "attributes" ] }