https://github.com/jdonszelmann/cargo-bug
https://github.com/jdonszelmann/cargo-bug
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jdonszelmann/cargo-bug
- Owner: jdonszelmann
- Created: 2021-11-06T17:44:07.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-06T17:45:20.000Z (over 4 years ago)
- Last Synced: 2025-03-05T22:51:32.003Z (over 1 year ago)
- Language: Rust
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is a demonstration of what I think is a bug in cargo. In the `a/` directory
there's a `.cargo/config` file with bullshit contents. However, cargo doesn't
read this config file so no error is raised (this is done to demonstrate
that cargo doesn't read this config).
However, moving the same `.cargo/config` directory to the root:
```
cp -r a/.cargo .
```
does raise an error: the config file is not a toml file. I expected the
`.cargo/config` in the subdirectory to apply to the building of the `a/` crate.