File tree 4 files changed +8
-2
lines changed
4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 49
49
# automatically generated for all stage/host/target combinations.
50
50
# ###############################################################################
51
51
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
53
53
HOST_CRATES := syntax rustc rustdoc
54
54
CRATES := $(TARGET_CRATES ) $(HOST_CRATES )
55
55
TOOLS := compiletest rustdoc rustc
@@ -66,6 +66,7 @@ DEPS_flate := std native:miniz
66
66
DEPS_arena := std extra
67
67
DEPS_glob := std
68
68
DEPS_term := std
69
+ DEPS_semver := std
69
70
70
71
TOOL_DEPS_compiletest := extra green rustuv
71
72
TOOL_DEPS_rustdoc := rustdoc green rustuv
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ li {list-style-type: none; }
40
40
* [ The ` arena ` allocation library] ( arena/index.html )
41
41
* [ The ` flate ` compression library] ( flate/index.html )
42
42
* [ The ` glob ` file path matching library] ( glob/index.html )
43
+ * [ The ` semver ` version collation library] ( semver/index.html )
43
44
* [ The ` term ` terminal-handling library] ( term/index.html )
44
45
45
46
# Tooling
Original file line number Diff line number Diff line change @@ -83,7 +83,6 @@ pub mod rational;
83
83
#[ path="num/complex.rs" ]
84
84
pub mod complex;
85
85
pub mod stats;
86
- pub mod semver;
87
86
pub mod hex;
88
87
pub mod uuid;
89
88
Original file line number Diff line number Diff line change 28
28
//! An example version number with all five components is
29
29
//! `0.8.1-rc.3.0+20130922.linux`.
30
30
31
+ #[ crate_id = "semver#0.10-pre" ] ;
32
+ #[ crate_type = "rlib" ] ;
33
+ #[ crate_type = "dylib" ] ;
34
+ #[ license = "MIT/ASL2" ] ;
35
+
31
36
use std:: char;
32
37
use std:: cmp;
33
38
use std:: option:: { Option , Some , None } ;
You can’t perform that action at this time.
0 commit comments