Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ To carry out this optimization cycle, we recommend the following profiling tools

Once [installed](https://github.com/sharkdp/hyperfine?tab=readme-ov-file#installation), we can simply run:
```sh
hyperfine 'TODO(template) update with your binary e.g. ./target/release/...'
hyperfine <binary>
```
### Samply

Expand All @@ -83,7 +83,7 @@ Otherwise, reading the output will be impossible.

Then, we can run:
```sh
samply record 'TODO(template) update with your binary e.g. ./target/release/...'
samply record <binary>
```
This command will open a browser page that contains a graphic representation of where the time is being spent in our application.

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ resolver = "3"
version = "1.7.1"
edition = "2024"
repository = "https://github.com/NethermindEth/charon-rs"
license = "Apache-2.0" # TODO(template) update license
license = "Apache-2.0"
publish = false

[workspace.dependencies]
Expand Down Expand Up @@ -108,4 +108,4 @@ cast_precision_loss = "deny"
cast_sign_loss = "deny"
needless_return = "deny"
panicking_overflow_checks = "deny"
unwrap_used = "deny"
unwrap_used = "deny"
6 changes: 3 additions & 3 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ We ask you to please not publicly disclose any details of the vulnerability unti

**Please do not report security vulnerabilities through public GitHub issues.**

Instead, please use GitHub's <!-- TODO(template) update repository url --> [report vulnerability](https://github.com/NethermindEth/rust-template/security/advisories/new) tool to create a draft advisory.
Instead, please use GitHub's [report vulnerability](https://github.com/NethermindEth/charon-rs/security/advisories/new) tool to create a draft advisory.
Please include as much information as you can provide (listed below) to help us better understand the nature and scope of the possible issue:

* Type of issue.
Expand All @@ -16,7 +16,7 @@ Please include as much information as you can provide (listed below) to help us
* Step-by-step instructions to reproduce the issue and any additional configuration that might be needed.
* Severity of the issue.

Alternatively, please email <!-- TODO(template) update the email address if needed --> [security@nethermind.io](mailto:security@nethermind.io).
Alternatively, please email [security@nethermind.io](mailto:security@nethermind.io).
In case of using the email, please also specify the affected repository.

We will try to address your email as soon as possible.
Expand All @@ -25,4 +25,4 @@ But if you have not received an answer after a couple of days, please follow up
## Fixes

We will release fixes for verified security vulnerabilities.
We expect to publish vulnerabilities using GitHub <!-- TODO(template) update repo information --> [security advisories](https://github.com/NethermindEth/rust-template/security/advisories).
We expect to publish vulnerabilities using GitHub [security advisories](https://github.com/NethermindEth/charon-rs/security/advisories).
1 change: 0 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ highlight = "all"

[bans.workspace-dependencies]
duplicates = 'deny'
# TODO(template) you should provide an example with the lib usage
unused = 'deny'

[sources]
Expand Down