File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 4949# automatically generated for all stage/host/target combinations.
5050# ###############################################################################
5151
52- TARGET_CRATES := std extra green rustuv native flate arena glob term
52+ TARGET_CRATES := std extra green rustuv native flate arena glob term semver
5353HOST_CRATES := syntax rustc rustdoc
5454CRATES := $(TARGET_CRATES ) $(HOST_CRATES )
5555TOOLS := compiletest rustdoc rustc
@@ -66,6 +66,7 @@ DEPS_flate := std native:miniz
6666DEPS_arena := std extra
6767DEPS_glob := std
6868DEPS_term := std
69+ DEPS_semver := std
6970
7071TOOL_DEPS_compiletest := extra green rustuv
7172TOOL_DEPS_rustdoc := rustdoc green rustuv
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ li {list-style-type: none; }
4040* [ The ` arena ` allocation library] ( arena/index.html )
4141* [ The ` flate ` compression library] ( flate/index.html )
4242* [ The ` glob ` file path matching library] ( glob/index.html )
43+ * [ The ` semver ` version collation library] ( semver/index.html )
4344* [ The ` term ` terminal-handling library] ( term/index.html )
4445
4546# Tooling
Original file line number Diff line number Diff line change @@ -83,7 +83,6 @@ pub mod rational;
8383#[ path="num/complex.rs" ]
8484pub mod complex;
8585pub mod stats;
86- pub mod semver;
8786pub mod hex;
8887pub mod uuid;
8988
Original file line number Diff line number Diff line change 2828//! An example version number with all five components is
2929//! `0.8.1-rc.3.0+20130922.linux`.
3030
31+ #[ crate_id = "semver#0.10-pre" ] ;
32+ #[ crate_type = "rlib" ] ;
33+ #[ crate_type = "dylib" ] ;
34+ #[ license = "MIT/ASL2" ] ;
35+
3136use std:: char;
3237use std:: cmp;
3338use std:: option:: { Option , Some , None } ;
You can’t perform that action at this time.
0 commit comments