-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
113 lines (100 loc) · 2.15 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[package]
authors = ["Maciej Dziardziel <[email protected]>"]
description = "Better database CLI tools. Export data and manage connections easier and faster."
edition = "2021"
homepage = "https://github.com/Fiedzia/dbfish"
license = "MIT"
name = "dbfish"
readme = "README.md"
repository = "https://github.com/Fiedzia/dbfish"
version = "0.1.1"
[dependencies]
arrow = { version = "53.2.0", optional = true }
chrono = "0.4"
clap = { version = "4.5.20", features = ["derive", "string", "unicode"] }
default-editor = "0.1.0"
dirs = "5"
humantime = "2.1"
icu_locid = { version = "1.5.0", optional = true }
id_tree = "1.7.0"
indicatif = "0.17"
is-terminal = "0.4.13"
lazy_static = "1.3.0"
parquet = { version = "53.2.0", optional = true }
prettytable-rs = "0.10.0"
regex = "1.3"
serde = "1.0.89"
serde_derive = "1.0.89"
termcolor = "1.0.4"
toml = "0.8"
unicode-segmentation = "1.2.1"
urlencoding = "2.1"
[dependencies.askama_escape]
optional = true
version = "0.10"
[dependencies.csv]
optional = true
version = "1.1"
[dependencies.fallible-iterator]
optional = true
version = "0.3"
[dependencies.json]
optional = true
version = "0.12"
[dependencies.json-color]
optional = true
version = "0.7.1"
[dependencies.mysql]
optional = true
version = "25"
[dependencies.postgres]
optional = true
version = "0.19"
[dependencies.spreadsheet-ods]
optional = true
version = "0.22.5"
[dependencies.rust_xlsxwriter]
optional = true
version = "0.79.0"
features = ["chrono"]
[dependencies.sqlite]
optional = true
version = "0.36"
[dependencies.sqlite3-src]
optional = true
version = "0.6"
[features]
default = [
"use_csv",
"use_html",
"use_json",
"use_mysql",
"use_postgres",
"use_ods",
"use_xlsx",
"use_sqlite",
"use_text",
]
use_csv = ["csv"]
use_html = ["askama_escape"]
use_json = [
"json",
"json-color",
]
use_mysql = ["mysql"]
use_postgres = [
"postgres",
"fallible-iterator",
]
use_ods = ["spreadsheet-ods", "icu_locid"]
use_xlsx = ["rust_xlsxwriter"]
use_sqlite = [
"sqlite",
"sqlite3-src",
"sqlite3-src/bundled",
]
use_text = []
use_parquet = ["arrow", "parquet"]
icu_locid = ["dep:icu_locid"]
parquet = ["dep:parquet"]
arrow = ["dep:arrow"]