-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
35 lines (29 loc) · 991 Bytes
/
Cargo.toml
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
[package]
name = "simular"
version = "0.2.6"
edition = "2021"
authors = ["Dave Bryson"]
readme = "README.md"
license = "Apache-2.0"
description = "smart-contract api and embedded ethereum virtual machine"
repository = "https://github.com/simular-fi/simular"
homepage = "https://github.com/simular-fi/simular"
categories = ["cryptography::cryptocurrencies"]
keywords = ["revm", "python", "ethereum", "web3", "abm"]
[lib]
name = "simular"
crate-type = ["cdylib", "rlib"]
[dependencies]
anyhow = "1.0.81"
alloy-dyn-abi = "0.7.0"
alloy-primitives = { version = "0.7.0", default-features = false }
serde = "1.0.165"
serde_json = "1.0.99"
hex = { version = "0.4.3", features = ["serde"] }
pyo3 = { version = "0.20.0", features = ["multiple-pymethods", "anyhow"] }
simular-core = "0.2.5"
# using this to allow cargo test on rust code. See:
# https://github.com/PyO3/pyo3/issues/340#issuecomment-461514532
[features]
extension-module = ["pyo3/extension-module"]
default = ["extension-module"]