Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Prepare for publishing to crates.io #34

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 44 additions & 36 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ proc-macro2 = "1.0.93"
syn = { version = "2.0.96", features = ["full"] }
quote = "1.0.38"
sv-parser = "0.13.3"
spade-parser = { git = "https://gitlab.com/ethanuppal/spade", branch = "hotfixlogos" } #, rev = "0c96a2248fe80b550430be86d3efc1dc9cd15c6f" }
spade-ast = { git = "https://gitlab.com/ethanuppal/spade", branch = "hotfixlogos" } #, rev = "0c96a2248fe80b550430be86d3efc1dc9cd15c6f" }
spade-parser = "0.12.1"
spade-ast = "0.12.1"
logos = "0.15" # vague until Spade reexports logos
log = "0.4.25"
colog = "1.3.0"

Expand Down
1 change: 1 addition & 0 deletions spade-support/spade-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ quote.workspace = true

spade-parser.workspace = true
spade-ast.workspace = true
logos.workspace = true
2 changes: 1 addition & 1 deletion spade-support/spade-macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
use std::{env, fs};

use camino::Utf8PathBuf;
use logos::Logos;
use proc_macro::TokenStream;
use spade_parser::Logos;
use verilator::PortDirection;
use verilog_macro_builder::{build_verilated_struct, MacroArgs};

Expand Down