-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (33 loc) · 947 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
[package]
name = "mongodb-migrator"
version = "0.1.8"
authors = ["Konstantin Matsiushonak <[email protected]"]
edition = "2021"
description = "MongoDB migrations management tool"
readme = "README.md"
repository = "https://github.com/kakoc/mongodb_migrator"
license = "MIT OR Apache-2.0"
categories = ["database"]
keywords = ["mongodb"]
[dependencies]
async-trait = "0.1.68"
chrono = { version = "0.4.26", features = ["serde"] }
mongodb = "2.5.0"
bson = "2.6.1"
anyhow = "1.0.71"
serde = "1.0.163"
serde_derive = "1.0.163"
serde_json = "1.0.96"
log = "0.4.18"
thiserror = "1.0.40"
futures = "0.3.28"
# TODO(kakoc): place under features?
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
axum = "0.6.18"
tokio = { version = "1.28.2", features = ["full"] }
[dev-dependencies]
testcontainers = "0.14.0"
rusty-hook = "0.11.2"
version-sync = "0.9.4"
hyper = { version = "0.14.26", features = ["client"] }