bump twba-common version

This commit is contained in:
OMGeeky
2024-04-28 13:03:49 +02:00
parent 55332876e0
commit 8d9339f7f7
2 changed files with 18 additions and 5 deletions

19
Cargo.lock generated
View File

@@ -3344,6 +3344,16 @@ dependencies = [
"tracing-core", "tracing-core",
] ]
[[package]]
name = "tracing-serde"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
dependencies = [
"serde",
"tracing-core",
]
[[package]] [[package]]
name = "tracing-subscriber" name = "tracing-subscriber"
version = "0.3.18" version = "0.3.18"
@@ -3354,12 +3364,15 @@ dependencies = [
"nu-ansi-term", "nu-ansi-term",
"once_cell", "once_cell",
"regex", "regex",
"serde",
"serde_json",
"sharded-slab", "sharded-slab",
"smallvec", "smallvec",
"thread_local", "thread_local",
"tracing", "tracing",
"tracing-core", "tracing-core",
"tracing-log", "tracing-log",
"tracing-serde",
] ]
[[package]] [[package]]
@@ -3381,8 +3394,8 @@ dependencies = [
[[package]] [[package]]
name = "twba-common" name = "twba-common"
version = "0.1.0" version = "0.2.0"
source = "git+https://github.com/OMGeeky/twba.common.git#a3499ea8bf573db344ec8269782ecd576f3291b5" source = "git+https://github.com/OMGeeky/twba.common.git#153196685ced86bf063b0a98cbb726f15b269dd3"
dependencies = [ dependencies = [
"tracing", "tracing",
"tracing-appender", "tracing-appender",
@@ -3432,7 +3445,7 @@ dependencies = [
[[package]] [[package]]
name = "twba-twitch-fetcher" name = "twba-twitch-fetcher"
version = "0.1.0" version = "0.1.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"chrono", "chrono",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "twba-twitch-fetcher" name = "twba-twitch-fetcher"
version = "0.1.0" version = "0.1.1"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -9,7 +9,7 @@ edition = "2021"
twba-backup-config = { version = "0.1.1", git = "https://github.com/OMGeeky/backup_config.git" } twba-backup-config = { version = "0.1.1", git = "https://github.com/OMGeeky/backup_config.git" }
twba-local-db = { version = "0.2", git = "https://github.com/OMGeeky/twitch_backup.local_db.git" } twba-local-db = { version = "0.2", git = "https://github.com/OMGeeky/twitch_backup.local_db.git" }
twba-twitch-data = { version = "0.3", git = "https://github.com/OMGeeky/twitch_data.git" } twba-twitch-data = { version = "0.3", git = "https://github.com/OMGeeky/twitch_data.git" }
twba-common = { version = "0.1", git = "https://github.com/OMGeeky/twba.common.git" } twba-common = { version = "0.2", git = "https://github.com/OMGeeky/twba.common.git" }
tracing-subscriber = "0.3" tracing-subscriber = "0.3"
tracing = "0.1" tracing = "0.1"