diff options
| author | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2019-04-10 19:47:55 +0200 |
|---|---|---|
| committer | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2019-04-15 15:20:05 +0200 |
| commit | b82ab24bbf9b6dc6bf7cdccb516ea196f3d0a71f (patch) | |
| tree | cc2941b2bc27a547ef8b4add9cf536b70f8824a7 /src/libsyntax/Cargo.toml | |
| parent | fcf850f34a4db4baa3ccda0e8e2e53eca5fc9936 (diff) | |
| download | rust-b82ab24bbf9b6dc6bf7cdccb516ea196f3d0a71f.tar.gz rust-b82ab24bbf9b6dc6bf7cdccb516ea196f3d0a71f.zip | |
Preallocate BUILTIN_ATTRIBUTES symbols and use a hash map instead of looping
Diffstat (limited to 'src/libsyntax/Cargo.toml')
| -rw-r--r-- | src/libsyntax/Cargo.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libsyntax/Cargo.toml b/src/libsyntax/Cargo.toml index 71c2ab82f65..b48f3c9b8b8 100644 --- a/src/libsyntax/Cargo.toml +++ b/src/libsyntax/Cargo.toml @@ -14,8 +14,10 @@ bitflags = "1.0" serialize = { path = "../libserialize" } log = "0.4" scoped-tls = "1.0" +lazy_static = "1.0.0" syntax_pos = { path = "../libsyntax_pos" } errors = { path = "../librustc_errors", package = "rustc_errors" } rustc_data_structures = { path = "../librustc_data_structures" } +rustc_macros = { path = "../librustc_macros" } rustc_target = { path = "../librustc_target" } smallvec = { version = "0.6.7", features = ["union", "may_dangle"] } |
