config changes

main
~erin 2023-07-25 14:59:47 -04:00
parent 971b217a94
commit 03f3cfd5c0
Signed by: erin
GPG Key ID: 0FEDEAFF1C14847E
2 changed files with 9 additions and 1 deletions

3
.cargo/config.toml Normal file
View File

@ -0,0 +1,3 @@
[target.x86_64-unknown-linux-gnu]
linker = "clang"
rustflags = ["-C", "link-arg=-fuse-ld=/usr/local/bin/mold"]

View File

@ -3,7 +3,7 @@ members = [ "crawler", "core", "frontend" ]
[workspace.package]
edition = "2021"
authors = [ "Erin <contact@the-system.eu.org" ]
authors = [ "Erin Nova <erin@the-system.eu.org" ]
homepage = "https://ferret.lavender.software"
license = "AGPL-3.0-or-later"
@ -11,3 +11,8 @@ license = "AGPL-3.0-or-later"
config = "0.13.3"
chrono = "0.4.26"
tokio = { version = "1.29.1", features = ["full"] }
[profile.release]
strip = true
lto = "fat"
codegen-units = 1