-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (20 loc) · 757 Bytes
/
Cargo.toml
File metadata and controls
22 lines (20 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "my-fake-sql"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
msql-srv = { git = "https://github.com/killertux/msql-srv.git", branch = "feature/secure-connection" }
sqlparser = { git = "https://github.com/killertux/sqlparser-rs.git", branch = "feature/add-support-for-double-quoted-srtring" }
postgres-shim = { git = "https://github.com/killertux/posgres-shim.git", branch = "master" }
itertools = "0.10"
serde_yaml = "0.8"
serde = { version = "1.0", features = ["derive"] }
reqwest = {version = "0.11", features = ["blocking", "json"]}
ritelinked = "0.3"
chrono = "0.4"
dirs = "4.0"
anyhow = "1"
thiserror = "1"
dashmap = "5"
bytes = "1"