diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-01-13 17:29:50 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-01-15 08:22:16 -0800 |
| commit | 7a37294accc0f5b4e8259de1fe385fbbcdcf1845 (patch) | |
| tree | ce9604c8d9cae277974bbf3e76f1389ea5430ceb /src/libextra | |
| parent | 7bebdbd96826cc70c8e39d025a64b76cd64a2ee7 (diff) | |
| download | rust-7a37294accc0f5b4e8259de1fe385fbbcdcf1845.tar.gz rust-7a37294accc0f5b4e8259de1fe385fbbcdcf1845.zip | |
Add a configure to disable libstd version injection
We'll use this when building snapshots so we can upgrade freely, but all compilers will inject a version by default.
Diffstat (limited to 'src/libextra')
| -rw-r--r-- | src/libextra/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libextra/lib.rs b/src/libextra/lib.rs index fc0cc045175..b3dda5cbc21 100644 --- a/src/libextra/lib.rs +++ b/src/libextra/lib.rs @@ -20,7 +20,8 @@ Rust extras are part of the standard Rust distribution. */ -#[crate_id = "extra#0.10-pre"]; +// NOTE: upgrade to 0.10-pre after the next snapshot +#[crate_id = "extra#0.9"]; #[comment = "Rust extras"]; #[license = "MIT/ASL2"]; #[crate_type = "rlib"]; |
