You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A C# and Java implementation of Concise Binary Object Representation, a general-purpose binary data format defined in RFC 7049. According to that RFC, CBOR's data model "is an extended version of the JSON data model", supporting many more types of data than JSON. "CBOR was inspired by MessagePack", but "is not intended as a version of or replacement for MessagePack."
4
+
A Java implementation of Concise Binary Object Representation, a general-purpose binary data format defined in RFC 7049. According to that RFC, CBOR's data model "is an extended version of the JSON data model", supporting many more types of data than JSON. "CBOR was inspired by MessagePack", but "is not intended as a version of or replacement for MessagePack."
5
5
6
6
This implementation was written by Peter O. and is released to the Public Domain under the [CC0 Declaration](http://creativecommons.org/publicdomain/zero/1.0/).
7
7
@@ -11,12 +11,6 @@ Finally, this implementation supports arbitrary-precision binary and decimal flo
11
11
12
12
How to Install
13
13
---------
14
-
Starting with version 0.21.0, the C# implementation is available in the
15
-
NuGet Package Gallery under the name
16
-
[PeterO.Cbor](https://www.nuget.org/packages/PeterO.Cbor). To install
17
-
this library as a NuGet package, enter `Install-Package PeterO.Cbor` in the
18
-
NuGet Package Manager Console.
19
-
20
14
Starting with version 0.23.0, the Java implementation is available
21
15
as an [artifact](https://search.maven.org/#search|ga|1|g%3A%22com.upokecenter%22%20AND%20a%3A%22cbor%22) in the Central Repository. To add this library to a Maven
22
16
project, add the following to the `dependencies` section in your `pom.xml` file:
@@ -39,78 +33,11 @@ This library defines one class, called CBORObject, that allows you to read and
39
33
write CBOR objects to and from data streams and byte arrays, and to convert JSON
40
34
text to CBOR objects and back.
41
35
42
-
See the [Wiki](https://github.com/peteroupc/CBOR/wiki) for Java API documentation.
43
-
44
-
See [docs/APIDocs.md](https://github.com/peteroupc/CBOR/blob/master/docs/APIDocs.md) for C# (.NET) API documentation.
45
-
46
-
More About the Different Versions
47
-
-----------
48
-
49
-
This repository contains code in two languages: C# and Java.
50
-
C# is the main language of the project, and the C# implementation has the most features.
51
-
52
-
The C# implementation is designed as a Portable Class Library, making it usable not only in the .NET
53
-
Framework, but also Silverlight 5 and Windows Phone 8.
54
-
55
-
The Java version is a translation from the C# version. It contains almost as many features as the C# version
56
-
and has all the important ones, such as reading and writing CBOR objects,
57
-
CBOR/JSON conversion, and support for decimal fractions and bigfloats.
58
-
36
+
See the [Wiki](https://github.com/peteroupc/CBOR-Java/wiki) for Java API documentation.
59
37
Examples
60
38
----------
61
39
62
-
This code is in C#, but the Java version of the code would be very similar.
0 commit comments