@@ -72,9 +72,9 @@ pub struct CfgInfo {
72
72
}
73
73
74
74
pub struct VersionInfo {
75
- pub major : String ,
76
- pub minor : String ,
77
- pub patch : String ,
75
+ pub major : u8 ,
76
+ pub minor : u8 ,
77
+ pub patch : u8 ,
78
78
pub pre_release : Option < String > ,
79
79
// Information that's only available when we were built with
80
80
// configure/make, rather than cargo itself.
@@ -192,12 +192,28 @@ fn handle_cause(cargo_err: &Error, shell: &mut Shell) -> bool {
192
192
}
193
193
194
194
pub fn version ( ) -> VersionInfo {
195
- macro_rules! env_str {
196
- ( $name: expr) => { env!( $name) . to_string( ) }
197
- }
198
195
macro_rules! option_env_str {
199
196
( $name: expr) => { option_env!( $name) . map( |s| s. to_string( ) ) }
200
197
}
198
+
199
+ // So this is pretty horrible...
200
+ // There are two versions at play here:
201
+ // - version of cargo-the-binary, which you see when you type `cargo --version`
202
+ // - version of cargo-the-library, which you download from crates.io for use
203
+ // in your projects.
204
+ //
205
+ // We want to make the `binary` version the same as the corresponding Rust/rustc release.
206
+ // At the same time, we want to keep the library version at `0.x`, because Cargo as
207
+ // a library is (and probably will always be) unstable.
208
+ //
209
+ // Historically, Cargo used the same version number for both the binary and the library.
210
+ // Specifically, rustc 1.x.z was paired with cargo 0.x+1.w.
211
+ // We continue to use this scheme for the library, but transform it to 1.x.w for the purposes
212
+ // of `cargo --version`.
213
+ let major = 1 ;
214
+ let minor = env ! ( "CARGO_PKG_VERSION_MINOR" ) . parse :: < u8 > ( ) . unwrap ( ) - 1 ;
215
+ let patch = env ! ( "CARGO_PKG_VERSION_PATCH" ) . parse :: < u8 > ( ) . unwrap ( ) ;
216
+
201
217
match option_env ! ( "CFG_RELEASE_CHANNEL" ) {
202
218
// We have environment variables set up from configure/make.
203
219
Some ( _) => {
@@ -210,9 +226,9 @@ pub fn version() -> VersionInfo {
210
226
}
211
227
} ) ;
212
228
VersionInfo {
213
- major : env_str ! ( "CARGO_PKG_VERSION_MAJOR" ) ,
214
- minor : env_str ! ( "CARGO_PKG_VERSION_MINOR" ) ,
215
- patch : env_str ! ( "CARGO_PKG_VERSION_PATCH" ) ,
229
+ major,
230
+ minor,
231
+ patch,
216
232
pre_release : option_env_str ! ( "CARGO_PKG_VERSION_PRE" ) ,
217
233
cfg_info : Some ( CfgInfo {
218
234
release_channel : option_env_str ! ( "CFG_RELEASE_CHANNEL" ) . unwrap ( ) ,
@@ -223,9 +239,9 @@ pub fn version() -> VersionInfo {
223
239
// We are being compiled by Cargo itself.
224
240
None => {
225
241
VersionInfo {
226
- major : env_str ! ( "CARGO_PKG_VERSION_MAJOR" ) ,
227
- minor : env_str ! ( "CARGO_PKG_VERSION_MINOR" ) ,
228
- patch : env_str ! ( "CARGO_PKG_VERSION_PATCH" ) ,
242
+ major,
243
+ minor,
244
+ patch,
229
245
pre_release : option_env_str ! ( "CARGO_PKG_VERSION_PRE" ) ,
230
246
cfg_info : None ,
231
247
}
0 commit comments