about summary refs log tree commit diff
path: root/src/vendor/toml/tests/valid/table-array-implicit.json
diff options
context:
space:
mode:
authorEduard-Mihai Burtescu <edy.burt@gmail.com>2016-11-09 20:51:17 +0200
committerGitHub <noreply@github.com>2016-11-09 20:51:17 +0200
commit3d2ffa06ea4e04dbda99d7038e9afd04c040b472 (patch)
tree5a478d7f580a011424fc88ee25fd39141764b84b /src/vendor/toml/tests/valid/table-array-implicit.json
parente10e49d815a0b4cd362e652f9855592b7918e711 (diff)
parent31a8638e5e716bec90f4398a57c58fb34e492667 (diff)
downloadrust-3d2ffa06ea4e04dbda99d7038e9afd04c040b472.tar.gz
rust-3d2ffa06ea4e04dbda99d7038e9afd04c040b472.zip
Rollup merge of #37524 - alexcrichton:vendor, r=brson
Vendor all rustbuild dependencies in this repo

This commit vendors all crates.io dependencies into the rust-lang/rust repository using the `cargo-vendor` tool. This is done in an effort to make rustbuild distro-ready by ensuring that our source tarballs are self-contained units which don't need extraneous network downloads.

A new `src/vendor` directory is created with all vendored crates, and Cargo, when using rustbuild, is configured to use this directory. Over time we can deduplicate this directory with the actual src tree (e.g. src/librustc_serialize, src/liblibc, src/libgetopts, ...). For now though that's left to a separate commit.
Diffstat (limited to 'src/vendor/toml/tests/valid/table-array-implicit.json')
-rw-r--r--src/vendor/toml/tests/valid/table-array-implicit.json7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/vendor/toml/tests/valid/table-array-implicit.json b/src/vendor/toml/tests/valid/table-array-implicit.json
new file mode 100644
index 00000000000..32e464012d6
--- /dev/null
+++ b/src/vendor/toml/tests/valid/table-array-implicit.json
@@ -0,0 +1,7 @@
+{
+    "albums": {
+       "songs": [
+           {"name": {"type": "string", "value": "Glory Days"}}
+       ]
+    }
+}