forked from Jasperav/Catalytic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (35 loc) · 946 Bytes
/
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
[workspace]
members = [
"catalytic",
"catalytic_table_to_struct",
"catalytic_macro",
"catalytic_query_parser",
]
[workspace.package]
edition = "2021"
version = "0.1.14"
authors = ["Jasper Visser <jasperav@hotmail.com>"]
repository = "https://github.com/Jasperav/catalytic"
readme = "../README.md"
keywords = ["database", "scylla", "cql", "cassandra"]
categories = ["database"]
license = "MIT"
[workspace.dependencies]
scylla = "0.8.2"
once_cell = "1.18.0"
heck = "0.4.1"
tokio = { version = "1.28.2", features = ["time", "rt-multi-thread", "io-util"] }
thiserror = "1.0.40"
futures-util = "0.3.28"
syn = { version = "2.0.18", features = ["full", "extra-traits"] }
quote = "1.0.28"
proc-macro2 = "1.0.60"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.96"
proc_macro2_helper = "0.2.9"
uuid = "1.3.3"
regex = "1.8.4"
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
trybuild = "1.0.80"
dotenv = "0.15.0"