anyone have any idea why i'm getting this error while running soroban contract build
this is my cargo.toml file
[package]
name = "hello-soroban"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
soroban-sdk = "20.2.2"
[dev_dependencies]
soroban-sdk = { version = "20.2.2", features = ["testutils"] }
[features]
testutils = ["soroban-sdk/testutils"]
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true
[profile.release-with-logs]
inherits = "release"
debug-assertions = true