Cargo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [package]
  2. name = "unwinding"
  3. version = "0.2.1"
  4. authors = ["Gary Guo <gary@garyguo.net>"]
  5. edition = "2021"
  6. license = "MIT OR Apache-2.0"
  7. description = "Unwinding library in Rust and for Rust"
  8. repository = "https://github.com/nbdd0121/unwinding/"
  9. [workspace]
  10. members = [
  11. "cdylib",
  12. "test_crates/throw_and_catch",
  13. "test_crates/catch_std_exception",
  14. "test_crates/std_catch_exception",
  15. ]
  16. [dependencies]
  17. gimli = { version = "0.28", default-features = false, features = ["read-core"] }
  18. libc = { version = "0.2", optional = true }
  19. spin = { version = "0.9.8", optional = true, default-features = false, features = ["mutex", "spin_mutex"] }
  20. core = { version = '1.0.0', optional = true, package = 'rustc-std-workspace-core' }
  21. compiler_builtins = { version = "0.1.2", optional = true }
  22. [features]
  23. alloc = []
  24. unwinder = []
  25. fde-phdr = ["libc"]
  26. fde-phdr-dl = ["fde-phdr"]
  27. fde-phdr-aux = ["fde-phdr"]
  28. fde-registry = ["alloc"]
  29. fde-static = []
  30. fde-gnu-eh-frame-hdr = []
  31. fde-custom = []
  32. dwarf-expr = []
  33. hide-trace = []
  34. personality = []
  35. personality-dummy = []
  36. print = ["libc"]
  37. panicking = []
  38. panic = ["panicking", "alloc"]
  39. panic-handler = ["print", "panic"]
  40. panic-handler-dummy = []
  41. system-alloc = []
  42. default = ["unwinder", "dwarf-expr", "hide-trace", "fde-phdr-dl", "fde-registry"]
  43. rustc-dep-of-std = ["core", "gimli/rustc-dep-of-std", "compiler_builtins"]
  44. [profile.release]
  45. debug = true
  46. [package.metadata.docs.rs]
  47. features = ["panic-handler"]