summary refs log tree commit diff
path: root/src/rustc/test_shim/Cargo.toml
blob: ac7842770f5bb8b3ab4bdb90d1148bbc5c1958da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# This is a shim Cargo.toml which serves as a proxy for building libtest.
#
# The reason this shim exists is basically the same reason that `std_shim`
# exists, and more documentation can be found in that `Cargo.toml` as to why.

[package]
name = "test_shim"
version = "0.1.0"
authors = ["The Rust Project Developers"]

[lib]
name = "test_shim"
path = "lib.rs"

[dependencies]
test = { path = "../../libtest" }