We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64aa913 commit 09ce6aeCopy full SHA for 09ce6ae
3 files changed
.github/workflows/ci.yml
@@ -3,9 +3,9 @@ name: CI
3
on:
4
push:
5
tags: ["v*"]
6
- branches: ["main"]
+ branches: ["next"]
7
pull_request:
8
9
workflow_dispatch:
10
11
concurrency:
Cargo.toml
@@ -33,4 +33,13 @@ debug = 1
33
lto = "fat"
34
strip = true
35
incremental = false
36
-codegen-units = 1
+codegen-units = 1
37
+
38
+[profile.fast-release]
39
+inherits = "release"
40
+#opt-level = "z"
41
+debug = 1
42
+#lto = "fat"
43
+strip = true
44
+#incremental = false
45
+#codegen-units = 1
justfile
@@ -5,5 +5,8 @@ run:
test:
cargo test -- --ignored
+fast-release:
+ cross build --profile fast-release
server:
12
cargo run --package tuic-server --bin tuic-server -- -c ./config.toml
0 commit comments