naersk/test/simple-dep-patched/Cargo.toml
Bas van Dijk 59921aa707 Copy paths from the [patch] section into the dummy-src
This allows users to override the source of crates using:

```
[patch.crates-io]
bar = { path = 'my/local/bar' }
```
2019-10-29 14:57:28 +01:00

12 lines
No EOL
203 B
TOML

[package]
name = "simple-dep"
version = "0.1.0"
authors = ["nicolas <nicolas@nmattia.com>"]
edition = "2018"
[dependencies]
rand = "0.7.0"
regex = "1.1.8"
[patch.crates-io]
rand = { path = "my-rand" }