orphanage 0.0.2

Random collection of stuff that is still searching for a home.
Documentation
[package]
name = "orphanage"
version = "0.0.2"
edition = "2021"
license = "0BSD"
keywords = [ "sqlite", "fs", "path" ]
repository = "https://repos.qrnch.tech/pub/orphanage"
description = "Random collection of stuff that is still searching for a home."
rust-version = "1.64"
exclude = [
  ".fossil-settings",
  ".efiles",
  ".fslckout",
  "www",
  "rustfmt.toml"
]

[features]
tokio = ["dep:tokio", "dep:async-trait", "dep:killswitch"]
rusqlite = ["dep:rusqlite", "dep:sha2"]

[dependencies]
async-trait = { version = "0.1.77", optional = true }
killswitch = { version = "0.4.2", optional = true }
rand = { version = "0.8.5" }
rusqlite = { version = "0.30.0", optional = true, features = ["functions"] }
sha2 = { version = "0.10.7", optional = true }
shellexpand = { version = "3.1.0" }
tokio = { version = "1.36.0", optional = true, features = [
  "macros","net", "time"
] }

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]