Skip to content

Commit 5e6014c

Browse files
Merge pull request #13 from CreativesOnchain/dean
prepare v0.1.7 for crates.io release
2 parents 2ece390 + 5601ba1 commit 5e6014c

File tree

4 files changed

+22
-12
lines changed

4 files changed

+22
-12
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,18 @@ members = [
66
]
77

88
[workspace.package]
9-
version = "0.1.6"
9+
version = "0.1.7"
1010
edition = "2021"
1111
authors = ["CreativesOnchain"]
1212
license = "MIT"
1313
description = "Performance profiling and flamegraph generation for Arbitrum Stylus transactions"
1414
repository = "https://github.com/CreativesOnchain/Stylus-Trace"
1515
homepage = "https://github.com/CreativesOnchain/Stylus-Trace"
16+
keywords = ["arbitrum", "stylus", "profiling", "gas", "flamegraph"]
17+
categories = ["development-tools::profiling", "wasm"]
1618

1719
[workspace.dependencies]
18-
stylus-trace-core = { version = "0.1.6", path = "crates/stylus-trace-core" }
20+
stylus-trace-core = { version = "0.1.7", path = "crates/stylus-trace-core" }
1921
clap = { version = "4.5", features = ["derive", "env"] }
2022
serde = { version = "1.0", features = ["derive"] }
2123
serde_json = "1.0"

bin/stylus-trace-studio/Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ authors = { workspace = true }
55
edition = { workspace = true }
66
license = { workspace = true }
77
description = { workspace = true }
8+
repository = { workspace = true }
9+
homepage = { workspace = true }
10+
keywords = { workspace = true }
11+
categories = { workspace = true }
12+
documentation = "https://docs.rs/stylus-trace-studio"
13+
readme = "../../README.md"
814

915
[[bin]]
1016
name = "stylus-trace"

crates/stylus-trace-core/Cargo.toml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
[package]
22
name = "stylus-trace-core"
3-
version.workspace = true
4-
edition.workspace = true
5-
authors.workspace = true
6-
license.workspace = true
7-
description.workspace = true
8-
repository.workspace = true
9-
homepage.workspace = true
10-
documentation = "https://docs.rs/stylus-trace-studio"
3+
version = { workspace = true }
4+
edition = { workspace = true }
5+
authors = { workspace = true }
6+
license = { workspace = true }
7+
description = { workspace = true }
8+
repository = { workspace = true }
9+
homepage = { workspace = true }
10+
documentation = "https://docs.rs/stylus-trace-core"
11+
keywords = { workspace = true }
12+
categories = { workspace = true }
1113

1214
readme = "README.md"
1315

0 commit comments

Comments
 (0)