Cargo.toml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. [package]
  2. name = "unwinding"
  3. version = "0.1.7"
  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.26.1", default-features = false, features = ["read-core"] }
  13. libc = { version = "0.2", optional = true }
  14. spin = { version = "0.9.8", optional = true, default-features = false, features = ["mutex", "spin_mutex"] }
  15. core = { version = '1.0.0', optional = true, package = 'rustc-std-workspace-core' }
  16. compiler_builtins = { version = "0.1.2", optional = true }
  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. fde-custom = []
  27. dwarf-expr = []
  28. hide-trace = []
  29. personality = []
  30. personality-dummy = []
  31. print = ["libc"]
  32. panicking = []
  33. panic = ["panicking", "alloc"]
  34. panic-handler = ["print", "panic"]
  35. panic-handler-dummy = []
  36. system-alloc = []
  37. default = ["unwinder", "dwarf-expr", "hide-trace", "fde-phdr-dl", "fde-registry"]
  38. rustc-dep-of-std = ["core", "gimli/rustc-dep-of-std", "compiler_builtins"]
  39. [profile.release]
  40. debug = true
  41. [package.metadata.docs.rs]
  42. features = ["panic-handler"]