-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
72 lines (65 loc) · 2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[workspace]
resolver = "2"
members = ["crates/bulloak", "crates/foundry", "crates/syntax"]
[workspace.package]
authors = ["Alexander Gonzalez <[email protected]>"]
version = "0.8.0"
license = "MIT OR Apache-2.0"
edition = "2021"
readme = "README.md"
repository = "https://github.com/alexfertel/bulloak"
homepage = "https://github.com/alexfertel/bulloak"
documentation = "https://github.com/alexfertel/bulloak"
description = """
A Solidity test generator based on the Branching Tree Technique.
"""
keywords = ["solidity", "testing", "compiler", "cli", "tree"]
categories = [
"development-tools::testing",
"command-line-utilities",
"compilers",
"parsing",
]
exclude = ["/.github/*"]
[workspace.lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
rust_2021_compatibility = { level = "warn", priority = -1 }
[workspace.lints.clippy]
pedantic = "warn"
all = "warn"
[workspace.dependencies]
bulloak-syntax = { path = "crates/syntax", version = "0.8.0" }
bulloak-foundry = { path = "crates/foundry", version = "0.8.0" }
anyhow = "1.0.75"
clap = { version = "4.3.19", features = ["derive"] }
criterion = "0.5.1"
figment = "0.10.19"
forge-fmt = "0.2.0"
indexmap = "2.0.0"
once_cell = "1.18.0"
owo-colors = "3.5.0"
pretty_assertions = { version = "1.4.0" }
regex = "1.10.2"
serde = "1.0.203"
solang-parser = "0.3.2"
thiserror = "1.0.61"
unicode-xid = "0.2.4"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.20.0"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Whether to install an updater program
install-updater = false
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"