Update submodule reference and cargo config

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-01-22 19:45:29 -03:00
parent 3735c67df0
commit 994adbb0ad
4 changed files with 7 additions and 25 deletions

View file

@ -1,5 +1,5 @@
[build] [build]
rustc-wrapper = "sccache" rustc-wrapper = "/home/rodriguez/.cargo/bin/sccache"
[target.x86_64-unknown-linux-gnu] [target.x86_64-unknown-linux-gnu]
linker = "clang" linker = "clang"

View file

@ -1,3 +1,4 @@
[workspace] [workspace]
resolver = "2" resolver = "2"
members = [ members = [
@ -10,40 +11,21 @@ members = [
] ]
[workspace.lints.rust] [workspace.lints.rust]
unused_imports = "warn"
unused_variables = "warn"
unused_mut = "warn"
unsafe_code = "deny"
missing_docs = "allow"
[workspace.lints.clippy] [workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
panic = "warn"
todo = "warn"
missing_const_for_fn = "allow"
needless_pass_by_value = "allow"
multiple_crate_versions = "allow"
future_not_send = "allow"
similar_names = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[profile.release] [profile.release]
lto = true lto = true
opt-level = "z" opt-level = "z"
strip = true strip = true
panic = "abort" panic = "abort"
codegen-units = 1 codegen-units = 8
overflow-checks = true overflow-checks = true
[profile.ci] [profile.ci]
inherits = "release" inherits = "release"
lto = false lto = false
codegen-units = 16 codegen-units = 8
debug = false debug = false
[profile.low-memory] [profile.low-memory]
@ -55,7 +37,7 @@ incremental = false
opt-level = "s" opt-level = "s"
[profile.dev] [profile.dev]
debug = 0 debug = 1
incremental = true incremental = true
codegen-units = 256 codegen-units = 32
opt-level = 0 opt-level = 0

View file

@ -1 +1 @@
Subproject commit b470fbbf9e53582d113f3791b8df61d5975062a3 Subproject commit 570c2b0cbb2e00b704e36acd3a2b1ced275e71ef