Persist links to a database

This commit is contained in:
Marc Plano-Lesay 2025-04-30 21:45:08 +10:00
parent 17fb0c1856
commit b157985bf3
Signed by: kernald
GPG key ID: 66A41B08CC62A6CF
10 changed files with 451 additions and 44 deletions

View file

@ -12,8 +12,6 @@ clap = { version = "4.5.32", features = ["derive"] }
roux = "2.2.14"
figment = { version = "0.10", features = ["toml", "json", "env"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.5"
tokio = { version = "1.44.2", features = ["rt", "rt-multi-thread", "macros"] }
regex = "1.10.3"
figment_file_provider_adapter = "0.1.1"
@ -22,3 +20,6 @@ log = "0.4.27"
color-eyre = "0.6.3"
chrono = { version = "0.4", features = ["serde"] }
multimap = "0.10.0"
diesel = { version = "2.2.10", features = ["sqlite", "chrono"] }
diesel_migrations = "2.2.0"
tempfile = "3.19.1"