We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hi, I tried to run script 'build' or cargo build - returns error "error: could not find Cargo.toml in ...\FT or any parent directory"
Cargo.toml
...\FT
for me it helped to add cargo.toml to main dir.
[profile.release] codegen-units = 1 opt-level = "z" lto = true debug = false panic = "abort" overflow-checks = true
[workspace] members = [ "ft", "test-contract-defi", ] exclude = [ "integration-tests" ]
The text was updated successfully, but these errors were encountered:
To build using cargo run:
cargo
cd ft && cargo build
The build script doesn't have an issue with Cargo.toml
cd scripts && ./build.sh
What platform are you using?
Sorry, something went wrong.
zavodil
No branches or pull requests
hi, I tried to run script 'build' or cargo build - returns error
"error: could not find
Cargo.toml
in...\FT
or any parent directory"for me it helped to add cargo.toml to main dir.
[profile.release]
codegen-units = 1
opt-level = "z"
lto = true
debug = false
panic = "abort"
overflow-checks = true
[workspace]
members = [
"ft",
"test-contract-defi",
]
exclude = [
"integration-tests"
]
The text was updated successfully, but these errors were encountered: