-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
40 lines (38 loc) · 1.12 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
[workspace]
members = [
"catalytic",
"catalytic_table_to_struct",
"catalytic_table_to_struct/example",
"catalytic_macro",
"catalytic_query_parser",
]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.2.0" # When bumping this version, cargo publish in this order: table_to_struct -> query_parser -> macro -> catalytic
authors = ["Jasper Visser <[email protected]>"]
repository = "https://github.com/Jasperav/catalytic"
readme = "./README.md"
keywords = ["database", "scylla", "cql", "cassandra"]
categories = ["database"]
license = "MIT"
[workspace.dependencies]
scylla = "0.14.0" # This crate is specifically build for this version
once_cell = "1.20"
heck = "0.5"
tokio = { version = "1.40", features = ["time", "rt-multi-thread", "io-util"] }
thiserror = "1.0"
futures-util = "0.3"
syn = { version = "2.0", features = ["full", "extra-traits"] }
quote = "1.0"
proc-macro2 = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
proc_macro2_helper = "0.2"
uuid = "1.11"
regex = "1.11"
tracing = "0.1"
tracing-subscriber = "0.3"
trybuild = "1.0"
dotenvy = "0.15"
serial_test = "3.1"