Change directory structure
This commit is contained in:
parent
6e16fb5c2d
commit
719c7eaa11
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,4 +1,3 @@
|
||||
/target
|
||||
/sv-parser-macro/target
|
||||
**/*.rs.bk
|
||||
Cargo.lock
|
||||
|
32
Cargo.toml
32
Cargo.toml
@ -1,28 +1,6 @@
|
||||
[package]
|
||||
name = "sv-parser"
|
||||
version = "0.1.0"
|
||||
authors = ["dalance@gmail.com"]
|
||||
repository = "https://github.com/dalance/sv-parser"
|
||||
keywords = []
|
||||
categories = []
|
||||
license = "MIT"
|
||||
readme = "README.md"
|
||||
description = ""
|
||||
edition = "2018"
|
||||
build = "build.rs"
|
||||
[workspace]
|
||||
members = [
|
||||
"sv-parser",
|
||||
"sv-parser-macros",
|
||||
]
|
||||
|
||||
[features]
|
||||
default = []
|
||||
trace = []
|
||||
|
||||
[dependencies]
|
||||
nom = "5.0.0"
|
||||
#nom_locate = { git = "https://github.com/fflorent/nom_locate" }
|
||||
nom_locate = { path = "../nom_locate" }
|
||||
str-concat = "*"
|
||||
sv-parser-macro = { path = "./sv-parser-macro" }
|
||||
nom-packrat = "0.1.17"
|
||||
|
||||
[build-dependencies]
|
||||
walkdir = "2"
|
||||
regex = "1"
|
||||
|
@ -1,5 +1,5 @@
|
||||
[package]
|
||||
name = "sv-parser-macro"
|
||||
name = "sv-parser-macros"
|
||||
version = "0.1.0"
|
||||
authors = ["dalance <dalance@gmail.com>"]
|
||||
edition = "2018"
|
28
sv-parser/Cargo.toml
Normal file
28
sv-parser/Cargo.toml
Normal file
@ -0,0 +1,28 @@
|
||||
[package]
|
||||
name = "sv-parser"
|
||||
version = "0.1.0"
|
||||
authors = ["dalance@gmail.com"]
|
||||
repository = "https://github.com/dalance/sv-parser"
|
||||
keywords = []
|
||||
categories = []
|
||||
license = "MIT"
|
||||
readme = "../README.md"
|
||||
description = ""
|
||||
edition = "2018"
|
||||
build = "build.rs"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
trace = []
|
||||
|
||||
[dependencies]
|
||||
nom = "5.0.0"
|
||||
#nom_locate = { git = "https://github.com/fflorent/nom_locate" }
|
||||
nom_locate = { path = "../../nom_locate" }
|
||||
str-concat = "*"
|
||||
sv-parser-macros = { path = "../sv-parser-macros" }
|
||||
nom-packrat = "0.1.17"
|
||||
|
||||
[build-dependencies]
|
||||
walkdir = "2"
|
||||
regex = "1"
|
@ -4,4 +4,3 @@ pub mod node;
|
||||
pub(crate) use any_node::*;
|
||||
pub(crate) use locate::*;
|
||||
pub(crate) use node::*;
|
||||
pub(crate) use sv_parser_macro::*;
|
@ -21,6 +21,8 @@ pub use source_text::*;
|
||||
pub use specify_section::*;
|
||||
pub use udp_declaration_and_instantiation::*;
|
||||
|
||||
pub(crate) use sv_parser_macros::*;
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
pub(crate) const RECURSIVE_FLAG_WORDS: usize = 1;
|
Loading…
x
Reference in New Issue
Block a user