Files
flix/crates/db/Cargo.toml
T

40 lines
955 B
TOML

[package]
name = "flix-db"
version = "0.0.16"
edition.workspace = true
rust-version.workspace = true
description = "Types for storing persistent data about media"
repository = "https://github.com/QuantumShade/flix"
license-file.workspace = true
categories = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
chrono = { workspace = true }
flix-model = { workspace = true }
flix-tmdb = { workspace = true, features = ["sea-orm"], optional = true }
sea-orm = { workspace = true, features = [
"entity-registry",
"schema-sync",
"with-chrono",
] }
sea-orm-migration = { workspace = true }
seamantic = { workspace = true, features = ["sqlite"] }
[dev-dependencies]
sea-orm-migration = { workspace = true, features = ["runtime-tokio-rustls"] }
tokio = { version = "^1", default-features = false, features = [
"macros",
"rt",
] }
[features]
default = []
tmdb = ["dep:flix-tmdb"]
[lints]
workspace = true