librmo 0.2.6

A library to manage media files and play them
Documentation
[package]
name = "librmo"
version = "0.2.6"
edition = "2021"
authors = ["Samuel Shiels <samuel.shiels@googlemail.com"]
license = "MIT"
description = "A library to manage media files and play them"
readme = "README.md"
homepage = "https://github.com/samuelshiels/rmo"
repository = "https://github.com/samuelshiels/rmo"
keywords = ["media", "library", "manager", "validator", "music"]
categories = ["command-line-utilities"]

[dependencies.sea-orm-migration]
version = "0.12"
features = [
  "runtime-tokio-native-tls",
  "sqlx-sqlite",
]

[dependencies]
### ORM #
sea-orm = { version = "0.12", features = [
  "macros",
  "runtime-tokio-native-tls",
  "sqlx-sqlite",
] }
sea-query = "0.30"
serde = "1"
serde_json = "1"
async-std = { version = "1", features = [
  "attributes",
  "tokio1",
] }

### Threading #
tokio = { version = "1", features = [
  "full",
] }

### Utils #
config = "0.14"
dirs = "5"
thiserror = "1"
walkdir = "2"
chrono = { version = "0.4", features = [
  "serde",
] }

# Media files
id3 = "1.13"
log = "0.4"
image = { version = "0.25", features = [
  "jpeg",
] }
rodio = "0.17"