]> git.proxmox.com Git - rustc.git/blob - src/doc/book/listings/ch14-more-about-cargo/no-listing-02-workspace-with-two-crates/add/adder/Cargo.toml
New upstream version 1.55.0+dfsg1
[rustc.git] / src / doc / book / listings / ch14-more-about-cargo / no-listing-02-workspace-with-two-crates / add / adder / Cargo.toml
1 [package]
2 name = "adder"
3 version = "0.1.0"
4 edition = "2018"
5
6 [dependencies]
7
8 add-one = { path = "../add-one" }