tangled
alpha
login
or
join now
lesbian.skin
/
nanel
1
fork
atom
[MIRROR] https://codeberg.org/naomi/nanel
1
fork
atom
overview
issues
pulls
pipelines
Switch to Rust stable
lesbian.skin
1 year ago
f46e2d6b
aa78f733
+1
-34
3 changed files
expand all
collapse all
unified
split
.cargo
config.toml
Cargo.toml
rust-toolchain.toml
-31
.cargo/config.toml
···
1
1
-
[target.x86_64-unknown-linux-gnu]
2
2
-
linker = "clang"
3
3
-
rustflags = [
4
4
-
#"-Clink-arg=-fuse-ld=ldd"
5
5
-
"-Clink-arg=-fuse-ld=/usr/bin/mold",
6
6
-
7
7
-
# Requires nightly as of 22/1/25
8
8
-
"-Zshare-generics=y",
9
9
-
"-Zthreads=0",
10
10
-
]
11
11
-
12
12
-
[target.aarch64-apple-darwin]
13
13
-
linker = "clang"
14
14
-
rustflags = [
15
15
-
# Default ld64 is faster
16
16
-
#"-Clink-arg=-fuse-ld=ldd"
17
17
-
18
18
-
# Requires nightly as of 22/1/25
19
19
-
"-Zshare-generics=y",
20
20
-
"-Zthreads=0",
21
21
-
]
22
22
-
23
23
-
[target.x86_64-pc-windows-msvc]
24
24
-
linker = "rust-lld.exe"
25
25
-
rustdocflags = ["-Clinker=rust-ldd.exe"]
26
26
-
rustflags = [
27
27
-
# Off because using dynamic linking - I *love* Windows
28
28
-
# Requires nightly as of 22/1/25
29
29
-
"-Zshare-generics=n",
30
30
-
"-Zthreads=0",
31
31
-
]
+1
-1
Cargo.toml
···
7
7
opt-level = 1
8
8
9
9
[profile.dev.package."*"]
10
10
-
opt-level = 3
10
10
+
opt-level = 1
11
11
12
12
[profile.release]
13
13
codegen-units = 1
-2
rust-toolchain.toml
···
1
1
-
[toolchain]
2
2
-
channel = "nightly"