Skip to content

Commit 3abd47c

Browse files
authored
build: bump versions (#34)
* build: bump versions
1 parent 24d2ef4 commit 3abd47c

6 files changed

Lines changed: 71 additions & 37 deletions

File tree

.env.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ SERVER_HOST=0.0.0.0
99

1010
# Log/Trace settings
1111
LOG_LEVEL=trace
12-
TRACE_LOG_LEVEL=trace
12+
OTEL_LOG_LEVEL=trace
1313

1414
# Auth settings
1515
JWT_SECRET=bc3ef5f9b140bfdeb31e7fd183841e06255f6a9e41e422cf267a22f5468d7223

Cargo.lock

Lines changed: 64 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "rust-simple-chat"
33
version = "0.1.0"
44
edition = "2024"
55

6-
[profile.production]
6+
[profile.release-lto]
77
inherits = "release"
88
lto = true
99

@@ -32,8 +32,8 @@ serde_json = "1.0.140"
3232
anyhow = { version = "1.0.97", default-features = false }
3333
async-trait = { version = "0.1.88" }
3434
axum = { version = "0.8.3", features = ["http1", "http2", "json", "macros"] }
35-
caslex = { version = "0.2.1", features = ["auth"] }
36-
caslex-extra = { version = "0.2.3", features = ["observability", "postgres", "jwt"] }
35+
caslex = { version = "0.2.3", features = ["auth"] }
36+
caslex-extra = { version = "0.2.4", features = ["observability", "postgres", "jwt"] }
3737
chrono = { version = "0.4.40", features = ["serde"] }
3838
deadpool-postgres = { version = "0.14.1" }
3939
mockall = { version = "0.13.1" }

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "1.85.1"
2+
channel = "1.86"
33
components = ["rustfmt", "clippy", "rust-analyzer"]
44
profile = "minimal"

src/bin/chat/main.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ mod entrypoint;
44

55
#[tokio::main]
66
async fn main() {
7-
static SERVICE_NAME: &str = env!("CARGO_PKG_NAME");
8-
caslex_extra::setup_application(SERVICE_NAME);
7+
caslex_extra::setup_application(env!("CARGO_PKG_NAME"));
98

109
let mut entry = entrypoint::Entrypoint::new();
1110
let entry_result = entry.bootstrap_server().await;

src/bin/worker/main.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ mod entrypoint;
44

55
#[tokio::main]
66
async fn main() {
7-
static SERVICE_NAME: &str = env!("CARGO_PKG_NAME");
8-
caslex_extra::setup_application(SERVICE_NAME);
7+
caslex_extra::setup_application(env!("CARGO_PKG_NAME"));
98

109
let mut entry = entrypoint::Entrypoint::new();
1110
let entry_result = entry.bootstrap_server().await;

0 commit comments

Comments
 (0)