Skip to content

Commit 1657788

Browse files
authored
Rm v0.27 deprecation and update to JSON v1 (#1176)
1 parent db55752 commit 1657788

File tree

14 files changed

+617
-689
lines changed

14 files changed

+617
-689
lines changed

Project.toml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
1313
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
1414
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
1515
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
16-
JSON3 = "0f8b85d8-7281-11e9-16c2-39a750bddbf1"
16+
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
1717
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1818
ManifoldsBase = "3362f125-f0bb-47a3-aa74-596ffd7ef2fb"
1919
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
@@ -24,7 +24,6 @@ RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
2424
SHA = "ea8e919c-243c-51af-8825-aaa63cd721ce"
2525
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
2626
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
27-
StructTypes = "856f2bd8-1eba-4b0a-8007-ebc267875bd4"
2827
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
2928
Tar = "a4e569a6-e804-4fa4-b0f3-eef7a1d5b13e"
3029
TensorCast = "02d47bb6-7ce6-556a-be16-bb1710789e2b"
@@ -46,15 +45,15 @@ Base64 = "1.10"
4645
CSV = "0.10"
4746
CodecZlib = "0.7"
4847
Colors = "0.10, 0.11, 0.12, 0.13"
49-
DataStructures = "0.18"
5048
Dates = "1.10"
5149
Distributions = "0.23, 0.24, 0.25"
5250
DocStringExtensions = "0.8, 0.9"
5351
FileIO = "1"
5452
GraphMakie = "0.5.14, 0.6"
5553
Graphs = "1.4"
5654
InteractiveUtils = "1.10"
57-
JSON3 = "1"
55+
JSON = "1.0.0"
56+
LieGroups = "0.1"
5857
LinearAlgebra = "1.10"
5958
Manifolds = "0.9, 0.10"
6059
ManifoldsBase = "0.14, 0.15, 1"
@@ -67,19 +66,16 @@ SHA = "0.7, 1"
6766
SparseArrays = "1.10"
6867
StaticArrays = "1"
6968
Statistics = "1.10"
70-
StructTypes = "1"
7169
Tables = "v1.11.1"
7270
Tar = "1.9"
7371
TensorCast = "0.3.3, 0.4"
7472
Test = "1.10"
7573
TimeZones = "1.3.1"
7674
UUIDs = "1.10"
7775
julia = "1.10"
78-
LieGroups = "0.1"
7976

8077
[extras]
8178
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
82-
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
8379
GraphMakie = "1ecd5474-83a3-4783-bb4f-06765db800d2"
8480
LieGroups = "6774de46-80ba-43f8-ba42-e41071ccfc5f"
8581
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
@@ -89,4 +85,4 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
8985
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
9086

9187
[targets]
92-
test = ["Aqua", "Test", "DataStructures", "GraphMakie", "LinearAlgebra", "Manifolds", "Pkg", "Statistics", "LieGroups"]
88+
test = ["Aqua", "Test", "GraphMakie", "LinearAlgebra", "Manifolds", "Pkg", "Statistics", "LieGroups"]

src/DataBlobs/entities/BlobEntry.jl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,6 @@ Base.@kwdef struct Blobentry
4646
_version::VersionNumber = _getDFGVersion()
4747
end
4848

49-
StructTypes.StructType(::Type{Blobentry}) = StructTypes.UnorderedStruct()
50-
StructTypes.idproperty(::Type{Blobentry}) = :id
51-
StructTypes.omitempties(::Type{Blobentry}) = (:id,)
52-
5349
function Blobentry(label::Symbol, blobstore = :default; kwargs...)
5450
return Blobentry(; label, blobstore, kwargs...)
5551
end

0 commit comments

Comments
 (0)