Skip to content

Commit 2581b14

Browse files
committed
bootstrap: Add a bunch of Cargo.toml files
These describe the structure of all our crate dependencies.
1 parent 7cbd245 commit 2581b14

File tree

41 files changed

+642
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+642
-0
lines changed

src/liballoc/Cargo.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[package]
2+
authors = ["The Rust Project Developers"]
3+
name = "alloc"
4+
version = "0.0.0"
5+
6+
[lib]
7+
name = "alloc"
8+
path = "lib.rs"
9+
test = false
10+
11+
[dependencies]
12+
core = { path = "../libcore" }
13+
libc = { path = "../rustc/libc_shim" }
14+
alloc_system = { path = "../liballoc_system" }

src/liballoc_jemalloc/Cargo.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[package]
2+
authors = ["The Rust Project Developers"]
3+
name = "alloc_jemalloc"
4+
version = "0.0.0"
5+
build = "build.rs"
6+
links = "jemalloc"
7+
8+
[lib]
9+
name = "alloc_jemalloc"
10+
path = "lib.rs"
11+
test = false
12+
13+
[dependencies]
14+
core = { path = "../libcore" }
15+
libc = { path = "../rustc/libc_shim" }
16+
17+
[build-dependencies]
18+
build_helper = { path = "../build_helper" }
19+
gcc = "0.3.17"
20+
21+
[features]
22+
debug = []

src/liballoc_system/Cargo.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[package]
2+
authors = ["The Rust Project Developers"]
3+
name = "alloc_system"
4+
version = "0.0.0"
5+
6+
[lib]
7+
name = "alloc_system"
8+
path = "lib.rs"
9+
test = false
10+
11+
[dependencies]
12+
core = { path = "../libcore" }
13+
libc = { path = "../rustc/libc_shim" }

src/libarena/Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[package]
2+
authors = ["The Rust Project Developers"]
3+
name = "arena"
4+
version = "0.0.0"
5+
6+
[lib]
7+
name = "arena"
8+
path = "lib.rs"
9+
crate-type = ["dylib"]

src/libcollections/Cargo.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[package]
2+
authors = ["The Rust Project Developers"]
3+
name = "collections"
4+
version = "0.0.0"
5+
6+
[lib]
7+
name = "collections"
8+
path = "lib.rs"
9+
test = false
10+
11+
[dependencies]
12+
alloc = { path = "../liballoc" }
13+
core = { path = "../libcore" }
14+
rustc_unicode = { path = "../librustc_unicode" }

src/libcore/Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[package]
2+
authors = ["The Rust Project Developers"]
3+
name = "core"
4+
version = "0.0.0"
5+
6+
[lib]
7+
name = "core"
8+
path = "lib.rs"
9+
test = false

src/libflate/Cargo.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[package]
2+
authors = ["The Rust Project Developers"]
3+
name = "flate"
4+
version = "0.0.0"
5+
build = "build.rs"
6+
7+
[lib]
8+
name = "flate"
9+
path = "lib.rs"
10+
crate-type = ["dylib"]
11+
12+
[build-dependencies]
13+
build_helper = { path = "../build_helper" }
14+
gcc = "0.3"

src/libfmt_macros/Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[package]
2+
authors = ["The Rust Project Developers"]
3+
name = "fmt_macros"
4+
version = "0.0.0"
5+
6+
[lib]
7+
name = "fmt_macros"
8+
path = "lib.rs"
9+
crate-type = ["dylib"]

src/libgetopts/Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[package]
2+
authors = ["The Rust Project Developers"]
3+
name = "getopts"
4+
version = "0.0.0"
5+
6+
[lib]
7+
name = "getopts"
8+
path = "lib.rs"
9+
crate-type = ["dylib", "rlib"]

src/libgraphviz/Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[package]
2+
authors = ["The Rust Project Developers"]
3+
name = "graphviz"
4+
version = "0.0.0"
5+
6+
[lib]
7+
name = "graphviz"
8+
path = "lib.rs"
9+
crate-type = ["dylib"]

0 commit comments

Comments
 (0)