-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 748 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (24 loc) · 748 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
[workspace]
members = [
"crates/sqlx-repository",
"crates/sqlx-repository-macros",
]
resolver = "2"
[workspace.metadata.docs.rs]
# Build documentation for all features
all-features = true
# Use rustdoc-args for docs.rs specific settings
rustdoc-args = ["--cfg", "docsrs"]
[workspace.dependencies]
sqlx = { version = "0.8.6", default-features = false }
tokio = { version = "1.0", default-features = false }
async-trait = "0.1"
serde = { version = "1.0", features = ["derive"] }
thiserror = "2.0"
# Proc macro dependencies (shared between core and macros)
syn = { version = "2.0", default-features = false }
quote = "1.0"
proc-macro2 = "1.0"
# Development/testing (used across multiple crates)
testcontainers = "0.24"
tokio-test = "0.4"