Update Cargo.toml
This commit is contained in:
parent
c90eab16d6
commit
959295169d
@ -1,10 +1,14 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sv-parser-error"
|
name = "sv-parser-error"
|
||||||
version = "0.1.0"
|
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"
|
edition = "2018"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
failure = "0.1.5"
|
failure = "0.1.5"
|
||||||
|
@ -1,7 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sv-parser-macros"
|
name = "sv-parser-macros"
|
||||||
version = "0.1.0"
|
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"
|
edition = "2018"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
|
@ -1,7 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sv-parser-parser"
|
name = "sv-parser-parser"
|
||||||
version = "0.1.0"
|
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"
|
edition = "2018"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
@ -1,7 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sv-parser-pp"
|
name = "sv-parser-pp"
|
||||||
version = "0.1.0"
|
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"
|
edition = "2018"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
@ -1,7 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sv-parser-syntaxtree"
|
name = "sv-parser-syntaxtree"
|
||||||
version = "0.1.0"
|
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"
|
edition = "2018"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
||||||
|
@ -3,11 +3,11 @@ name = "sv-parser"
|
|||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["dalance@gmail.com"]
|
authors = ["dalance@gmail.com"]
|
||||||
repository = "https://github.com/dalance/sv-parser"
|
repository = "https://github.com/dalance/sv-parser"
|
||||||
keywords = []
|
keywords = ["parser", "verilog", "systemverilog"]
|
||||||
categories = []
|
categories = ["parsing"]
|
||||||
license = "MIT"
|
license = "MIT OR Apache-2.0"
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
description = ""
|
description = "Parser library for SystemVerilog"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
@ -22,4 +22,4 @@ sv-parser-pp = { path = "../sv-parser-pp" }
|
|||||||
sv-parser-syntaxtree = { path = "../sv-parser-syntaxtree" }
|
sv-parser-syntaxtree = { path = "../sv-parser-syntaxtree" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
structopt = "*"
|
structopt = "0.3.2"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user