rustler-core/Cargo.toml

43 lines
858 B
TOML

[package]
name = "rustler"
version = "0.0.0-alpha.0"
edition = "2021"
description = "🤠 » single-action data extractor"
authors = ["Lucas Colombo <lucas@lucode.ar>"]
publish = false
[profile.release]
strip = true
lto = true
codegen-units = 16
opt-level = 'z'
panic = "abort"
rpath = false
overflow-checks = false
debug = 0
debug-assertions = false
[[bin]]
name = "rustler"
path = "app/main.rs"
[workspace]
members = [".", "migration", "entities", "grpc"]
[workspace.dependencies]
log = { version = "0.4.21" }
eyre = { version = "0.6.12" }
[dependencies]
# internal
entities = { path = "entities" }
grpc = { path = "grpc" }
# workspace
log = { workspace = true }
eyre = { workspace = true, default-features = false, features = ["auto-install"] }
# external
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
dotenvy = "0.15.7"