13 lines
425 B
TOML
13 lines
425 B
TOML
|
[package]
|
||
|
name = "using-sqlx"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Eric Kidd <git@randomhacks.net>"]
|
||
|
edition = "2018"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
openssl-probe = "0.1.2"
|
||
|
sqlx = { version = "0.4.0-beta.1", default-features = false, features = ["runtime-tokio", "macros", "offline", "postgres"] }
|
||
|
tokio = { version = "0.2", features = ["macros"] }
|