- Restructure .env.example with security-focused documentation, service-specific environment file references, and AWS Secrets Manager integration - Update CLI tests workflow to single Python 3.13 version, add pytest-mock dependency, and consolidate test execution with coverage - Add comprehensive security validation to package publishing workflow with manual approval gates, secret scanning, and release
20 lines
338 B
TOML
20 lines
338 B
TOML
[profile.default]
|
|
src = "contracts"
|
|
out = "out"
|
|
libs = ["lib"]
|
|
test = "test"
|
|
|
|
[profile.default.optimizer]
|
|
enabled = true
|
|
runs = 200
|
|
|
|
[profile.default.model_checker]
|
|
contracts = { "contracts/AIPowerRental.sol" = ["AIPowerRental"] }
|
|
engine = "cheth"
|
|
timeout = 10000
|
|
targets = ["assert"]
|
|
|
|
[profile.fuzz]
|
|
runs = 1000
|
|
max_test_rejects = 65536
|