Skip to content

Commit

Permalink
Add language normalization and new dependencies for improved language…
Browse files Browse the repository at this point in the history
… handling
  • Loading branch information
korewaChino committed Dec 4, 2024
1 parent a62b6fb commit 665a0a1
Show file tree
Hide file tree
Showing 4 changed files with 272 additions and 6 deletions.
141 changes: 140 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion skystreamer-bin/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,12 @@ pub struct Config {
#[clap(flatten)]
pub file_exporter: FileExporterOptions,

#[clap(short = 'R', long, default_value = "bsky.network", env = "ATPROTO_RELAY")]
#[clap(
short = 'R',
long,
default_value = "bsky.network",
env = "ATPROTO_RELAY"
)]
pub atproto_relay: String,
}

Expand Down
2 changes: 2 additions & 0 deletions skystreamer-prometheus-exporter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ tokio-stream = { version = "0.1.16", features = ["full"] }
tracing = { version = "0.1.41", features = ["log"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
futures = "0.3.31"
tracing-test = "0.2.5"
langtag = "0.4.0"
Loading

0 comments on commit 665a0a1

Please sign in to comment.