-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 785 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 785 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
32
[package]
name = "a2ltool"
version = "3.2.2"
authors = ["Daniel Thaler <daniel@dthaler.de>"]
edition = "2024"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
a2lfile = "3.4.0"
object = { version = "0.38", default-features = false, features = ["read"] }
gimli = { version = "0.33", default-features = false, features = ["read"] }
memmap2 = "0.9"
clap = { version = "4.5", features = ["wrap_help"]}
cpp_demangle = "0.5.0"
regex = "1"
indexmap = "2.8.0"
fnv = "1.0.7"
argfile = { version ="1.0", features=["response"]}
pdb2 = "0.10"
memchr = "2.7.5"
num-traits = "0.2.19"
glob = "0.3.3"
[dev-dependencies]
tempfile = "3.19"
[profile.release]
panic = "abort"
strip = "debuginfo"
lto = "fat"