mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 21:58:01 +00:00
8a3c587bbe
The data structure can be used to build the JSON input for `resolc` too. In that case serializing of provided custom options should not be dismissed. Makes the memory settings struct more modular as a drive-by. --------- Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
24 lines
637 B
TOML
24 lines
637 B
TOML
[package]
|
|
name = "revive-solc-json-interface"
|
|
version = "0.2.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 }
|
|
rayon = { workspace = true, optional = true }
|
|
semver = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|