mirror of
https://codeberg.org/icewind/log-normalizer.git
synced 2026-06-03 13:54:11 +02:00
updates
This commit is contained in:
parent
e1a4036b61
commit
d1d0a24aa3
3 changed files with 285 additions and 312 deletions
585
Cargo.lock
generated
585
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
14
Cargo.toml
14
Cargo.toml
|
|
@ -10,16 +10,16 @@ path = "src/main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sqlx = { version = "0.7.3", default_features = false, features = ["macros", "postgres", "json", "chrono", "runtime-tokio-rustls"] }
|
sqlx = { version = "0.7.3", default_features = false, features = ["macros", "postgres", "json", "chrono", "runtime-tokio-rustls"] }
|
||||||
dotenv = "0.15.0"
|
dotenvy = "0.15.7"
|
||||||
main_error = "0.1.2"
|
main_error = "0.1.2"
|
||||||
tokio = { version = "1.20.0", features = ["macros", "time", "rt-multi-thread"] }
|
tokio = { version = "1.36.0", features = ["macros", "time", "rt-multi-thread"] }
|
||||||
serde = { version = "1.0.140", features = ["derive"] }
|
serde = { version = "1.0.196", features = ["derive"] }
|
||||||
serde_with = "3.6.1"
|
serde_with = "3.6.1"
|
||||||
serde_json = "1.0.82"
|
serde_json = "1.0.113"
|
||||||
chrono = { version = "0.4.19", features = ["serde"] }
|
chrono = { version = "0.4.33", features = ["serde"] }
|
||||||
steamid-ng = "1.0.0"
|
steamid-ng = "1.0.0"
|
||||||
tracing = "0.1.35"
|
tracing = "0.1.40"
|
||||||
tracing-subscriber = "0.3.15"
|
tracing-subscriber = "0.3.18"
|
||||||
anyhow = "1.0.79"
|
anyhow = "1.0.79"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
|
||||||
|
|
@ -18,8 +18,8 @@ const VERSION: i16 = 2;
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
async fn main() -> Result<(), MainError> {
|
async fn main() -> Result<(), MainError> {
|
||||||
tracing_subscriber::fmt::init();
|
tracing_subscriber::fmt::init();
|
||||||
let database_url = dotenv::var("DATABASE_URL")?;
|
let database_url = dotenvy::var("DATABASE_URL")?;
|
||||||
let raw_database_url = dotenv::var("RAW_DATABASE_URL")?;
|
let raw_database_url = dotenvy::var("RAW_DATABASE_URL")?;
|
||||||
|
|
||||||
loop {
|
loop {
|
||||||
normalize(&database_url, &raw_database_url).await?;
|
normalize(&database_url, &raw_database_url).await?;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue