-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
32 lines (28 loc) · 813 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
32
[package]
name = "watt"
version = "0.5.0"
authors = ["David Tolnay <dtolnay@gmail.com>"]
categories = ["development-tools::procedural-macro-helpers", "wasm"]
description = "Runtime for executing Rust procedural macros compiled as WebAssembly."
documentation = "https://docs.rs/watt"
edition = "2021"
include = [
"LICENSE_APACHE",
"LICENSE_MIT",
"jit/src/*",
"runtime/LICENSE_ISC",
"runtime/src/*",
"src/*",
]
keywords = ["macros", "wasm"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dtolnay/watt"
[workspace]
members = ["demo/caller", "demo/wa", "proc-macro", "runtime/tests"]
[lib]
doc-scrape-examples = false
[patch.crates-io]
watt = { path = "." }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = ["--generate-link-to-definition"]