diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-04-15 14:28:52 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-15 14:28:52 +0100 |
| commit | d5e6d722d38b1945cbd33bf88f1ca789fc1849e3 (patch) | |
| tree | a16472c670858af9ce4030ba373e6e03e1cefc8a /examples | |
| parent | 2af777b6cbfef53bd44eb5413406ff5ed93ff18c (diff) | |
| parent | 9a5f3fed8c89bccededf80308c7c6213ae760792 (diff) | |
Merge pull request #3045 from laytan/cbor
encoding/cbor
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/all/all_main.odin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/all/all_main.odin b/examples/all/all_main.odin index f60088823..3eebdf0b0 100644 --- a/examples/all/all_main.odin +++ b/examples/all/all_main.odin @@ -59,6 +59,7 @@ import json "core:encoding/json" import varint "core:encoding/varint" import xml "core:encoding/xml" import endian "core:encoding/endian" +import cbor "core:encoding/cbor" import fmt "core:fmt" import hash "core:hash" @@ -180,6 +181,7 @@ _ :: json _ :: varint _ :: xml _ :: endian +_ :: cbor _ :: fmt _ :: hash _ :: xxhash |