Update Cargo.toml
This commit is contained in:
parent
c90eab16d6
commit
959295169d
@ -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)).
|
||||
|
||||
[](https://github.com/dalance/sv-parser/actions)
|
||||
[](https://crates.io/crates/sv-parser)
|
||||
|
@ -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"
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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]
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user