@@ -1625,6 +1625,7 @@ fn crate_env_vars() {
1625
1625
static VERSION_PRE: &'static str = env!("CARGO_PKG_VERSION_PRE");
1626
1626
static VERSION: &'static str = env!("CARGO_PKG_VERSION");
1627
1627
static CARGO_MANIFEST_DIR: &'static str = env!("CARGO_MANIFEST_DIR");
1628
+ static CARGO_MANIFEST_PATH: &'static str = env!("CARGO_MANIFEST_PATH");
1628
1629
static PKG_NAME: &'static str = env!("CARGO_PKG_NAME");
1629
1630
static HOMEPAGE: &'static str = env!("CARGO_PKG_HOMEPAGE");
1630
1631
static REPOSITORY: &'static str = env!("CARGO_PKG_REPOSITORY");
@@ -1638,9 +1639,9 @@ fn crate_env_vars() {
1638
1639
1639
1640
1640
1641
fn main() {
1641
- let s = format!("{}-{}-{} @ {} in {}", VERSION_MAJOR,
1642
+ let s = format!("{}-{}-{} @ {} in {} file {} ", VERSION_MAJOR,
1642
1643
VERSION_MINOR, VERSION_PATCH, VERSION_PRE,
1643
- CARGO_MANIFEST_DIR);
1644
+ CARGO_MANIFEST_DIR, CARGO_MANIFEST_PATH );
1644
1645
assert_eq!(s, foo::version());
1645
1646
println!("{}", s);
1646
1647
assert_eq!("foo", PKG_NAME);
@@ -1674,12 +1675,13 @@ fn crate_env_vars() {
1674
1675
use std::path::PathBuf;
1675
1676
1676
1677
pub fn version() -> String {
1677
- format!("{}-{}-{} @ {} in {}",
1678
+ format!("{}-{}-{} @ {} in {} file {} ",
1678
1679
env!("CARGO_PKG_VERSION_MAJOR"),
1679
1680
env!("CARGO_PKG_VERSION_MINOR"),
1680
1681
env!("CARGO_PKG_VERSION_PATCH"),
1681
1682
env!("CARGO_PKG_VERSION_PRE"),
1682
- env!("CARGO_MANIFEST_DIR"))
1683
+ env!("CARGO_MANIFEST_DIR"),
1684
+ env!("CARGO_MANIFEST_PATH"))
1683
1685
}
1684
1686
1685
1687
pub fn check_no_int_test_env() {
@@ -1795,7 +1797,7 @@ fn crate_env_vars() {
1795
1797
println ! ( "bin" ) ;
1796
1798
p. process ( & p. bin ( "foo-bar" ) )
1797
1799
. with_stdout_data ( str![ [ r#"
1798
- 0-5-1 @ alpha.1 in [ROOT]/foo
1800
+ 0-5-1 @ alpha.1 in [ROOT]/foo file [ROOT]/foo/Cargo.toml
1799
1801
1800
1802
"# ] ] )
1801
1803
. run ( ) ;
@@ -1863,12 +1865,15 @@ fn cargo_rustc_current_dir_foreign_workspace_dep() {
1863
1865
fn baz_env() {
1864
1866
let workspace_dir = Path::new(option_env!("CARGO_RUSTC_CURRENT_DIR").expect("CARGO_RUSTC_CURRENT_DIR"));
1865
1867
let manifest_dir = Path::new(option_env!("CARGO_MANIFEST_DIR").expect("CARGO_MANIFEST_DIR"));
1868
+ let manifest_path = Path::new(option_env!("CARGO_MANIFEST_PATH").expect("CARGO_MANIFEST_PATH"));
1866
1869
let current_dir = std::env::current_dir().expect("current_dir");
1867
1870
let file_path = workspace_dir.join(file!());
1868
1871
assert!(file_path.exists(), "{}", file_path.display());
1869
1872
let workspace_dir = std::fs::canonicalize(current_dir.join(workspace_dir)).expect("CARGO_RUSTC_CURRENT_DIR");
1873
+ let manifest_path = std::fs::canonicalize(current_dir.join(manifest_dir.clone()).join("Cargo.toml")).expect("CARGO_MANIFEST_PATH");
1870
1874
let manifest_dir = std::fs::canonicalize(current_dir.join(manifest_dir)).expect("CARGO_MANIFEST_DIR");
1871
- assert_eq!(workspace_dir, manifest_dir);
1875
+ assert_eq!(workspace_dir, manifest_dir.clone());
1876
+ assert_eq!(manifest_dir.join("Cargo.toml"), manifest_path);
1872
1877
}
1873
1878
"# ,
1874
1879
)
@@ -1957,12 +1962,15 @@ fn cargo_rustc_current_dir_non_local_dep() {
1957
1962
fn bar_env() {
1958
1963
let workspace_dir = Path::new(option_env!("CARGO_RUSTC_CURRENT_DIR").expect("CARGO_RUSTC_CURRENT_DIR"));
1959
1964
let manifest_dir = Path::new(option_env!("CARGO_MANIFEST_DIR").expect("CARGO_MANIFEST_DIR"));
1965
+ let manifest_path = Path::new(option_env!("CARGO_MANIFEST_PATH").expect("CARGO_MANIFEST_PATH"));
1960
1966
let current_dir = std::env::current_dir().expect("current_dir");
1961
1967
let file_path = workspace_dir.join(file!());
1962
1968
assert!(file_path.exists(), "{}", file_path.display());
1963
1969
let workspace_dir = std::fs::canonicalize(current_dir.join(workspace_dir)).expect("CARGO_RUSTC_CURRENT_DIR");
1970
+ let manifest_path = std::fs::canonicalize(current_dir.join(manifest_dir.clone()).join("Cargo.toml")).expect("CARGO_MANIFEST_PATH");
1964
1971
let manifest_dir = std::fs::canonicalize(current_dir.join(manifest_dir)).expect("CARGO_MANIFEST_DIR");
1965
- assert_eq!(workspace_dir, manifest_dir);
1972
+ assert_eq!(workspace_dir, manifest_dir.clone());
1973
+ assert_eq!(manifest_dir.join("Cargo.toml"), manifest_path);
1966
1974
}
1967
1975
"# ,
1968
1976
)
0 commit comments