-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
42 lines (36 loc) · 889 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "rusqlite_migration_tests"
edition = "2018"
readme = "README.md"
publish = false
authors.workspace = true
categories.workspace = true
description.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[dependencies]
tokio = { version = "1.43", features = ["macros"] }
tokio-rusqlite = { version = "0.6.0" }
log = "0.4"
[dependencies.rusqlite_migration]
path = "../rusqlite_migration"
features = ["alpha-async-tokio-rusqlite", "from-directory"]
[dependencies.rusqlite]
version = "0.32.1"
features = ["extra_check"]
[dev-dependencies]
tokio-test = "0.4.4"
simple-logging = "2.0.2"
env_logger = "0.11"
anyhow = "1"
lazy_static = "1.5.0"
mktemp = "0.5"
include_dir = "0.7.4"
[[test]]
name = "integration_tests"
path = "tests/lib.rs"
harness = true