-
Notifications
You must be signed in to change notification settings - Fork 269
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 784 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 784 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
[package]
name = "wit-bindgen-cpp"
authors = ["Christof Petig <christof.petig@arcor.de>"]
version = "0.51.0"
edition.workspace = true
rust-version.workspace = true
repository = 'https://github.com/cpetig/wit-bindgen'
license = "Apache-2.0 WITH LLVM-exception"
description = """
C++ guest and host binding generator for WIT and the component model.
"""
[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 }
wit-bindgen-c = { workspace = true }
anyhow = { workspace = true }
heck = { workspace = true }
clap = { workspace = true, optional = true }
[dev-dependencies]
test-helpers = { path = '../test-helpers' }