-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
34 lines (32 loc) · 1.08 KB
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
[workspace]
members = [
"vitrail-pg",
"vitrail-pg-core",
"vitrail-pg-macros",
"examples/workspace/example-app",
"examples/workspace/example-db",
]
resolver = "3"
[workspace.package]
version = "0.0.5"
repository = "https://github.com/xJonathanLEI/vitrail"
[workspace.dependencies]
chrono = "0.4.44"
clap = { version = "4.6.0", features = ["derive", "env"] }
example-db = { path = "./examples/workspace/example-db" }
futures-util = "0.3.32"
heck = "0.5.0"
proc-macro2 = "1.0.106"
quote = "1.0.45"
rust_decimal = "1.41.0"
serde = "1.0.228"
serde_json = "1.0.149"
sqlx = { version = "0.8.6", features = ["postgres", "runtime-tokio-rustls", "chrono", "json", "rust_decimal", "uuid"] }
syn = { version = "2.0.117", features = ["parsing", "printing", "proc-macro"] }
tokio = { version = "1.50.0", features = ["macros", "rt-multi-thread"] }
trybuild = "1.0.116"
url = "2.5.8"
uuid = "1.23.0"
vitrail-pg-core = { version = "0.0.5", path = "./vitrail-pg-core" }
vitrail-pg-macros = { version = "0.0.5", path = "./vitrail-pg-macros" }
vitrail-pg = { version = "0.0.5", path = "./vitrail-pg" }