-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (30 loc) · 994 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
[package]
name = "dumpsync"
version = "0.1.13"
edition = "2021"
license = "MIT"
authors = ["kremilly"]
keywords = ["mysql", "dump", "restore", "backup", "database"]
description = "DumpSync is a lightweight tool designed for efficiently dumping and restoring MySQL databases. Whether you need to create backups, restore databases, or transfer data between servers."
repository = "https://github.com/kremilly/DumpSync"
documentation = "https://docs.dumpsync.com/"
homepage = "https://dumpsync.com"
[dependencies]
chrono = "0.4.38"
clap = { version = "4.5.21", features = ["cargo", "derive"] }
clap-cargo = "0.14.1"
colored = "2.1.0"
ctrlc = "3.4.5"
dotenvy = "0.15.7"
figlet-rs = "0.1.5"
flate2 = "1.0.35"
mysql = "25.0.1"
rand = "0.8.5"
regex = "1.11.1"
reqwest = { version = "0.12.9", features = ["blocking"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
serde_yaml = "0.9.34"
tokio = { version = "1.41.1", features = ["full"] }
[profile.release]
lto = true