forked from AlexEne/twiggy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 858 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 858 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
[package]
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
categories = []
description = "Common traits for the Twiggy code size profiler."
license = "Apache-2.0/MIT"
name = "twiggy-parser"
readme = "../README.md"
repository = "https://github.com/rustwasm/twiggy"
version = "0.6.0"
edition = "2018"
[lib]
path = "./parser.rs"
[dependencies]
fallible-iterator = { version = "0.2.0", optional = true }
gimli = { version = "0.19.0", optional = true, default-features = false, features = ["std", "read"] }
object = { version = "0.14.0", optional = true }
wasmparser = "0.35.3"
typed-arena = { version = "1.6.1", optional = true }
twiggy-ir = { version = "=0.6.0", path = "../ir" }
twiggy-traits = { version = "=0.6.0", path = "../traits" }
[features]
default = ["dwarf"]
dwarf = ["fallible-iterator", "gimli", "object", "typed-arena", "twiggy-traits/dwarf"]