-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 1.02 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
[workspace]
resolver = "2"
members = [
"evm",
"evm-tests"
]
[workspace.package]
authors = ["Aurora Labs <hello@aurora.dev>"]
edition = "2021"
version = "2.2.0"
description = "Aurora Ethereum Virtual Machine implementation written in pure Rust"
categories = ["no-std", "compilers", "cryptography::cryptocurrencies"]
keywords = ["aurora-evm", "evm", "ethereum", "blockchain", "no_std"]
repository = "https://github.com/aurora-is-near/aurora-evm"
license = "MIT"
readme = "README.md"
[workspace.dependencies]
aurora-evm = { path = "evm" }
auto_impl = "1.0"
primitive-types = { version = "0.13", default-features = false }
rlp = { version = "0.6", default-features = false, features = ["derive"] }
sha3 = { version = "0.10", default-features = false }
serde = { version = "1.0", default-features = false }
[patch.crates-io]
# Constrain to v0.14.6 to ensure compatibility with sha3 0.10 and prevent unexpected upgrades
generic-array = { git = "https://github.com/fizyk20/generic-array", rev = "effb209dd7e61b8226e194dec2979314e27598d1" }