Skip to content

Commit e296480

Browse files
committed
---
yaml --- r: 146397 b: refs/heads/try2 c: 0369a41 h: refs/heads/master i: 146395: 155151c v: v3
1 parent e799641 commit e296480

File tree

13 files changed

+8
-11
lines changed

13 files changed

+8
-11
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 318e1da4a79533cf8040ef41dc1b1a2ef861906b
8+
refs/heads/try2: 0369a41f0e668eda5622055253b91dbb5254f0b4
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/Makefile.in

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -280,35 +280,35 @@ $(foreach target,$(CFG_TARGET),\
280280
# Standard library variables
281281
######################################################################
282282

283-
STDLIB_CRATE := $(S)src/libstd/std.rs
283+
STDLIB_CRATE := $(S)src/libstd/lib.rs
284284
STDLIB_INPUTS := $(wildcard $(addprefix $(S)src/libstd/, \
285285
*.rs */*.rs */*/*rs */*/*/*rs))
286286

287287
######################################################################
288288
# Extra library variables
289289
######################################################################
290290

291-
EXTRALIB_CRATE := $(S)src/libextra/extra.rs
291+
EXTRALIB_CRATE := $(S)src/libextra/lib.rs
292292
EXTRALIB_INPUTS := $(wildcard $(addprefix $(S)src/libextra/, \
293293
*.rs */*.rs))
294294

295295
######################################################################
296296
# Rust UV library variables
297297
######################################################################
298298

299-
LIBRUSTUV_CRATE := $(S)src/librustuv/rustuv.rs
299+
LIBRUSTUV_CRATE := $(S)src/librustuv/lib.rs
300300
LIBRUSTUV_INPUTS := $(wildcard $(addprefix $(S)src/librustuv/, \
301301
*.rs */*.rs))
302302

303303
######################################################################
304304
# rustc crate variables
305305
######################################################################
306306

307-
COMPILER_CRATE := $(S)src/librustc/rustc.rs
307+
COMPILER_CRATE := $(S)src/librustc/lib.rs
308308
COMPILER_INPUTS := $(wildcard $(addprefix $(S)src/librustc/, \
309309
*.rs */*.rs */*/*.rs */*/*/*.rs))
310310

311-
LIBSYNTAX_CRATE := $(S)src/libsyntax/syntax.rs
311+
LIBSYNTAX_CRATE := $(S)src/libsyntax/lib.rs
312312
LIBSYNTAX_INPUTS := $(wildcard $(addprefix $(S)src/libsyntax/, \
313313
*.rs */*.rs */*/*.rs */*/*/*.rs))
314314

branches/try2/mk/tools.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ COMPILETEST_CRATE := $(S)src/compiletest/compiletest.rs
1616
COMPILETEST_INPUTS := $(wildcard $(S)src/compiletest/*.rs)
1717

1818
# Rustpkg, the package manager and build system
19-
RUSTPKG_LIB := $(S)src/librustpkg/rustpkg.rs
19+
RUSTPKG_LIB := $(S)src/librustpkg/lib.rs
2020
RUSTPKG_INPUTS := $(wildcard $(S)src/librustpkg/*.rs)
2121

2222
# Rustdoc, the documentation tool
23-
RUSTDOC_LIB := $(S)src/librustdoc/rustdoc.rs
23+
RUSTDOC_LIB := $(S)src/librustdoc/lib.rs
2424
RUSTDOC_INPUTS := $(wildcard $(addprefix $(S)src/librustdoc/, \
2525
*.rs */*.rs */*/*.rs))
2626

branches/try2/src/libextra/extra.rs renamed to branches/try2/src/libextra/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ pub mod uuid;
9898
#[cfg(unicode)]
9999
mod unicode;
100100

101-
#[path="terminfo/terminfo.rs"]
102101
pub mod terminfo;
103102

104103
// Compiler support modules

branches/try2/src/libstd/std.rs renamed to branches/try2/src/libstd/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,6 @@ pub mod vec;
122122
pub mod at_vec;
123123
pub mod str;
124124

125-
#[path = "str/ascii.rs"]
126125
pub mod ascii;
127126
pub mod send_str;
128127

@@ -143,7 +142,6 @@ pub mod rc;
143142
/* Common traits */
144143

145144
pub mod from_str;
146-
#[path = "num/num.rs"]
147145
pub mod num;
148146
pub mod iter;
149147
pub mod to_str;

0 commit comments

Comments
 (0)