mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 20:48:01 +00:00
2090830858
Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
25 lines
664 B
TOML
25 lines
664 B
TOML
[package]
|
|
name = "revive-solc-json-interface"
|
|
version = "0.4.0"
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
description = "Rust bindings for the solc standard JSON and combined JSON interface"
|
|
|
|
[features]
|
|
default = ["parallel"]
|
|
parallel = ["rayon"]
|
|
resolc = [] # The resolc binary adds a bunch of custom fields to the format
|
|
|
|
[dependencies]
|
|
revive-common = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
hex = { workspace = true }
|
|
rayon = { workspace = true, optional = true }
|
|
semver = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|