[package] name = "road" version = "0.1.0" edition = "2021" categories = ["operating-system","linker", "loader"] description = "A fast linker" exclude = ["assets/", "tools/", ".github/", "crates/", "examples/wasm/assets/"] homepage = "https://road-linker.github.io" keywords = ["operating-system", "linker", "loader"] license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/road-linker/road" [workspace] exclude = ["benches", "crates/road_compile_fail_tests"] members = [ "crates/*", "examples/android", "examples/ios", "tools/ci", "errors", ] [profile.dev] # Disabling debug info speeds up builds a bunch, # and we don't rely on it for debugging that much. debug = 0 opt-level = 3 [profile.release] incremental = true # Set this to 1 or 2 to get more useful backtraces in debugger. debug = 0 [dependencies] road_internal = { path = "crates/road_internal", version = "0.1.0" }