Skip to content

Commit a172793

Browse files
authored
Merge pull request #268 from gakonst/prestwich/pre-pub-circ-dep
fix: circular dep in ruint
2 parents fdf65e6 + 256df04 commit a172793

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ harness = false
4040
path = "benches/bench.rs"
4141

4242
[dependencies]
43-
ruint-macro = { version = "1.0.2", path = "ruint-macro" }
43+
ruint-macro = { version = "1.1.0", path = "ruint-macro" }
4444

4545
thiserror = "1.0"
4646

ruint-macro/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,3 @@ proc-macro = true
1919
[package.metadata.release]
2020
tag = false
2121

22-
[dev-dependencies]
23-
ruint.workspace = true

ruint-macro/tests/parse_mixed.rs tests/parse_mixed.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
use ruint::aliases::{B256, U256};
2-
use ruint_macro::uint;
1+
use ruint::{
2+
aliases::{B256, U256},
3+
uint,
4+
};
35

46
#[test]
57
fn test_non_literal() {

0 commit comments

Comments
 (0)