DA0-DA0 / dao-contracts

CosmWasm smart contracts for Interchain DAOs.
https://docs.daodao.zone
BSD 3-Clause "New" or "Revised" License
202 stars 132 forks source link

moved .cargo/config to .cargo/config.toml #837

Closed NoahSaso closed 4 weeks ago

NoahSaso commented 4 weeks ago

fix deprecated cargo config files by renaming to config.toml, and fixed some linter warnings

JakeHartnell commented 4 weeks ago

Is there a way to use one of these across the entire workspace?

NoahSaso commented 4 weeks ago

Is there a way to use one of these across the entire workspace?

great question! yes in fact: https://doc.rust-lang.org/cargo/reference/config.html#hierarchical-structure

Cargo allows local configuration for a particular package as well as global configuration. It looks for configuration files in the current directory and all parent directories.

i'll delete all the ones not in the root :)