We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37ee412 commit 5a64481Copy full SHA for 5a64481
apps/pyth-lazer-agent/src/main.rs
@@ -16,7 +16,6 @@ mod relayer_session;
16
mod websocket_utils;
17
18
#[derive(Parser, Deserialize)]
19
-#[serde(rename_all = "kebab-case")]
20
#[command(version)]
21
struct Cli {
22
#[clap(short, long, default_value = "config/config.toml")]
@@ -26,7 +25,6 @@ struct Cli {
26
25
}
27
28
#[derive(clap::ValueEnum, Clone, Deserialize, Default)]
29
30
enum LogFormat {
31
#[default]
32
Json,
@@ -50,7 +48,6 @@ async fn main() -> anyhow::Result<()> {
50
48
51
49
52
fn init_tracing_subscriber(log_format: LogFormat) {
53
-
54
#[allow(
55
clippy::expect_used,
56
reason = "application can fail on invalid RUST_LOG"
0 commit comments