-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reintroduce Requires.jl since it seems to be faster now.
- Loading branch information
Showing
4 changed files
with
20 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
__precompile__() | ||
|
||
module FilePaths | ||
|
||
using Glob, MacroTools, Reexport, URIParser | ||
using Glob: GlobMatch | ||
using MacroTools | ||
using Reexport | ||
using Requires | ||
|
||
@reexport using FilePathsBase | ||
|
||
include("compat.jl") | ||
include("glob.jl") | ||
include("uri.jl") | ||
|
||
function __init__() | ||
@require Glob="c27321d9-0574-5035-807b-f59d2c89b15c" include("glob.jl") | ||
@require URIParser="30578b45-9adc-5946-b283-645ec420af67" include("uri.jl") | ||
end | ||
|
||
end # end of module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters