-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (24 loc) · 788 Bytes
/
Cargo.toml
File metadata and controls
25 lines (24 loc) · 788 Bytes
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
[package]
name = "sqlgrep"
version = "0.2.0"
description = "Grep SQL databases for fun and profit."
readme = "doc/CRATE.md"
edition = "2021"
license = "Apache-2.0"
authors = ["Eir Nym <eirnym@gmail.com>"]
repository = "https://github.com/eirtools/sqlgrep"
[dependencies]
sqlx = { version = "=0.8.6", features = [
"runtime-tokio-native-tls",
"sqlite",
"chrono",
] }
tokio = { version = "1.52.1", features = ["macros", "rt-multi-thread"] }
sqlparser = { version = "=0.60.0" }
chrono = { version = "=0.4.44", features = ["alloc"] }
log = { version = "0.4.29" }
futures = { version = "=0.3.32", features = ["async-await"] }
clap = { version = "4.6.1", features = ["derive", "wrap_help"] }
indoc = { version = "2.0.7" }
stderrlog = { version = "=0.6.0" }
regex = { version = "1.12.3" }