Skip to content

Commit 9a8f8b6

Browse files
authored
Merge pull request #1 from IanButterworth/ib/tweaks
add GlueCSV to HasGluePkgs that is unused
2 parents 4fc9df5 + 86f24fd commit 9a8f8b6

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

HasDepWithGluePkgs.jl/Manifest.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,13 @@ deps = ["Example"]
2828
path = "../HasGluePkgs.jl"
2929
uuid = "4d3288b3-3afc-4bb6-85f3-489fffe514c8"
3030
version = "0.1.0"
31-
gluedeps = ["OffsetArrays"]
31+
32+
[deps.HasGluePkgs.gluedeps]
33+
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
34+
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
3235

3336
[deps.HasGluePkgs.gluepkgs]
37+
GlueCSV = "CSV"
3438
GlueOffsetArrays = "OffsetArrays"
3539

3640
[[deps.Libdl]]

HasDepWithGluePkgs.jl/src/HasDepWithGluePkgs.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ using OffsetArrays: OffsetArray
55
# Loading OffsetArrays makes the glue module "GlueOffsetArrays" to load
66

77
function do_something()
8-
@info "First do something with the basic array support in B"
8+
@info "First do something with the basic array support in HasGluePkgs"
99
HasGluePkgs.foo(rand(Float64, 2))
1010

11-
@info "Now do something with extended OffsetArray support in B"
11+
@info "Now do something with extended OffsetArray support in HasGluePkgs"
1212
HasGluePkgs.foo(OffsetArray(rand(Float64, 2), 0:1))
1313
end
1414

HasGluePkgs.jl/Project.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ Example = "7876af07-990d-54b4-ab0e-23690620f79a"
77

88
[gluedeps]
99
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
10+
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
1011

1112
[gluepkgs]
1213
GlueOffsetArrays = "OffsetArrays"
14+
GlueCSV = "CSV"
1315

1416
[compat]
1517
Example = "0.5"

0 commit comments

Comments
 (0)