Skip to content

Commit e9f5459

Browse files
committed
fix: reduce binary size
1 parent 5f5adbe commit e9f5459

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
[package]
22
name = "tycho-toncenter"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2024"
55
authors = ["Broxus Team"]
66
rust-version = "1.88.0"
7-
repository = "https://github.com/broxus/tycho-"
7+
repository = "https://github.com/broxus/tycho-toncenter"
88
license = "MIT OR Apache-2.0"
99

10+
[profile.release]
11+
lto = "thin"
12+
codegen-units = 1
13+
panic = "abort"
14+
1015
[dependencies]
1116
anyhow = "1.0"
1217
axum = "0.8"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ Base route `/toncenter/v3`
4242

4343
### Docker images
4444

45-
Docker images are available on Docker Hub.
45+
Docker images are available on [ghcr.io](https://github.com/broxus/tycho-toncenter/pkgs/container/tycho-toncenter).
4646

4747
```bash
4848
# Create persistent folder
4949
mkdir -p data
5050

5151
alias tycho-toncenter='docker run --userns=keep-id \
5252
--mount type=bind,src=./data,dst=/tycho,z \
53-
rexagon/tycho-toncenter:latest'
53+
ghcr.io/broxus/tycho-toncenter:latest'
5454

5555
# Generate config.
5656
# NOTE: Paths are relative to the `./data` folder.

0 commit comments

Comments
 (0)