You've already forked flix
43 lines
958 B
TOML
43 lines
958 B
TOML
[package]
|
|
name = "flix-db"
|
|
version = "0.0.19"
|
|
license-file.workspace = true
|
|
|
|
description = "Types for storing persistent data about media"
|
|
repository = "https://github.com/QuantumShade/flix"
|
|
categories = []
|
|
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
chrono = { workspace = true }
|
|
flix-model = { workspace = true }
|
|
sea-orm = { workspace = true, features = [
|
|
"entity-registry",
|
|
"schema-sync",
|
|
"with-chrono",
|
|
] }
|
|
sea-orm-migration = { workspace = true }
|
|
seamantic = { workspace = true, features = ["sqlite"] }
|
|
|
|
flix-tmdb = { workspace = true, features = ["sea-orm"], optional = true }
|
|
|
|
[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
|