-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
21 lines (18 loc) · 827 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "sqlx_mock"
version = "0.1.2"
authors = ["Tosei <[email protected]>"]
edition = "2021"
license = "MIT"
documentation = "https://docs.rs/sqlx-mock"
repository = "https://github.com/wangxinyang/sqlx-mock"
homepage = "https://github.com/wangxinyang/sqlx-mock"
description = "A simple tool to test sqlx with postgres. It will automatically create a database and drop it after the test."
readme = "README.md"
categories = ["development-tools"]
keywords = ["sqlx", "postgres", "database", "test"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] }
tokio = { version = "1.21.2", features = ["macros", "rt", "rt-multi-thread"] }
uuid = { version = "1.2.1", features = ["v4"] }