2024-06-26 22:05:17 +02:00
|
|
|
[workspace]
|
|
|
|
members = ["crates/*"]
|
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
[workspace.package]
|
2024-07-20 15:37:40 +02:00
|
|
|
authors = ["Awiteb <a@4rs.nl>", "OxideTalis Contributors"]
|
2024-06-26 22:05:17 +02:00
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://git.4rs.nl/oxidetalis/oxidetalis"
|
|
|
|
version = "0.1.0"
|
|
|
|
rust-version = "1.76.0"
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
|
|
|
# Local crates
|
|
|
|
oxidetalis_core = { path = "crates/oxidetalis_core" }
|
|
|
|
oxidetalis_config = { path = "crates/oxidetalis_config" }
|
|
|
|
oxidetalis_migrations = { path = "crates/oxidetalis_migrations" }
|
|
|
|
oxidetalis_entities = { path = "crates/oxidetalis_entities" }
|
2024-07-04 15:42:09 +02:00
|
|
|
# Shared dependencies
|
2024-06-26 22:05:17 +02:00
|
|
|
base58 = "0.2.0"
|
|
|
|
serde = "1.0.203"
|
|
|
|
thiserror = "1.0.61"
|
|
|
|
log = "0.4.21"
|
|
|
|
logcall = "0.1.9"
|
|
|
|
chrono = "0.4.38"
|
|
|
|
sea-orm = { version = "0.12.15", features = ["with-chrono", "macros"] }
|
2024-07-01 10:30:57 +02:00
|
|
|
salvo_core = { version = "0.68.3", default-features = false, features = ["rustls"] }
|
|
|
|
salvo-oapi = { version = "0.68.3", default-features = false, features = ["rapidoc","redoc","scalar","swagger-ui"] }
|
2024-06-26 22:05:17 +02:00
|
|
|
|
|
|
|
[profile.release]
|
2024-07-07 15:34:47 +02:00
|
|
|
strip = true
|
|
|
|
panic = "abort"
|
|
|
|
codegen-units = 1
|
|
|
|
lto = true
|
|
|
|
|