We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 580461b commit cfcb078Copy full SHA for cfcb078
tests/testsuite/build.rs
@@ -1303,7 +1303,7 @@ fn crate_env_vars() {
1303
repository = "https://example.com/repo.git"
1304
authors = ["wycats@example.com"]
1305
license = "MIT OR Apache-2.0"
1306
- license_file = "license.txt"
+ license-file = "license.txt"
1307
1308
[[bin]]
1309
name = "foo-bar"
@@ -1344,6 +1344,7 @@ fn crate_env_vars() {
1344
assert_eq!("https://example.com", HOMEPAGE);
1345
assert_eq!("https://example.com/repo.git", REPOSITORY);
1346
assert_eq!("MIT OR Apache-2.0", LICENSE);
1347
+ assert_eq!("license.txt", LICENSE_FILE);
1348
assert_eq!("This is foo", DESCRIPTION);
1349
let s = format!("{}.{}.{}-{}", VERSION_MAJOR,
1350
VERSION_MINOR, VERSION_PATCH, VERSION_PRE);
0 commit comments