-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathCargo.toml
25 lines (21 loc) · 832 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
[package]
name = "wain-syntax-text"
version = "0.2.1"
authors = ["rhysd <[email protected]>"]
edition = "2021"
description = "WebAssembly text format parser for wain project"
license = "MIT"
homepage = "https://github.com/rhysd/wain/tree/master/wain-syntax-text"
repository = "https://github.com/rhysd/wain"
readme = "README.md"
include = ["src/**/*.rs", "Cargo.toml", "README.md"]
keywords = ["wasm", "webassembly", "parser", "wat"]
categories = ["wasm", "parser-implementations"]
[package.metadata.release]
pre-release-commit-message = "release {{crate_name}} {{version}}"
consolidate-commits = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
wain-ast = { path = "../wain-ast", version = "0.2" }
[badges]
maintenance = { status = "actively-developed" }