Skip to content

Commit 1dd2842

Browse files
authored
Merge pull request #100 from integer32llc/playground-feature
Support crates with a "playground" feature
2 parents 156f028 + c06d1c0 commit 1dd2842

File tree

4 files changed

+576
-164
lines changed

4 files changed

+576
-164
lines changed

compiler/base/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
[package]
2+
name = "playground"
3+
version = "0.0.1"
4+
authors = ["The Rust Playground"]
5+
16
[dependencies]
27
advapi32-sys = "0.2.0"
38
aho-corasick = "0.6.2"
@@ -58,14 +63,14 @@ quote = "0.3.12"
5863
rand = "0.3.15"
5964
regex = "0.2.1"
6065
regex-syntax = "0.4.0"
61-
rust-crypto = "0.2.36"
6266
rustc-serialize = "0.3.22"
6367
rustc_version = "0.1.7"
6468
semver = "0.6.0"
6569
semver-parser = "0.7.0"
66-
serde = "0.9.6"
70+
serde = "0.9.7"
6771
serde_codegen = "0.9.0"
6872
serde_codegen_internals = "0.13.0"
73+
serde_derive = "0.9.7"
6974
serde_json = "0.9.5"
7075
siphasher = "0.2.1"
7176
slab = "0.3.0"
@@ -86,7 +91,7 @@ toml = "0.2.1"
8691
traitobject = "0.1.0"
8792
typeable = "0.1.2"
8893
unicase = "1.4.0"
89-
unicode-bidi = "0.2.4"
94+
unicode-bidi = "0.2.5"
9095
unicode-normalization = "0.1.4"
9196
unicode-segmentation = "1.1.0"
9297
unicode-width = "0.1.4"
@@ -102,8 +107,3 @@ winapi = "0.2.8"
102107
winapi-build = "0.1.1"
103108
ws2_32-sys = "0.2.1"
104109
xml-rs = "0.3.5"
105-
106-
[package]
107-
authors = ["The Rust Playground"]
108-
name = "playground"
109-
version = "0.0.1"

0 commit comments

Comments
 (0)