Cargo.toml 402 B

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