From c33aea47251bec017aa04c5fd912a6a2454a7da1 Mon Sep 17 00:00:00 2001 From: dalance Date: Thu, 15 Aug 2019 21:15:04 +0900 Subject: [PATCH] Update dependencies --- Cargo.toml | 3 --- README.md | 2 +- sv-parser-macros/Cargo.toml | 4 ++-- sv-parser-parser/Cargo.toml | 10 +++++----- 4 files changed, 8 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3b58805..d788e76 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,3 @@ members = [ "sv-parser-parser", "sv-parser-macros", ] - -[patch.crates-io] -nom_locate = {git = "https://github.com/fflorent/nom_locate"} diff --git a/README.md b/README.md index 149ddd1..dae1224 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # sv-parser -A parser library for System Verilog. +Parser library for System Verilog. ## Implementation Status diff --git a/sv-parser-macros/Cargo.toml b/sv-parser-macros/Cargo.toml index d83b0ff..a62da77 100644 --- a/sv-parser-macros/Cargo.toml +++ b/sv-parser-macros/Cargo.toml @@ -8,5 +8,5 @@ edition = "2018" proc-macro = true [dependencies] -quote = "0.6.9" -syn = { version = "0.15.18", features = ["full", "fold", "parsing", "extra-traits"] } +quote = "1.0.0" +syn = { version = "1.0.0", features = ["full", "fold", "parsing", "extra-traits"] } diff --git a/sv-parser-parser/Cargo.toml b/sv-parser-parser/Cargo.toml index 24445bc..29bc4ae 100644 --- a/sv-parser-parser/Cargo.toml +++ b/sv-parser-parser/Cargo.toml @@ -10,10 +10,10 @@ trace = ["nom-tracable/trace"] [dependencies] nom = "5.0.0" -nom_locate = "0.4.0" -nom-packrat = {path = "../../nom-packrat/nom-packrat"} -nom-recursive = {path = "../../nom-recursive/nom-recursive", features = ["tracer128"]} -nom-tracable = {path = "../../nom-tracable/nom-tracable"} -str-concat = "*" +nom_locate = "1.0.0" +nom-packrat = "0.2.0" +nom-recursive = {version = "0.1.1", features = ["tracer128"]} +nom-tracable = "0.3.1" +str-concat = "0.1.4" sv-parser-macros = {path = "../sv-parser-macros"} sv-parser-syntaxtree = {path = "../sv-parser-syntaxtree"}