forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmise.toml
More file actions
73 lines (63 loc) · 2.16 KB
/
mise.toml
File metadata and controls
73 lines (63 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tools]
# Core dependencies
go = "1.24.10"
golangci-lint = "2.8.0"
gotestsum = "1.12.3"
mockery = "2.53.3"
rust = "1.92.0"
python = "3.12.0"
uv = "0.5.5"
jq = "1.7.1"
yq = "4.44.5"
shellcheck = "0.10.0"
shfmt = "3.11.0"
direnv = "2.35.0"
just = "1.37.0"
svm-rs = "0.5.19"
# Go dependencies
"go:github.com/ethereum/go-ethereum/cmd/abigen" = "1.15.10"
"go:github.com/ethereum/go-ethereum/cmd/geth" = "1.16.4" # Osaka testnet release.
# Python dependencies
"pipx:slither-analyzer" = "0.10.2"
"pipx:semgrep" = "1.90.0"
"pipx:md_toc" = "9.0.0"
# Foundry dependencies
# Foundry is a special case because it supplies multiple binaries at the same
# GitHub release, so we need to use the aliasing trick to get mise to not error
# The git ref here should be on the `stable` branch.
# Updated to use the specific nightly build
forge = "1.2.3"
cast = "1.2.3"
anvil = "1.2.3"
# Other dependencies
codecov-uploader = "0.8.0"
goreleaser-pro = "2.11.2"
kurtosis = "1.8.1"
op-acceptor = "op-acceptor/v3.8.2"
git-cliff = "2.12.0"
# Fake dependencies
# Put things here if you need to track versions of tools or projects that can't
# actually be managed by mise (yet). Make sure that anything you put in here is
# also found inside of disabled_tools or mise will try to install it.
kontrol = "1.0.90"
binary_signer = "1.0.4"
[alias]
forge = "ubi:foundry-rs/foundry[exe=forge]"
cast = "ubi:foundry-rs/foundry[exe=cast]"
anvil = "ubi:foundry-rs/foundry[exe=anvil]"
just = "ubi:casey/just"
codecov-uploader = "ubi:codecov/uploader"
goreleaser-pro = "ubi:goreleaser/goreleaser-pro[exe=goreleaser]"
gotestsum = "ubi:gotestyourself/gotestsum"
kurtosis = "ubi:kurtosis-tech/kurtosis-cli-release-artifacts[exe=kurtosis]"
mockery = "ubi:vektra/mockery"
op-acceptor = "ubi:ethereum-optimism/infra[exe=op-acceptor,tag_prefix=op-acceptor/]"
svm-rs = "ubi:alloy-rs/svm-rs[exe=svm]"
# These are disabled, but latest mise versions error if they don't have a known
# install source even though it won't ever actually use that source.
kontrol = "ubi:ethereum-optimism/fake-kontrol"
binary_signer = "ubi:ethereum-optimism/fake-binary_signer"
[settings]
experimental = true
pipx.uvx = true
disable_tools = ["kontrol", "binary_signer"]