Skip to content

Commit

Permalink
Merge pull request #126 from lightclient/v0.3.0-release
Browse files Browse the repository at this point in the history
all: use v0.3
  • Loading branch information
lightclient committed Aug 4, 2023
2 parents 50c5e9e + 33accaf commit 5d3b0f8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions etk-analyze/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ cli = ["etk-cli", "etk-asm", "clap", "snafu"]
[dependencies]
snafu = { optional = true, version = "0.7.1" }
clap = { optional = true, version = "3.1", features = ["derive"] }
etk-cli = { optional = true, path = "../etk-cli", version = "0.3.0-dev" }
etk-asm = { optional = true, path = "../etk-asm", version = "0.3.0-dev" }
etk-dasm = { path = "../etk-dasm", version = "0.3.0-dev" }
etk-cli = { optional = true, path = "../etk-cli", version = "0.3.0" }
etk-asm = { optional = true, path = "../etk-asm", version = "0.3.0" }
etk-dasm = { path = "../etk-dasm", version = "0.3.0" }
z3 = { version = "0.11.2", features = ["static-link-z3"] }

[dependencies.petgraph]
Expand All @@ -28,7 +28,7 @@ default-features = false

[dev-dependencies]
assert_matches = "1.5.0"
etk-asm = { path = "../etk-asm", version = "0.3.0-dev" }
etk-asm = { path = "../etk-asm", version = "0.3.0" }
hex-literal = "0.3.4"

[[bin]]
Expand Down
4 changes: 2 additions & 2 deletions etk-asm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ cli = ["clap", "etk-cli"]
backtraces = [ "snafu/backtraces", "etk-ops/backtraces" ]

[dependencies]
etk-ops = { path = "../etk-ops", version = "0.3.0-dev" }
etk-cli = { optional = true, path = "../etk-cli", version = "0.3.0-dev" }
etk-ops = { path = "../etk-ops", version = "0.3.0" }
etk-cli = { optional = true, path = "../etk-cli", version = "0.3.0" }
hex = "0.4.3"
num-bigint = "0.4"
pest = "2.1.3"
Expand Down
8 changes: 4 additions & 4 deletions etk-dasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ cli = ["clap", "etk-cli", "snafu", "etk-4byte"]

[dependencies]
hex = "0.4.3"
etk-ops = { path = "../etk-ops", version = "0.3.0-dev" }
etk-asm = { path = "../etk-asm", version = "0.3.0-dev" }
etk-ops = { path = "../etk-ops", version = "0.3.0" }
etk-asm = { path = "../etk-asm", version = "0.3.0" }
clap = { optional = true, version = "3.1", features = ["derive"] }
etk-cli = { optional = true, path = "../etk-cli", version = "0.3.0-dev" }
etk-4byte = { optional = true, path = "../etk-4byte", version = "0.3.0-dev" }
etk-cli = { optional = true, path = "../etk-cli", version = "0.3.0" }
etk-4byte = { optional = true, path = "../etk-4byte", version = "0.3.0" }
snafu = { optional = true, version = "0.7.1" }

[dev-dependencies]
Expand Down

0 comments on commit 5d3b0f8

Please sign in to comment.