mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
c9f1407429
* Initial commit to bump diesel to 2.0.0-rc.0 and see what happens * Add chrono feature from diesel * db_schema crate is close to building? * Upgrade diesel-derive-newtype * Mostly modifying references to connections to be mutable ones; also used new way to do migrations as suggested by the migration guide; a lot more compiles now, though I can't figure out this tricky ToSql issue at the moment * Running clippy --fix * Trying to fix drone clippy 1 * Fix clippy * Upgrade clux-musl * Trying to fix drone clippy 2 * Trying to fix drone clippy 3 * Trying to fix drone clippy 5 * Adding diesel table aliases, removing sql view hack. Fixes #2101 Co-authored-by: Steven Chu <stevenc1@gmail.com> Co-authored-by: Nutomic <me@nutomic.com>
26 lines
728 B
TOML
26 lines
728 B
TOML
[package]
|
|
name = "lemmy_db_views"
|
|
version = "0.16.5"
|
|
edition = "2021"
|
|
description = "A link aggregator for the fediverse"
|
|
license = "AGPL-3.0"
|
|
homepage = "https://join-lemmy.org/"
|
|
documentation = "https://join-lemmy.org/docs/en/index.html"
|
|
rust-version = "1.57"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[features]
|
|
full = ["lemmy_db_schema/full", "diesel", "tracing"]
|
|
|
|
[dependencies]
|
|
lemmy_db_schema = { version = "=0.16.5", path = "../db_schema" }
|
|
diesel = { version = "2.0.0", features = ["postgres","chrono","r2d2","serde_json"], optional = true }
|
|
serde = { version = "1.0.145", features = ["derive"] }
|
|
tracing = { version = "0.1.36", optional = true }
|
|
diesel_ltree = "0.3.0"
|
|
typed-builder = "0.10.0"
|
|
|
|
[dev-dependencies]
|
|
serial_test = "0.9.0"
|