crystal-cbor/src/cbor.cr

27 lines
510 B
Crystal
Raw Permalink Normal View History

2020-04-24 11:57:12 +02:00
require "big"
2020-04-17 14:32:43 +02:00
require "./cbor/**"
module CBOR
VERSION = "0.1.0"
# Represents CBOR types
2020-04-21 15:02:31 +02:00
alias Type = Nil |
Bool |
String |
Bytes |
Array(Type) |
Hash(Type, Type) |
Int8 |
UInt8 |
Int16 |
UInt16 |
Int32 |
UInt32 |
Int64 |
UInt64 |
Int128 |
Float32 |
Float64
2020-04-17 14:32:43 +02:00
end