Skip to content
This repository was archived by the owner on Aug 12, 2021. It is now read-only.

Commit 63ae760

Browse files
committed
Rename crate test to libtest
1 parent 02437ee commit 63ae760

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

libtest/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
authors = ["The Rust Project Developers"]
3-
name = "test"
3+
name = "libtest"
44
version = "0.0.0"
55
edition = "2018"
66

77
[lib]
8-
name = "test"
8+
name = "libtest"
99
path = "lib.rs"
1010
crate-type = ["dylib", "rlib"]
1111

libtest/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
// cargo) to detect this crate.
1919

2020
#![deny(rust_2018_idioms)]
21-
#![crate_name = "test"]
21+
#![crate_name = "libtest"]
2222
#![unstable(feature = "test", issue = "27812")]
2323
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/", test(attr(deny(warnings))))]
2424
#![feature(asm)]

0 commit comments

Comments
 (0)