mirror of
https://github.com/FuelLabs/sway.git
synced 2025-12-23 10:11:56 +00:00
## Description Bumping the rust version to 1.90 and fixing the clippy lints along the way
48 lines
1.2 KiB
TOML
48 lines
1.2 KiB
TOML
[package]
|
|
name = "forc-util"
|
|
version.workspace = true
|
|
description = "Utility items shared between forc crates."
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[features]
|
|
tx = ["dep:fuel-tx", "dep:fuel-abi-types", "dep:fuels-core"]
|
|
|
|
[dependencies]
|
|
annotate-snippets.workspace = true
|
|
ansiterm.workspace = true
|
|
anyhow.workspace = true
|
|
clap = { workspace = true, features = ["cargo", "derive", "env"] }
|
|
dirs.workspace = true
|
|
fd-lock.workspace = true
|
|
forc-tracing.workspace = true
|
|
fuel-abi-types = { workspace = true, optional = true }
|
|
fuel-asm.workspace = true
|
|
fuel-tx = { workspace = true, optional = true }
|
|
fuels-core = { workspace = true, optional = true }
|
|
hex.workspace = true
|
|
paste.workspace = true
|
|
regex.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
sha2.workspace = true
|
|
sway-core.workspace = true
|
|
sway-error.workspace = true
|
|
sway-types.workspace = true
|
|
sway-utils.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber = { workspace = true, features = [
|
|
"ansi",
|
|
"env-filter",
|
|
"json",
|
|
] }
|
|
unicode-xid.workspace = true
|
|
|
|
[dev-dependencies]
|
|
mark-flaky-tests.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|