Cargo.toml 435 B

123456789101112131415161718192021
  1. [workspace]
  2. members = [
  3. "crates/btlib",
  4. "crates/btnode",
  5. "crates/btmsg",
  6. "crates/btserde",
  7. "crates/harness",
  8. "crates/test-harness",
  9. "crates/btfuse",
  10. "crates/swtpm-harness",
  11. "crates/btfs",
  12. "crates/btfproto",
  13. ]
  14. [profile.bench]
  15. debug = true
  16. # Uncomment this to build the tests with optimizations. This provides better performance when using
  17. # the FUSE file system.
  18. #[profile.test]
  19. #opt-level = 3