Commit Graph

58 Commits

Author SHA1 Message Date
Lena Hellström 2267f2e91b add usage manifesto 2025-05-14 13:55:06 +02:00
Lena Hellström 1309fbb069 remove prerelease warning 2025-03-06 18:16:23 +01:00
Trangar bd694430e4 2.0.0 stable (#742)
Prepare for 2.0.0 stable release

---------

Co-authored-by: Zoey Riordan <zoey@dos.cafe>
2025-03-06 16:58:40 +00:00
Evan 7f252bb873 Add prerelease warning to readme.md (#728)
It will be helpful to point users of the library to code examples that will work for them.
2024-10-29 08:23:21 +01:00
trevyn cb46ce13b4 Move generated files to `target/generated/bincode` (#600) 2022-11-03 09:13:09 +01:00
Ajeet D'Souza 8eac3e9d4f Add zoxide under Bincode in the Wild (#525) 2022-03-15 15:21:00 +01:00
poljar 306a772835 Fix a bunch of typos (#492) 2022-01-25 12:13:38 +01:00
Trangar 59b787cbf8 Moved Configuration::standard() and ::legacy() to the config module (#481)
* Moved Configuration::standard() and ::legacy() to the config module

* Fixed issue with config that would overwrite the limit, added a checklist on adding config variables
2022-01-19 16:46:25 +01:00
Trangar 5e9186ea8f Updated readme for bincode 2. Added a paragraph on why we don't support #[repr(u8)] (#461) 2022-01-03 19:53:12 +01:00
Trangar 404946f12b [Breaking change] Made all `decode_from_slice` also return the number of bytes read (#445) 2021-12-11 15:51:50 +01:00
Trangar 0c13c891c5 Updated readme.md and added a test for the examples (#417)
* Updated readme.md and added a test for the examples

* Removed tests/readme.rs and made the readme doctest a (hidden) part of lib.rs
2021-10-25 10:26:23 +02:00
Lena Hellström e1aed75f14 Update logo (#407) 2021-10-07 14:25:53 +02:00
Lena Hellström 1a76db8540 Fix CI on trunk (#408)
CI was currently broken for two reasons

    trunk was not compliant with the 1.41 MSRV check
    clippy had new warnings

Since bincode 2.0 is not even in alpha yet MSRV should not be locked in place. This PR removes the MSRV checks for now. Additionally the few clippy warnings have been resolved.
2021-10-07 14:20:55 +02:00
Nathan McCarty ed3c6f0712 Add matrix chat badge to readme 2021-08-17 05:23:12 +00:00
Alex Touchet 9f5bcee5dd Edit version badge link (#389)
Co-authored-by: Nathan McCarty <nathan@mccarty.io>
2021-06-13 20:33:52 +00:00
Alex Touchet cd58cf2e7e Update URLs and some cleanups (#383)
* Update URLs and some cleanups

* Capitalize Rust

* Remove accidental directory

* Update URLs and some cleanups

* Update URL

* Capitalize Rust
2021-04-09 14:46:05 +02:00
Lena Hellström e39a047b4b prep branch for 2.0 work (#379)
* prep branch for 2.0 work

* switch to 2018 edition

* fix clippy issues

* fix tests

* fix warnings

* fix formatting
2021-04-08 14:54:31 +02:00
Lena Hellström e15b8e911a clarify msrv support (#375)
* clarify msrv support

* pin byteorder to valid versions
2021-02-23 11:47:56 -08:00
Marc Brinkmann 99f22a3755 Address questions regarding suitability for storage and untrusted inputs (#346)
* Address questions regarding suitability for storage and untrusted inputs

Puts some prominent text into the `readme.md` regarding some use cases
that are likely to be common, along with a few hopefully helpful
pointers to avoid footguns.

Closes #345, closes #216, addresses #240, #266.

* Fix typos in `readme.md`

* Remove confusing sentence post 1.0, as requested
2021-02-23 05:42:24 -08:00
Lena Hellström 8839b0600d Modernize CI (#311)
Switches our CI from Travis-CI to Github Actions. At the same time this also turns on clippy and rustfmt linting.
2020-03-24 14:33:13 -07:00
Alex Touchet 30ada4acda Readme cleanup 2019-07-25 17:11:51 -04:00
atouchet 43b6c2c516 Update URLs 2019-05-24 22:36:59 -04:00
David Tolnay 107a1930b5 Update documentation to 2018 edition 2019-04-30 01:18:32 -07:00
Kevin Yap 10bdbbff33 Update README example to match #214 changes (#228) 2018-02-26 09:51:28 -08:00
Ty Overby 470aa1c703 add readme category to cargo.toml 2017-10-13 08:54:32 -07:00
David Tolnay e70bfc023b Merge pull request #186 from tshepang/foo
readme: avoid awkward language
2017-07-22 14:59:34 -07:00
Tshepang Lekhonkhobe 07b2514737 readme: deserializer/decoder actually accepts `&[u8]`, not `Vec<u8>` 2017-07-22 23:40:45 +02:00
Ty Overby e27043a036 use docs.rs for documentation 2017-07-14 13:30:39 -07:00
Nelson Chen 43712ac366 Add Debug derivation to structs of the example in README.md (#191)
The `assert_eq!` macro expects its arguments to satisfy the `Debug` trait as if and when it panics, it'll print out the `Debug` representation.
2017-07-07 15:52:22 -07:00
Tshepang Lekhonkhobe 46712f7b13 readme: follow idiom (#187) 2017-05-31 07:23:04 -07:00
Pyfisch e519476633 uint -> usize in readme 2017-05-13 17:37:46 +02:00
zhangsoledad f23e430a88 update readme (#146) 2017-03-31 09:43:33 -07:00
Artyom Kazak dbfa111e2f Fix a typo in the readme (#145) 2017-03-25 09:11:49 -07:00
slyrz 33b07e2bce Make example work with serde (#131)
* Make example work with serde

* Restore asserts
2017-03-07 10:14:46 -08:00
Kevin M Granger 01f13dc1b8 Fix small typo in readme: icp-channel -> ipc-channel (#129) 2017-03-06 14:38:06 -08:00
Ty Overby 6ece2f5866 Add a "Bincode in the wild" section (#117)
* Add a "Bincode in the wild" section

* Change wording
2017-02-23 10:21:19 -08:00
Ty Overby 24c8ce8b37 update example in readme 2015-08-12 20:16:30 -07:00
Jan-Erik Rediger 69fe369775 Fixed typos in readme 2015-05-04 23:16:19 +02:00
Ty 98fbf38c01 Add license badge 2015-04-16 14:47:26 -07:00
Ty 6cceb1f689 Add crates.io badge. 2015-04-16 14:43:39 -07:00
Mike Dilger a92429505a Update full slice syntax 2015-04-01 08:54:58 +13:00
Ty Overby 2291af38b6 floating logo 2015-02-15 12:44:11 -08:00
Ty Overby 1273f6ddf3 add logo 2015-02-15 12:36:44 -08:00
Ty Overby 793588edae update readme 2015-02-07 19:03:17 -08:00
Andrew Andkjar 2d7c25ad1e fixed a readme typo 2015-01-20 17:21:30 -05:00
Francesco Mazzoli 0be3c68164 Document some encoding details
Also, update Cargo.toml with my name.
2015-01-07 03:49:19 +01:00
TyOverby bfbaeaacd1 added size-limits to all functions. Currently the size limits aren't actually enforced. 2015-01-05 11:19:08 -08:00
Ty Overby b873c9e75f added old_orphan_check feature to tests and examples 2015-01-03 15:06:43 -08:00
Ty Overby 0b5b3653e4 update readme to reflect library changes 2015-01-03 11:31:48 -08:00
Ty Overby 00929f29dc added a size assertion to the basic example 2014-10-27 13:27:44 -07:00