-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
45 lines (43 loc) · 1.38 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
[package]
name = "sqlx-ts"
version = "0.17.0"
edition = "2021"
homepage = "https://github.com/JasonShin/sqlx-ts"
authors = ['Jason Shin <visualbbasic@gmail.com>']
license = "MIT"
description = "A tool for Javascript/Typescript for compile-time safe SQL queries"
readme = "README.md"
keywords = ["cli", "sql", "sqlx", "typescript", "javascript"]
categories = ["command-line-utilities"]
documentation = "https://jasonshin.github.io/sqlx-ts/"
[dependencies]
color-eyre = "0.6.3"
thiserror = "1.0.63"
dotenv = "0.15.0"
swc_common = { version = "0.37.5", features = ["tty-emitter"] }
swc_ecma_ast = "0.118.2"
swc_ecma_parser = "0.149.1"
string_cache = "0.8.7"
walkdir = "2.4.0"
clap = { version = "3.2.25", features = ["derive"] }
serde = { version = "1.0.209", features = ["derive"] }
serde_json = { version = "1.0.127" }
sqlparser = { version = "0.45.0" }
regex = { version = "1.10.6" }
convert_case = "0.6.0"
lazy_static = { version = "1.5.0" }
openssl = { version = "0.10.66", features = ["vendored"] }
colored = "2.1.0"
mysql_async = { version = "0.34.2", features = ["minimal"] }
tokio-postgres = "0.7.11"
tokio = { version = "1.40.0", features = ["rt-multi-thread", "macros", "default"]}
async-recursion = "1.1.1"
async-trait = "0.1.82"
bb8 = "0.8.5"
[dev-dependencies]
assert_cmd = "2.0.16"
predicates = "3.1.2"
tempfile = "3.11.0"
test_utils = { path="test-utils" }
pretty_assertions = "1.4.0"
rand = "0.8.5"