[workspace] [package] name = "gabrielkaszewski_rs" version = "0.1.0" edition = "2021" publish = false default-run = "gabrielkaszewski_rs-cli" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [workspace.dependencies] loco-rs = { version = "0.12.0" } [dependencies] loco-rs = { workspace = true } migration = { path = "migration" } serde = { version = "1", features = ["derive"] } serde_json = "1" tokio = { version = "1.33.0", default-features = false } tower = { version = "0.5.1", features = ["util"] } tower-http = { version = "0.6.1", features = ["fs", "trace"] } async-trait = "0.1.74" tracing = "0.1.40" chrono = "0.4" validator = { version = "0.18" } sea-orm = { version = "1.1.0", features = [ "sqlx-sqlite", "sqlx-postgres", "runtime-tokio-rustls", "macros", ] } axum = { version = "0.7.5", features = ["multipart"] } include_dir = "0.7" uuid = { version = "1.6.0", features = ["v4"] } tracing-subscriber = { version = "0.3.17", features = ["env-filter", "json"] } markdown = "1.0.0-alpha.21" # view engine i18n fluent-templates = { version = "0.8.0", features = ["tera"] } unic-langid = "0.9.4" axum-range = "0.4.0" axum-extra = { version = "0.9.4", features = ["multipart", "typed-header", "cookie"] } bytes = "1.8.0" tera = "1.20.0" # /view engine [[bin]] name = "gabrielkaszewski_rs-cli" path = "src/bin/main.rs" required-features = [] [[bin]] name = "tool" path = "src/bin/tool.rs" required-features = [] [dev-dependencies] serial_test = "3.1.1" rstest = "0.21.0" loco-rs = { workspace = true, features = ["testing"] } insta = { version = "1.34.0", features = ["redactions", "yaml", "filters"] }