Initial attempt at no_std

This commit is contained in:
Ivan Smirnov 2022-01-03 17:14:01 +03:00
commit 5469530c64
8 changed files with 83 additions and 27 deletions

View file

@ -16,7 +16,9 @@ exclude = [
]
[features]
default = []
default = ["std"]
alloc = [] # provides access to `Vec` without enabling `std` mode
std = [] # std mode (enabled by default) - provides access to `std::io`, `Error` and `Vec`
reference = [] # follows reference encoder implementation precisely, but may be slightly slower
[dependencies]