Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove redundant dependency on OrderedCollections.jl #73

Merged
merged 1 commit into from
Oct 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ CompTime = "0fb5dd42-039a-4ca4-a1d7-89a96eae6d39"
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
MLStyle = "d8e11817-5142-5d16-987a-aa16d5891078"
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
Permutations = "2ae35dd2-176d-5d53-8349-f30d82d94d4f"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
PrettyTables = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
Expand All @@ -33,7 +32,6 @@ CompTime = "0.1"
DataStructures = "0.18"
JSON = "0.21"
MLStyle = "0.4"
OrderedCollections = "1"
Permutations = "0.4"
PrettyTables = "2.2"
Reexport = "1"
Expand Down
2 changes: 1 addition & 1 deletion src/serialization/JSONACSets.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export generate_json_acset, parse_json_acset, read_json_acset, write_json_acset,
read_json_acset_schema, write_json_acset_schema, acset_schema_json_schema

import JSON
using OrderedCollections: OrderedDict
using DataStructures: OrderedDict
import Pkg
import Tables

Expand Down