-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
110 lines (105 loc) · 2.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
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
[workspace]
default-members = ["rsql_cli", "rsql_core", "rsql_drivers", "rsql_formatters"]
members = [
"examples/*",
"rsql_cli",
"rsql_core",
"rsql_drivers",
"rsql_formatters"
]
resolver = "2"
[workspace.package]
authors = ["Brian Heineman <brian.heineman@gmail.com>"]
categories = ["database"]
edition = "2021"
keywords = ["database", "mysql", "postgresql", "sql", "sqlite"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/theseus-rs/rsql"
rust-version = "1.84.0"
version = "0.15.3"
[workspace.dependencies]
ansi_colours = "1.2.3"
anyhow = "1.0.95"
arboard = "3.4.1"
async-trait = "0.1.85"
axoupdater = "0.9.0"
base64 = "0.22.1"
bit-vec = "0.6.3"
calamine = "0.26.1"
chrono = "0.4.39"
clap = "4.5.24"
clap-stdin = "0.5.1"
clearscreen = "4.0.1"
colored = "3.0.0"
config = "0.15.4"
criterion = "0.5.1"
csv = "1.3.1"
dark-light = "2.0.0"
dirs = "5.0.1"
dotenvy = "0.15.7"
duckdb = "1.1.1"
file_type = "0.2.2"
form_urlencoded = "1.2.1"
futures-util = "0.3.31"
getrandom = "0.2.15"
indexmap = "2.7.0"
indicatif = "0.17.9"
indoc = "2.0.5"
inquire = "0.7.5"
jwt-simple = { version = "0.12.11", default-features = false }
libsql = "0.6.0"
mockall = "0.13.1"
num-format = "0.4.4"
os_info = "3.9.1"
polars = "0.45.1"
polars-sql = "0.45.1"
postgresql_embedded = "0.17.3"
quick-xml = "0.37.2"
regex = "1.11.1"
reqwest = "0.12.12"
rusqlite = "0.30.0"
rust_decimal = "1.35.0"
rust-i18n = "3.1.2"
rustyline = "15.0.0"
serde = "1.0.216"
serde_json = "1.0.135"
serde_yaml = "0.9.34"
sha2 = "0.10.8"
sqlx = "0.7.4"
sqlparser = "0.52.0"
supports-color = "3.0.2"
sys-locale = "0.3.2"
syntect = "5.2.0"
tabled = "0.17.0"
tempfile = "3.15.0"
termbg = "0.6.2"
test-log = "0.2.16"
testcontainers = "0.23.1"
testcontainers-modules = "0.11.3"
thiserror = "2.0.10"
tiberius = { version = "0.12.3", default-features = false }
tokio = "1.43.0"
tokio-postgres = "0.7.12"
tokio-util = "0.7.12"
tracing = "0.1.41"
tracing-appender = "0.2.3"
tracing-indicatif = "0.3.8"
tracing-subscriber = "0.3.19"
unicode-width = "0.2.0"
url = "2.5.4"
uuid = "1.11.0"
wiremock = "0.6.2"
[profile.release]
codegen-units = 1
lto = true
opt-level = "z"
panic = "abort"
strip = true
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[workspace.metadata.release]
shared-version = true
dependent-version = "upgrade"
tag-name = "v{{version}}"