diff options
author | David Hewitt <1939362+davidhewitt@users.noreply.github.com> | 2020-01-15 22:14:07 +0000 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2020-01-15 23:14:07 +0100 |
commit | f54aabfe9295902b6bbe0db115186ca26f1956b0 (patch) | |
tree | aebd591cfa1d14ec2a111064e501bb0a4d431145 /font/src/ft/fc/config.rs | |
parent | 7d1edf01c2d16eedbbfb652b1e57db0f819f12c0 (diff) | |
download | alacritty-f54aabfe9295902b6bbe0db115186ca26f1956b0.tar.gz alacritty-f54aabfe9295902b6bbe0db115186ca26f1956b0.zip |
Update font crate to 2018 edition
Diffstat (limited to 'font/src/ft/fc/config.rs')
-rw-r--r-- | font/src/ft/fc/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/font/src/ft/fc/config.rs b/font/src/ft/fc/config.rs index 46a3a934..44bb9986 100644 --- a/font/src/ft/fc/config.rs +++ b/font/src/ft/fc/config.rs @@ -11,7 +11,7 @@ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. -use foreign_types::ForeignTypeRef; +use foreign_types::{foreign_type, ForeignTypeRef}; use super::ffi::{FcConfig, FcConfigDestroy, FcConfigGetCurrent, FcConfigGetFonts}; use super::{FontSetRef, SetName}; |