forked from esphome/esp-stacktrace-decoder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 716 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (27 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "esp-stacktrace-decoder"
description = "An ESP stack trace decoder"
version = "0.1.0"
edition = "2018"
authors = ["Maxime Borges <contact@maximeborg.es>"]
repository = "https://github.com/esphome/esp-stacktrace-decoder"
license = "MIT"
[lib]
name = "esp_stacktrace_decoder_rs"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "esp_stacktrace_decoder"
path = "src/bin.rs"
[dependencies]
clap = "2"
addr2line = "0.16.0"
object = { version = "0.26", default-features = false, features = ["read"], optional = true }
typed-arena = "2"
regex = "1.5.4"
colored = "2"
wasm-bindgen = { version = "0.2" }
js-sys = "0.3"
[profile.release]
opt-level = "z" # Optimize for size.
lto = true