We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70d0cf9 commit 2ed9ea6Copy full SHA for 2ed9ea6
.github/workflows/ci.yml
@@ -36,6 +36,10 @@ jobs:
36
steps:
37
- uses: actions/checkout@v4
38
39
+ # use mold linker instead of the default linker only on linux
40
+ - uses: rui314/setup-mold@v1
41
+ if: ${{ runner.os == 'Linux' }}
42
+
43
- uses: dtolnay/rust-toolchain@stable
44
with:
45
components: clippy
Cargo.toml
@@ -13,8 +13,10 @@ repository = "https://github.com/bytebeamio/rumqtt"
13
license = "Apache-2.0"
14
authors = ["tekjar <[email protected]>"]
15
16
-[profile.dev.build-override]
17
-debug = true
+[profile.dev]
+# producing debug info in builds takes up a lot of space on runner, and we
18
+# are currently not using it.
19
+debug = false
20
21
[profile.release]
22
codegen-units = 1
0 commit comments