Monorepo for Tangled tangled.org
2

Configure Feed

Select the types of activity you want to include in your feed.

1[workspace] 2resolver = "2" 3members = [] 4exclude = ["sites"] 5 6[workspace.package] 7edition = "2024" 8rust-version = "1.95" 9license = "MIT" 10authors = [ 11 "Lewis <lewis@tangled.org>", 12 "Seongmin Lee <git@boltless.me>", 13 "oppiliappan <me@oppi.li>", 14 "Anirudh Oppiliappan <anirudh@tangled.org>", 15 "eti <eti@eti.tf>", 16] 17 18[workspace.lints.rust] 19unsafe_code = "forbid" 20unused_must_use = "deny" 21 22[workspace.lints.clippy] 23dbg_macro = "warn" 24todo = "warn" 25print_stdout = "deny" 26print_stderr = "warn" 27 28[profile.release] 29lto = "fat" 30strip = true 31codegen-units = 1 32panic = "abort" 33 34[profile.bench] 35debug = 1 36strip = false 37 38[profile.profiling] 39inherits = "release" 40debug = 1 41strip = false 42lto = "thin"