From 769adbe2f2ad4a9b79475149175ba210ce80730f Mon Sep 17 00:00:00 2001 From: Tim Holy Date: Wed, 9 Feb 2022 05:36:24 -0600 Subject: [PATCH] Use concrete types in `MimeExt` Code generated to work on this Dict shows up as a minor source of invalidation when loading packages that define new `AbstractString` types. --- src/Mime_ext.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mime_ext.jl b/src/Mime_ext.jl index 675e193..30a9312 100644 --- a/src/Mime_ext.jl +++ b/src/Mime_ext.jl @@ -2,7 +2,7 @@ module Mime_ext export MimeExt -MimeExt = Dict{AbstractString,AbstractString}( +MimeExt = Dict{String,String}( "ez" => "application/andrew-inset", "anx" => "application/annodex", "atom" => "application/atom+xml",