]> git.proxmox.com Git - rustc.git/blame - src/rustc/test_shim/Cargo.toml
New upstream version 1.16.0+dfsg1
[rustc.git] / src / rustc / test_shim / Cargo.toml
CommitLineData
54a0048b
SL
1# This is a shim Cargo.toml which serves as a proxy for building libtest.
2#
3# The reason this shim exists is basically the same reason that `std_shim`
4# exists, and more documentation can be found in that `Cargo.toml` as to why.
5
6[package]
7name = "test_shim"
8version = "0.1.0"
9authors = ["The Rust Project Developers"]
10
11[lib]
12name = "test_shim"
13path = "lib.rs"
14
54a0048b
SL
15[dependencies]
16test = { path = "../../libtest" }