Fix Cargo.toml

This commit is contained in:
Sebastian Miasojed
2024-11-07 09:43:44 +01:00
parent 88a888d138
commit 9b23e19479
7 changed files with 37 additions and 29 deletions
+8 -6
View File
@@ -1,13 +1,14 @@
[package]
name = "revive-solidity"
version = "1.4.0"
version.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
authors = [
"Oleksandr Zarudnyi <a.zarudnyy@matterlabs.dev>",
"Cyrill Leutwiler <cyrill@parity.io>",
]
license = "MIT OR Apache-2.0"
edition = "2021"
description = "PolkaVM Solidity frontend"
description = "Solidity frontend for the revive compiler"
[[bin]]
name = "resolc"
@@ -17,6 +18,7 @@ path = "src/resolc/main.rs"
doctest = false
[dependencies]
clap = { workspace = true }
structopt = { workspace = true }
colored = { workspace = true }
thiserror = { workspace = true }
@@ -37,8 +39,8 @@ sha3 = { workspace = true }
md5 = { workspace = true }
inkwell = { workspace = true }
revive-common = { path = "../common" }
revive-llvm-context = { path = "../llvm-context" }
revive-common = { workspace = true }
revive-llvm-context = { workspace = true }
[target.'cfg(target_env = "musl")'.dependencies]
mimalloc = { version = "*", default-features = false }
-1
View File
@@ -16,7 +16,6 @@ use crate::compiler::standard_json::output::contract::evm::bytecode::DeployedByt
use crate::compiler::standard_json::output::Output as SolcStandardJsonOutput;
use crate::compiler::Compiler;
use crate::project::Project;
use crate::warning::Warning;
use crate::solc::pipeline::Pipeline as SolcPipeline;
use crate::solc::standard_json::input::settings::optimizer::Optimizer as SolcStandardJsonInputSettingsOptimizer;
use crate::solc::standard_json::input::settings::selection::Selection as SolcStandardJsonInputSettingsSelection;