Skip to content

Commit

Permalink
Move mapper away from Ref
Browse files Browse the repository at this point in the history
  • Loading branch information
Janis Erdmanis committed Apr 29, 2024
1 parent 8227788 commit 49509b6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ version = "0.1.1"

[[deps.DataStructures]]
deps = ["Compat", "InteractiveUtils", "OrderedCollections"]
git-tree-sha1 = "0f4b5d62a88d8f59003e43c25a8a90de9eb76317"
git-tree-sha1 = "1d0a14036acb104d9e89698bd408f63ab58cdc82"
uuid = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
version = "0.18.18"
version = "0.18.20"

[[deps.Dates]]
deps = ["Printf"]
Expand Down Expand Up @@ -125,9 +125,9 @@ version = "6.2.1+6"

[[deps.HTTP]]
deps = ["Base64", "CodecZlib", "ConcurrentUtilities", "Dates", "ExceptionUnwrapping", "Logging", "LoggingExtras", "MbedTLS", "NetworkOptions", "OpenSSL", "Random", "SimpleBufferStream", "Sockets", "URIs", "UUIDs"]
git-tree-sha1 = "8e59b47b9dc525b70550ca082ce85bcd7f5477cd"
git-tree-sha1 = "2c3ec1f90bb4a8f7beafb0cffea8a4c3f4e636ab"
uuid = "cd3eb016-35fb-5094-929b-558a96fad6f3"
version = "1.10.5"
version = "1.10.6"

[[deps.HistoryTrees]]
git-tree-sha1 = "5e0e766befebd2108cef8e3a14cf715c8496cb2e"
Expand All @@ -136,9 +136,9 @@ version = "0.2.0"

[[deps.Infiltrator]]
deps = ["InteractiveUtils", "Markdown", "REPL", "UUIDs"]
git-tree-sha1 = "199dbd38ff8c03d694f73cdc605b1208e553f7e8"
git-tree-sha1 = "663ecbf362df6a7775bbb56b4bddcea0b291cb01"
uuid = "5903a43b-9cc3-4c30-8d17-598619ec4e9b"
version = "1.8.0"
version = "1.8.2"

[[deps.IntegerMathUtils]]
git-tree-sha1 = "b8ffb903da9f7b8cf695a8bead8e01814aa24b30"
Expand Down Expand Up @@ -281,9 +281,9 @@ version = "0.3.23+4"

[[deps.OpenSSL]]
deps = ["BitFlags", "Dates", "MozillaCACerts_jll", "OpenSSL_jll", "Sockets"]
git-tree-sha1 = "af81a32750ebc831ee28bdaaba6e1067decef51e"
git-tree-sha1 = "38cb508d080d21dc1128f7fb04f20387ed4c0af4"
uuid = "4d8831e6-92b7-49fb-bdf8-b643e874388c"
version = "1.4.2"
version = "1.4.3"

[[deps.OpenSSL_jll]]
deps = ["Artifacts", "JLLWrappers", "Libdl"]
Expand All @@ -297,10 +297,10 @@ uuid = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
version = "1.6.3"

[[deps.Oxygen]]
deps = ["DataStructures", "Dates", "HTTP", "JSON3", "MIMEs", "Reexport", "RelocatableFolders", "Requires", "Sockets", "Statistics"]
git-tree-sha1 = "d58b409bf44de000aeff1ea1a4ed867ac257c9aa"
deps = ["DataStructures", "Dates", "HTTP", "JSON3", "MIMEs", "Reexport", "RelocatableFolders", "Requires", "Sockets", "Statistics", "StructTypes"]
git-tree-sha1 = "79c718eb17b6afc983ceed2688562764d90538be"
uuid = "df9a0d86-3283-4920-82dc-4555fc0d1d8b"
version = "1.5.5"
version = "1.5.6"

[[deps.Parsers]]
deps = ["Dates", "PrecompileTools", "UUIDs"]
Expand Down
2 changes: 1 addition & 1 deletion src/Server/Controllers/registrar.jl
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Represents a state for token registrar service. To initialize the service it's n
Metadata is used as means to securelly deliver to the client most recent server specification.
**Interface:** [`hmac`](@ref), [`hasher`](@ref), [`key`](@ref), [`id`](@ref), [`tickets`](@ref), [`in`](@ref), [`enlist!`](@ref), [`admit!`](@ref), [`isadmitted`](@ref), [`ticket_status`](@ref)
**Interface:** [`hmac`](@ref), [`hasher`](@ref), [`key`](@ref), [`id`](@ref), [`tickets`](@ref), [`in`](@ref), [`enlist!`](@ref), [`admit!`](@ref), [`isadmitted`](@ref)
"""
mutable struct Registrar
demehash::Digest
Expand Down

0 comments on commit 49509b6

Please sign in to comment.