Skip to content

Commit 1c238a0

Browse files
committed
---
yaml --- r: 89610 b: refs/heads/master c: 0369a41 h: refs/heads/master v: v3
1 parent bb6bea1 commit 1c238a0

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
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 318e1da4a79533cf8040ef41dc1b1a2ef861906b
2+
refs/heads/master: 0369a41f0e668eda5622055253b91dbb5254f0b4
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: a6d3e57dca68fde4effdda3e4ae2887aa535fcd6
55
refs/heads/try: b160761e35efcd1207112b3b782c06633cf441a8

trunk/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

trunk/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

trunk/src/libextra/extra.rs renamed to trunk/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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

trunk/src/libstd/std.rs renamed to trunk/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;
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)