Cargo.toml 346 B

1234567891011121314151617
  1. [workspace]
  2. members = ["tor_util", "protover", "smartlist", "external", "tor_allocate", "tor_rust"]
  3. # Can remove panic="abort" when this issue is fixed:
  4. # https://github.com/rust-lang/rust/issues/52652
  5. [profile.dev]
  6. panic = "abort"
  7. [profile.release]
  8. debug = true
  9. panic = "abort"
  10. [profile.test]
  11. panic = "abort"
  12. [profile.bench]
  13. panic = "abort"