-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathCargo.toml
43 lines (40 loc) · 1.32 KB
/
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
43
[package]
name = "surrealdb-migrations"
version = "2.1.0"
description = "An awesome SurrealDB migration tool, with a user-friendly CLI and a versatile Rust library that enables seamless integration into any project."
authors = ["David Bottiau"]
repository = "https://github.com/Odonno/surrealdb-migrations/"
documentation = "https://docs.rs/surrealdb-migrations/"
readme = "readme.md"
license = "MIT"
keywords = ["surrealdb", "migrations", "cli"]
categories = ["command-line-utilities"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.39"
chrono-human-duration = "0.1.1"
clap = { version = "4.5.23", features = ["derive"] }
cli-table = "=0.4.7"
color-eyre = "0.6.3"
convert_case = "0.6.0"
diffy = "0.4.0"
fs_extra = "1.3.0"
include_dir = "0.7.4"
itertools = "0.14.0"
names = { version = "0.14.0", default-features = false }
regex = "1.11.1"
rust-ini = "0.21.1"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
sqlparser = "0.52.0"
surrealdb = { version = "2.1.4", features = ["protocol-http", "jwks"] }
tokio = { version = "1.42.0", features = ["macros"] }
[dev-dependencies]
assert_cmd = "2.0.16"
assert_fs = "1.1.2"
dir-diff = "0.3.3"
predicates = "3.1.3"
pretty_assertions = "1.4.1"
serial_test = "3.2.0"
tokio-test = "0.4.4"