forked from cornucopia-rs/cornucopia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (37 loc) · 1.13 KB
/
Cargo.toml
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
38
39
40
41
42
43
[package]
name = "test_codegen"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Path dependencies
cornucopia_sync = { path = "../crates/client_sync", features = [
"with-serde_json-1",
] }
cornucopia_async = { path = "../crates/client_async", features = [
"with-serde_json-1",
] }
# async
futures = "0.3.25"
# rust-postgres interaction
postgres = { version = "0.19.4", features = [
"with-serde_json-1",
"with-time-0_3",
"with-uuid-1",
"with-eui48-1",
] }
tokio-postgres = { version = "0.7.7", features = [
"with-serde_json-1",
"with-time-0_3",
"with-uuid-1",
"with-eui48-1",
] }
postgres-types = { version = "0.2.4", features = ["derive"] }
# serde
serde = { version = "1.0.152", features = ["derive"] }
# extra types
serde_json = { version = "1.0.91", features = ["raw_value"] }
time = { version = "0.3.17", features = ["parsing", "serde"] }
uuid = { version = "1.2.2", features = ["serde"] }
eui48 = { version = "1.1.0", features = ["serde"] }
rust_decimal = { version = "1.28.0", features = ["db-postgres"] }