Replies: 2 comments
-
The server functions currently depend on |
Beta Was this translation helpful? Give feedback.
0 replies
-
Yep, I might have added cbor for some early testing, but we are only using ciborium now. If you see that as a dep somewhere, let us know. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I can't help but notice the current server functions are dependending on
serde_urlencoded
or thecbor
crate. After further checking cbor is actually unmaintained, as written in the first line of its README.Andrew Gallant has linked to
serde_cbor
which is also unmaintained, but the author linkedciborium
andminicbor
which looks maintained. Both looks good and I am leaning towardsciborium
as it depends onserde
(we already hasserde_urlencoded
so it should be good).Personally I have no problems using the current cbor dependencies but it would be nice to have a properly maintained dependencies moving forward.
If you have no problems in changing current cbor dependency, I would like to create an issue on work on this.
Beta Was this translation helpful? Give feedback.
All reactions