Skip to content

Commit 258eaa5

Browse files
committed
Initial commit
0 parents  commit 258eaa5

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

Project.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name = "Artifacts"
2+
uuid = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
3+
version = "1.3.0"
4+
5+
[deps]
6+
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
7+
8+
[extras]
9+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
10+
11+
[targets]
12+
test = ["Test"]

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Artifacts.jl
2+
3+
This is a wrapper package meant to bridge the gap for packages that want to use the [`Artifacts`](https://github.com/JuliaLang/julia/tree/master/stdlib/Artifacts) as a dependency within packages that still support Julia versions older than 1.6.

src/Artifacts.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module Artifacts
2+
using Pkg.Artifacts
3+
export artifact_exists, artifact_path, artifact_meta, artifact_hash,
4+
find_artifacts_toml, @artifact_str
5+
end

0 commit comments

Comments
 (0)