Skip to content

Commit da5c5d6

Browse files
authored
Remove pending todo(template) (#201)
1 parent 6e55440 commit da5c5d6

4 files changed

Lines changed: 7 additions & 8 deletions

File tree

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ To carry out this optimization cycle, we recommend the following profiling tools
5858

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

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

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ resolver = "3"
2222
version = "1.7.1"
2323
edition = "2024"
2424
repository = "https://github.com/NethermindEth/charon-rs"
25-
license = "Apache-2.0" # TODO(template) update license
25+
license = "Apache-2.0"
2626
publish = false
2727

2828
[workspace.dependencies]
@@ -108,4 +108,4 @@ cast_precision_loss = "deny"
108108
cast_sign_loss = "deny"
109109
needless_return = "deny"
110110
panicking_overflow_checks = "deny"
111-
unwrap_used = "deny"
111+
unwrap_used = "deny"

SECURITY.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ We ask you to please not publicly disclose any details of the vulnerability unti
77

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

10-
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.
10+
Instead, please use GitHub's [report vulnerability](https://github.com/NethermindEth/charon-rs/security/advisories/new) tool to create a draft advisory.
1111
Please include as much information as you can provide (listed below) to help us better understand the nature and scope of the possible issue:
1212

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

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

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

2727
We will release fixes for verified security vulnerabilities.
28-
We expect to publish vulnerabilities using GitHub <!-- TODO(template) update repo information --> [security advisories](https://github.com/NethermindEth/rust-template/security/advisories).
28+
We expect to publish vulnerabilities using GitHub [security advisories](https://github.com/NethermindEth/charon-rs/security/advisories).

deny.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ highlight = "all"
7575

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

8180
[sources]

0 commit comments

Comments
 (0)