Cargo.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. [package]
  2. name = "unwinding"
  3. version = "0.1.1"
  4. authors = ["Gary Guo <gary@garyguo.net>"]
  5. edition = "2018"
  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 = ["cdylib", "example"]
  11. [dependencies]
  12. gimli = { version = "0.25.0", default-features = false, features = ["read"] }
  13. libc = { version = "0.2", optional = true }
  14. spin = { version = "0.9", optional = true, default-features = false, features = ["mutex", "spin_mutex"] }
  15. [patch.crates-io]
  16. gimli = { git = "https://github.com/gimli-rs/gimli.git" }
  17. [features]
  18. alloc = []
  19. unwinder = []
  20. fde-phdr = ["libc"]
  21. fde-phdr-dl = ["fde-phdr"]
  22. fde-phdr-aux = ["fde-phdr"]
  23. fde-registry = ["alloc"]
  24. fde-static = []
  25. fde-gnu-eh-frame-hdr = []
  26. dwarf-expr = []
  27. hide-trace = []
  28. personality = []
  29. personality-dummy = []
  30. print = ["libc"]
  31. panicking = []
  32. panic = ["panicking", "alloc"]
  33. panic-handler = ["print", "panic"]
  34. panic-handler-dummy = []
  35. system-alloc = []
  36. default = ["unwinder", "dwarf-expr", "hide-trace", "fde-phdr-dl", "fde-registry"]
  37. [profile.dev]
  38. # Must be turned on for cdylib due to Rust bug https://github.com/rust-lang/rust/issues/50007
  39. lto = true
  40. [profile.release]
  41. lto = true
  42. debug = true
  43. [package.metadata.docs.rs]
  44. features = ["panic-handler"]