-
-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathCargo.toml
More file actions
18 lines (16 loc) · 546 Bytes
/
Cargo.toml
File metadata and controls
18 lines (16 loc) · 546 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "sql-client"
version = "0.1.0"
authors = ["kenkoooo <kenkou.n@gmail.com>"]
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
sqlx = { version = "0.7.2", features = ["postgres", "runtime-tokio-rustls"] }
async-trait = "0.1.74"
serde = { version = "1.0", features = ["derive"] }
uuid = { version = "1.5", features = ["serde", "v4"] }
anyhow = "1.0"
tokio = { version = "1.33", features = ["macros"] }
regex = "1.10"
chrono = "0.4.31"