diff --git a/Cargo.lock b/Cargo.lock index 5a28418..a34af53 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1412,7 +1412,7 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "stylus-trace-core" -version = "0.1.6" +version = "0.1.7" dependencies = [ "addr2line", "anyhow", @@ -1433,7 +1433,7 @@ dependencies = [ [[package]] name = "stylus-trace-studio" -version = "0.1.6" +version = "0.1.7" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 316cbc3..2751707 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,16 +6,18 @@ members = [ ] [workspace.package] -version = "0.1.6" +version = "0.1.7" edition = "2021" authors = ["CreativesOnchain"] license = "MIT" description = "Performance profiling and flamegraph generation for Arbitrum Stylus transactions" repository = "https://github.com/CreativesOnchain/Stylus-Trace" homepage = "https://github.com/CreativesOnchain/Stylus-Trace" +keywords = ["arbitrum", "stylus", "profiling", "gas", "flamegraph"] +categories = ["development-tools::profiling", "wasm"] [workspace.dependencies] -stylus-trace-core = { version = "0.1.6", path = "crates/stylus-trace-core" } +stylus-trace-core = { version = "0.1.7", path = "crates/stylus-trace-core" } clap = { version = "4.5", features = ["derive", "env"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/bin/stylus-trace-studio/Cargo.toml b/bin/stylus-trace-studio/Cargo.toml index c6cd671..852f812 100644 --- a/bin/stylus-trace-studio/Cargo.toml +++ b/bin/stylus-trace-studio/Cargo.toml @@ -5,6 +5,12 @@ authors = { workspace = true } edition = { workspace = true } license = { workspace = true } description = { workspace = true } +repository = { workspace = true } +homepage = { workspace = true } +keywords = { workspace = true } +categories = { workspace = true } +documentation = "https://docs.rs/stylus-trace-studio" +readme = "../../README.md" [[bin]] name = "stylus-trace" diff --git a/crates/stylus-trace-core/Cargo.toml b/crates/stylus-trace-core/Cargo.toml index 740269f..f780a9d 100644 --- a/crates/stylus-trace-core/Cargo.toml +++ b/crates/stylus-trace-core/Cargo.toml @@ -1,13 +1,15 @@ [package] name = "stylus-trace-core" -version.workspace = true -edition.workspace = true -authors.workspace = true -license.workspace = true -description.workspace = true -repository.workspace = true -homepage.workspace = true -documentation = "https://docs.rs/stylus-trace-studio" +version = { workspace = true } +edition = { workspace = true } +authors = { workspace = true } +license = { workspace = true } +description = { workspace = true } +repository = { workspace = true } +homepage = { workspace = true } +documentation = "https://docs.rs/stylus-trace-core" +keywords = { workspace = true } +categories = { workspace = true } readme = "README.md"