-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
29 lines (25 loc) · 1.09 KB
/
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
[package]
name = "witgen"
version = "0.15.0"
edition = "2021"
authors = ["Benjamin Coenen <[email protected]>"]
description = "witgen is a library to help you generate wit definitions in a wit file for WebAssembly"
license = "MIT"
readme = "README.md"
repository = "https://github.com/bnjjj/witgen"
homepage = "https://github.com/bnjjj/witgen"
documentation = "https://docs.rs/witgen"
keywords = ["webassembly", "generate", "cargo", "wasm"]
categories = ["wasm", "development-tools", "encoding"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
witgen_macro = { path = "crates/witgen_macro", version = "0.15" }
[dev-dependencies]
wit-parser = { version = "0.2.0", package = "aha-wit-parser"}
witgen_macro_helper = { path = "crates/witgen_macro_helper", version = "0.15" }
syn = { version = "1.0.82", features = ["full", "extra-traits"] }
anyhow = "1.0.51"
cargo-witgen = { path = "crates/cargo_witgen", version = "0.15" }
k9 = "0.11.5"
[workspace]
members = ["crates/witgen_macro", "crates/cargo_witgen", "examples/my_witgen_example"]