-
Notifications
You must be signed in to change notification settings - Fork 26
/
Cargo.toml
53 lines (48 loc) · 1.33 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[workspace]
members = ["crates/cli", "crates/core", "crates/commands"]
resolver = "2"
[workspace.package]
authors = ["m4rio"]
categories = ["development-tools"]
description = "A minimal Solidity package manager written in Rust, best used with Foundry"
edition = "2021"
exclude = ["tests/"]
homepage = "https://soldeer.xyz"
keywords = ["solidity", "package-manager", "foundry"]
license = "MIT"
readme = "./README.md"
repository = "https://github.com/mario-eth/soldeer"
rust-version = "1.80"
version = "0.5.2"
[workspace.lints.clippy]
dbg-macro = "warn"
manual-string-new = "warn"
uninlined-format-args = "warn"
use-self = "warn"
redundant-clone = "warn"
unwrap_used = "warn"
[workspace.lints.rust]
rust-2018-idioms = "warn"
unreachable-pub = "warn"
unused-must-use = "warn"
redundant-lifetimes = "warn"
[workspace.lints.rustdoc]
all = "warn"
[workspace.dependencies]
bon = "3.0.0"
clap = { version = "4.5.9", features = ["derive"] }
cliclack = "0.3.4"
derive_more = { version = "1.0.0", features = ["from", "display", "from_str"] }
mockito = "1.5.0"
path-slash = "0.2.1"
rayon = "1.10.0"
reqwest = { version = "0.12.5", default-features = false }
temp-env = { version = "0.3.6", features = ["async_closure"] }
testdir = "0.9.1"
thiserror = "2.0.3"
tokio = { version = "1.38.0", features = [
"io-util",
"macros",
"process",
"rt-multi-thread",
] }