Skip to content

Commit f31746d

Browse files
author
Ubuntu
committed
Publish
0 parents  commit f31746d

File tree

100 files changed

+47590
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+47590
-0
lines changed

.gitignore

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Cargo build
2+
**/target
3+
4+
# Cargo config
5+
.cargo
6+
7+
# Profile-guided optimization
8+
/tmp
9+
pgo-data.profdata
10+
11+
# MacOS nuisances
12+
.DS_Store
13+
14+
# Github commit file
15+
COMMIT_HASH
16+
17+
# Benchmark results
18+
**/.csv

.vscode/settings.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"rust-analyzer.linkedProjects": [
3+
"eval/cli/Cargo.toml",
4+
// "programs/fibonacci-jolt/Cargo.toml",
5+
// "programs/fibonacci/Cargo.toml",
6+
// "programs/tendermint-sp1/Cargo.toml",
7+
// "programs/tendermint-risc0/Cargo.toml",
8+
// "programs/ssz-withdrawals/Cargo.toml",
9+
],
10+
"rust-analyzer.procMacro.enable": true
11+
}

0 commit comments

Comments
 (0)