Update Cargo.toml

This commit is contained in:
dalance 2019-09-18 19:32:11 +09:00
parent c90eab16d6
commit 959295169d
7 changed files with 41 additions and 13 deletions

View File

@ -1,5 +1,5 @@
# sv-parser
Parser library for System Verilog ([IEEE1800-2017](https://standards.ieee.org/standard/1800-2017.html)).
Parser library for SystemVerilog ([IEEE 1800-2017](https://standards.ieee.org/standard/1800-2017.html)).
[![Actions Status](https://github.com/dalance/sv-parser/workflows/Rust/badge.svg)](https://github.com/dalance/sv-parser/actions)
[![Crates.io](https://img.shields.io/crates/v/sv-parser.svg)](https://crates.io/crates/sv-parser)

View File

@ -1,10 +1,14 @@
[package]
name = "sv-parser-error"
version = "0.1.0"
authors = ["dalance <dalance@gmail.com>"]
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"]
categories = ["parsing"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
description = "Helper crate of sv-parser"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
failure = "0.1.5"

View File

@ -1,7 +1,13 @@
[package]
name = "sv-parser-macros"
version = "0.1.0"
authors = ["dalance <dalance@gmail.com>"]
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"]
categories = ["parsing"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
description = "Helper crate of sv-parser"
edition = "2018"
[lib]

View File

@ -1,7 +1,13 @@
[package]
name = "sv-parser-parser"
version = "0.1.0"
authors = ["dalance <dalance@gmail.com>"]
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"]
categories = ["parsing"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
description = "Helper crate of sv-parser"
edition = "2018"
[features]

View File

@ -1,7 +1,13 @@
[package]
name = "sv-parser-pp"
version = "0.1.0"
authors = ["dalance <dalance@gmail.com>"]
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"]
categories = ["parsing"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
description = "Helper crate of sv-parser"
edition = "2018"
[features]

View File

@ -1,7 +1,13 @@
[package]
name = "sv-parser-syntaxtree"
version = "0.1.0"
authors = ["dalance <dalance@gmail.com>"]
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"]
categories = ["parsing"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
description = "Helper crate of sv-parser"
edition = "2018"
build = "build.rs"

View File

@ -3,11 +3,11 @@ name = "sv-parser"
version = "0.1.0"
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = []
categories = []
license = "MIT"
keywords = ["parser", "verilog", "systemverilog"]
categories = ["parsing"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
description = ""
description = "Parser library for SystemVerilog"
edition = "2018"
[features]
@ -22,4 +22,4 @@ sv-parser-pp = { path = "../sv-parser-pp" }
sv-parser-syntaxtree = { path = "../sv-parser-syntaxtree" }
[dev-dependencies]
structopt = "*"
structopt = "0.3.2"