44 lines
1.5 KiB
TOML
44 lines
1.5 KiB
TOML
[workspace]
|
|
members = ["crates/*", "examples/*"]
|
|
resolver = "2"
|
|
|
|
[profile.dev.package.sqlx-macros]
|
|
opt-level = 3
|
|
|
|
[workspace.dependencies]
|
|
crunch = { path = "crates/crunch" }
|
|
crunch-traits = { path = "crates/crunch-traits" }
|
|
crunch-envelope = { path = "crates/crunch-envelope" }
|
|
crunch-in-memory = { path = "crates/crunch-in-memory" }
|
|
crunch-nats = { path = "crates/crunch-nats" }
|
|
crunch-file = {path = "crates/crunch-file"}
|
|
crunch-codegen = {path = "crates/crunch-codegen"}
|
|
crunch-postgres = {path = "crates/crunch-postgres"}
|
|
|
|
anyhow = { version = "1.0.79" }
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-stream = {version = "0.1.14"}
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
tracing-subscriber = "0.3.18"
|
|
thiserror = {version = "1.0.56"}
|
|
async-trait = "0.1.77"
|
|
uuid = { version = "1.7.0", features = ["v4", "serde"]}
|
|
futures = "0.3.28"
|
|
nats = "0.24.1"
|
|
clap = {version = "4.4.18", features = ["derive"]}
|
|
toml_edit = {version = "0.21.1",features = ["serde"]}
|
|
serde = {version = "1.0.196", features = ["derive"]}
|
|
serde_json = {version = "1.0.113"}
|
|
prost = {version = "0.12"}
|
|
prost-types = {version = "0.12"}
|
|
prost-build = "0.12"
|
|
bytes = {version = "1.5"}
|
|
tempfile = {version = "3.10.0"}
|
|
genco = {version = "0.17.8"}
|
|
walkdir = {version = "2.4.0"}
|
|
regex = {version = "1.10.3"}
|
|
inquire = {version = "0.6.2"}
|
|
sqlx = {version = "0.7.3", default-features = false, features = ["migrate", "macros", "postgres", "runtime-tokio", "tls-rustls", "chrono", "json", "uuid" ]}
|
|
chrono = {version = "0.4.33", features = ["serde"]}
|
|
|
|
pretty_assertions = "1.4.0" |