-
Notifications
You must be signed in to change notification settings - Fork 11
Description
I do not have very much to report here because I have not been able to narrow it down exactly.
I just wanted to make a note of the problem.
Here's the issue: I'm building a crate A and it has as build dependency on a different crate B.
- crate B is located at an
httpslocation on github (though that may be a red herring), and - crate B's source is checked in using
.mdfiles, not.rsfiles (thought that may be a red herring).
All I know is that during the build of crate A, I am seeing:
thread 'main' panicked at 'called
Result::unwrap()on anErrvalue: CheckInputError { error: Error(TangoStampOlderThanTarget { tgt: "src/svg/mod.rs" }, Transform { source_time: Timestamp { secs: 1475233056, nsecs: 0 }, target_time: Modified(Timestamp { secs: 1474498671, nsecs: 0 }), original: "src/svg/mod.md", generate: "src/svg/mod.rs" }) }', ../src/libcore/result.rs:799
(where the src/svg/mod.md is the code from crate B.)
cargo clean does nothing to fix this.
(Or maybe this is somehow an artifact of my own messing with the multirust internal checkout of the crate in question? So many questions...)