forked from tokio-rs/toasty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (71 loc) · 2.21 KB
/
Cargo.toml
File metadata and controls
78 lines (71 loc) · 2.21 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[workspace]
resolver = "2"
members = [
"crates/toasty",
"crates/toasty-codegen",
"crates/toasty-core",
"crates/toasty-macros",
"crates/toasty-sql",
# Driver implementations
"crates/toasty-driver-dynamodb",
"crates/toasty-driver-mysql",
"crates/toasty-driver-postgresql",
"crates/toasty-driver-sqlite",
# General utilities.
"crates/std-util",
# Examples
"examples/composite-key",
"examples/hello-toasty",
"examples/cratehub",
"examples/user-has-one-profile",
# Tests
"tests",
]
[workspace.dependencies]
# Toasty crates
toasty = { path = "crates/toasty" }
toasty-codegen = { path = "crates/toasty-codegen" }
toasty-core = { path = "crates/toasty-core" }
toasty-macros = { path = "crates/toasty-macros" }
toasty-sql = { path = "crates/toasty-sql" }
std-util = { path = "crates/std-util" }
# Driver implementations
toasty-driver-dynamodb = { path = "crates/toasty-driver-dynamodb" }
toasty-driver-mysql = { path = "crates/toasty-driver-mysql" }
toasty-driver-postgresql = { path = "crates/toasty-driver-postgresql" }
toasty-driver-sqlite = { path = "crates/toasty-driver-sqlite" }
# Other crates
anyhow = "1.0.92"
assert-struct = "0.2.0"
async-recursion = "1.1.1"
async-stream = "0.3.6"
async-trait = "0.1.83"
aws-config = "1"
aws-sdk-dynamodb = { version = "1.3.0", features = ["test-util"] }
by_address = "1.2.1"
cfg-if = "1.0.0"
clap = { version = "4.5.20", features = ["derive"] }
heck = "0.5.0"
indexmap = "2.6.0"
mysql_async = { version = "0.35.1", default-features = false, features = [
"minimal",
"native-tls-tls",
] }
pluralizer = "0.4.0"
postgres = "0.19.10"
postgres-types = "0.2.9"
pretty_assertions = "1.4.1"
proc-macro2 = "1.0.37"
quote = "1.0.18"
rand = "0.8.5"
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
syn = { version = "2.0.86", features = ["full", "extra-traits", "visit-mut"] }
tempfile = "3.8"
tokio = { version = "1.18", features = ["full"] }
tokio-postgres = "0.7.13"
tokio-stream = { version = "0.1.16", default-features = false }
trybuild = { version = "1.0.89", features = ["diff"] }
url = "2.5.4"
uuid = { version = "1.11.0", features = ["v4", "fast-rng"] }