forked from bytecodealliance/wasm-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 879 Bytes
/
Cargo.toml
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 = "wit-parser"
authors = ["Alex Crichton <[email protected]>"]
version = "0.6.4"
edition.workspace = true
license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md"
repository = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wit-parser"
homepage = "https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wit-parser"
documentation = "https://docs.rs/wit-parser"
description = """
Tooling for parsing `*.wit` files and working with their contents.
"""
[dependencies]
id-arena = "2"
anyhow = { workspace = true }
indexmap = { workspace = true }
pulldown-cmark = { version = "0.8", default-features = false }
unicode-xid = "0.2.2"
log = { workspace = true }
url = { workspace = true }
[dev-dependencies]
rayon = "1"
env_logger = { workspace = true }
pretty_assertions = { workspace = true }
[[test]]
name = "all"
harness = false