forked from launchbadge/sqlx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (30 loc) · 915 Bytes
/
Cargo.toml
File metadata and controls
37 lines (30 loc) · 915 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
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "sqlx-example-postgres-preferred-crates"
version.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true
authors.workspace = true
[dependencies]
dotenvy.workspace = true
anyhow = "1"
chrono = "0.4"
serde = { version = "1", features = ["derive"] }
uuid = { version = "1", features = ["serde"] }
[dependencies.tokio]
workspace = true
features = ["rt-multi-thread", "macros"]
[dependencies.sqlx]
# version = "0.9.0"
workspace = true
features = ["runtime-tokio", "postgres", "bigdecimal", "chrono", "derive", "macros", "migrate", "sqlx-toml"]
[dependencies.uses-rust-decimal]
path = "uses-rust-decimal"
package = "sqlx-example-postgres-preferred-crates-uses-rust-decimal"
[dependencies.uses-time]
path = "uses-time"
package = "sqlx-example-postgres-preferred-crates-uses-time"
[lints]
workspace = true