Skip to content

Commit

Permalink
Change DataStructures to OrderedCollections (#8)
Browse files Browse the repository at this point in the history
This patch changes the indirect dependency on `OrderedCollections` (
`DataStructures` -> `OrderedCollections`) to a direct dependency on
`OrderedCollections`.
  • Loading branch information
fredrikekre authored Jul 12, 2023
1 parent 374a126 commit 80cdee8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ version = "1.0.0-dev"

[deps]
Bibliography = "f1be7e48-bf82-45af-a471-ae754a193061"
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"

[compat]
Bibliography = "^0.2"
DataStructures = "0.18"
Documenter = "0.27"
OrderedCollections = "1"
julia = "^1.6"
2 changes: 1 addition & 1 deletion src/DocumenterCitations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ using Documenter.Writers.HTMLWriter
using Markdown
using Bibliography
using Bibliography: xyear, xlink, xtitle
using DataStructures: OrderedDict, OrderedSet
using OrderedCollections: OrderedDict, OrderedSet
using Unicode

export CitationBibliography
Expand Down

0 comments on commit 80cdee8

Please sign in to comment.