Skip to content

Commit af61b1a

Browse files
committed
initial commit
0 parents  commit af61b1a

File tree

6 files changed

+1449
-0
lines changed

6 files changed

+1449
-0
lines changed

.cargo/config.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[profile.debug]
2+
# faster uploads
3+
strip = "debuginfo"
4+
5+
[target.x86_64-unknown-linux-musl]
6+
# install via: brew install FiloSottile/musl-cross/musl-cross
7+
# see https://betterprogramming.pub/cross-compiling-rust-from-mac-to-linux-7fad5a454ab1
8+
linker = "x86_64-linux-musl-gcc"
9+
strip = { path = "x86_64-linux-musl-strip" }

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

0 commit comments

Comments
 (0)