11[package ]
22name = " vrc-log"
3- version = " 0.11.4 "
3+ version = " 0.12.0 "
44authors = [" Shayne Hartford <shaybox@shaybox.com>" ]
55edition = " 2021"
66description = " VRChat Local Avatar ID Logger"
@@ -15,31 +15,33 @@ categories = ["config", "database", "filesystem", "games", "parsing"]
1515
1616[dependencies ]
1717anyhow = " 1"
18+ async-trait = " 0.1"
1819cached = { version = " 0.55" , optional = true }
1920chrono = " 0.4"
2021colored = " 3"
2122crossbeam = " 0.8"
2223crossterm = { version = " 0.29" , optional = true }
2324discord-presence = { version = " 1" , optional = true }
24- indexmap = " 2 "
25+ futures = " 0.3 "
2526lazy-regex = " 3"
2627notify = " 8"
2728parking_lot = " 0.12"
28- reqwest = { version = " 0.12" , features = [" blocking " , " json" ], optional = true }
29+ reqwest = { version = " 0.12" , features = [" json" ], optional = true }
2930serde = { version = " 1" , features = [" derive" ] }
3031serde_json = " 1"
31- sqlite = { version = " 0.37" , features = [" bundled" ], optional = true }
3232strum = { version = " 0.27" , features = [" derive" ] }
3333terminal-link = " 0.1"
3434time = { version = " 0.3" , features = [" macros" ] }
35+ tokio = { version = " 1" , features = [" full" ] }
36+ tokio-rusqlite-new = { version = " 0.9" , features = [" bundled" ], optional = true }
3537tracing = " 0.1"
3638tracing-subscriber = { version = " 0.3" , features = [" env-filter" , " time" ] }
3739
3840[features ]
3941default = [" cache" , " avtrdb" , " vrcdb" , " vrcds" , " vrcwb" , " title" ]
4042
4143# VRChat Avatar Database Providers
42- cache = [" dep:sqlite " ]
44+ cache = [" dep:tokio-rusqlite-new " ]
4345avtrdb = [" dep:reqwest" , " discord" ]
4446vrcdb = [" dep:reqwest" , " discord" ]
4547vrcds = [" dep:reqwest" , " discord" ]
@@ -61,3 +63,4 @@ pedantic = { level = "warn", priority = -1 }
6163nursery = { level = " warn" , priority = -1 }
6264cargo = { level = " warn" , priority = -1 }
6365multiple_crate_versions = " allow"
66+ similar_names = " allow"
0 commit comments