diff options
| author | Ryan Leung <rleungx@gmail.com> | 2018-04-28 15:08:58 +0800 |
|---|---|---|
| committer | Seiichi Uchida <seuchida@gmail.com> | 2018-04-28 16:08:58 +0900 |
| commit | fb9a5add9b651d64ecf365ade61d83d76fd6b307 (patch) | |
| tree | cdf9351a18606562427ba8afc7e262575edec942 /src/utils.rs | |
| parent | d19fc450c06cd480ef2b9e1031b55ff10df080a7 (diff) | |
add rustc_target to dependencies (#2660)
Diffstat (limited to 'src/utils.rs')
| -rw-r--r-- | src/utils.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utils.rs b/src/utils.rs index 2493c9a5c74..115aee7dd2b 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -10,10 +10,11 @@ use std::borrow::Cow; +use rustc_target::spec::abi; use syntax::ast::{self, Attribute, CrateSugar, MetaItem, MetaItemKind, NestedMetaItem, NestedMetaItemKind, Path, Visibility, VisibilityKind}; use syntax::codemap::{BytePos, Span, NO_EXPANSION}; -use syntax::{abi, ptr}; +use syntax::ptr; use config::Color; use rewrite::RewriteContext; |
