File tree Expand file tree Collapse file tree 5 files changed +9
-3
lines changed Expand file tree Collapse file tree 5 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
5
5
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
- refs/heads/try2: c6b1bce96f25e785d22e976d1cc41cabdae5ea73
8
+ refs/heads/try2: 2877928b22c239849a79b48d07139104ff144cd4
9
9
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
10
10
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
11
11
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
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