-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (34 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
41 lines (34 loc) · 1.08 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.3.0"
edition = "2021"
rust-version = "1.88"
authors = ["Haythem Sellami - Category Labs <hsellami@category.xyz>"]
license = "MIT"
repository = "https://github.com/category-labs/monad-revm"
documentation = "https://docs.rs/monad-revm"
categories = ["cryptography::cryptocurrencies"]
[workspace.lints.rust]
missing-debug-implementations = "warn"
missing-docs = "warn"
unreachable-pub = "warn"
unused-must-use = "deny"
rust-2018-idioms = "deny"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
missing-const-for-fn = "warn"
use-self = "warn"
redundant-clone = "warn"
[workspace.dependencies]
monad-revm = { version = "0.3.0", path = "crates/monad-revm", default-features = false }
# revm
revm = { version = "34.0.0", default-features = false }
revm-interpreter = { version = "32.0.0", default-features = false }
auto_impl = "1"
# alloy
alloy-sol-types = { version = "1.5", default-features = false }
# misc
serde = { version = "1", default-features = false, features = ["derive", "rc"] }
rstest = "0.24"