-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (38 loc) · 1.14 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
[package]
name = "dumpsync"
version = "0.1.24"
edition = "2021"
license = "MIT"
authors = ["kremilly"]
categories = ["command-line-utilities", "database"]
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]
aes-gcm = "0.10.3"
chrono = "0.4.39"
clap = { version = "4.5.26", features = ["cargo", "derive"] }
clap-cargo = "0.15.1"
colored = "3.0.0"
crc32fast = "1.4.2"
csv = "1.3.1"
ctrlc = "3.4.5"
dotenvy = "0.15.7"
figlet-rs = "0.1.5"
flate2 = "1.0.35"
md-5 = "0.10.6"
mysql = "25.0.1"
rand = "0.8.5"
regex = "1.11.1"
reqwest = { version = "0.12.12", features = ["blocking"] }
rpassword = "7.3.1"
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
serde_yaml = "0.9.34"
sha1 = "0.10.6"
sha2 = "0.10.8"
tokio = { version = "1.43.0", features = ["full"] }
[profile.release]
lto = true