-
Notifications
You must be signed in to change notification settings - Fork 269
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 859 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 859 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
33
[package]
name = "wit-bindgen-d"
authors = ["Demetrius Kanios <demetrius@kanios.net>"]
version = { workspace = true }
edition = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
homepage = 'https://github.com/bytecodealliance/wit-bindgen'
description = """
D bindings generator for WIT and the component model, typically used through the
`wit-bindgen-cli` crate.
"""
[lints]
workspace = true
[lib]
doctest = false
test = false
[dependencies]
wit-bindgen-core = { workspace = true }
wit-component = { workspace = true }
wasm-encoder = { workspace = true }
wasm-metadata = { workspace = true }
anyhow = { workspace = true }
heck = { workspace = true }
clap = { workspace = true, optional = true }
indexmap = { workspace = true }
[features]
clap = ['dep:clap', 'wit-bindgen-core/clap']