Skip to content

Commit

Permalink
Add Licences and Authors in Cargo.toml (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanson authored Nov 22, 2023
1 parent 2091bc7 commit 40dbb66
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
dist/ckb-debugger-windoes-x64-sha256.txt
publish-crates-io:
name: Publish ckb-mock-tx-types to crates.io
name: Publish crates to crates.io
needs: [release]
runs-on: ubuntu-latest
steps:
Expand All @@ -102,6 +102,6 @@ jobs:
cd ckb-gdb-remote-protocol && cargo publish && cd ..
cd ckb-vm-debug-utils && cargo publish && cd ..
cd ckb-debugger && cargo publish && cd ..
cd ckb-vm-pprof-protos && cargo publish && cd ..
cd ckb-vm-pprof-protos && cargo publish --no-verify && cd ..
cd ckb-vm-pprof-converter && cargo publish && cd ..
cd ckb-vm-signal-profiler && cargo publish && cd ..
2 changes: 2 additions & 0 deletions ckb-vm-pprof-converter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name = "ckb-vm-pprof-converter"
version = "0.112.1"
edition = "2021"
description = "Convert raw data generated by ckb-vm-pprof to proto format accepted by Google's pprof tool"
license = "MIT"
authors = ["Nervos Core Dev <[email protected]>"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 2 additions & 0 deletions ckb-vm-pprof-protos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name = "ckb-vm-pprof-protos"
version = "0.112.1"
edition = "2021"
description = "Crate for generating Rust definitions from pprof proto"
license = "MIT"
authors = ["Nervos Core Dev <[email protected]>"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 2 additions & 0 deletions ckb-vm-signal-profiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name = "ckb-vm-signal-profiler"
version = "0.112.1"
edition = "2021"
description = "Linux signal based profiler for ckb-vm, note this is profiling ckb-vm itself, not the programs running in ckb-vm"
license = "MIT"
authors = ["Nervos Core Dev <[email protected]>"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down

0 comments on commit 40dbb66

Please sign in to comment.