Skip to content

Latest commit

 

History

History
280 lines (239 loc) · 16.6 KB

encoding.md

File metadata and controls

280 lines (239 loc) · 16.6 KB

Bookmarks tagged [encoding]

https://www.base64decode.org/

Simple base64 online encoder and decoder


https://www.talisman.org/~erlkonig/misc/lunatech%5Ewhat-every-webdev-must-know-about-url-encoding/

This article describes common misconceptions about Uniform Resource Locator (URL) encoding, then attempts to clarify URL encoding for HTTP, before presenting frequent problems and their solutions. Whi...


https://github.com/alex/rust-asn1

A Rust ASN.1 (DER) serializer


https://github.com/arjantop/rust-bencode

Bencode implementation in Rust


https://github.com/arcnmx/nue

I/O and binary data encoding for Rust


https://github.com/TyOverby/bincode

A binary encoder/decoder in Rust


https://github.com/zonyitoo/bson-rs


https://github.com/BurntSushi/byteorder

Supports big-endian, little-endian and native byte orders


https://github.com/capnproto/capnproto-rust


https://github.com/lifthrasiir/rust-encoding


https://github.com/mrhooray/crc-rs


https://github.com/BurntSushi/rust-csv

A fast and flexible CSV reader and writer, with support for Serde


https://google.github.io/flatbuffers/


https://github.com/frol/flatc-rust

FlatBuffers compiler (flatc) integration for Cargo build scripts


https://github.com/mandrean/har-rs

A HTTP Archive Format (HAR) serialization & deserialization library Build Status


https://github.com/servo/html5ever

High-performance browser-grade HTML5 parser


https://github.com/veddan/rust-htmlescape

encoding/decoding HTML entities


https://github.com/pikkr/pikkr

JSON parser which picks up values directly without performing tokenization in Rust


https://github.com/serde-rs/json

JSON support for Serde framework


https://github.com/maciejhirsz/json-rust

JSON implementation in Rust


https://github.com/Qihoo360/rust-jsonnet


https://github.com/3Hren/msgpack-rust

A pure Rust low/high level MessagePack implementation


https://github.com/jcreekmore/pem-rs

A Rust based way to parse and encode PEM-encoded data


https://github.com/mandrean/postman-collection-rs

A Postman Collection v1, v2 & v2.1 serialization & deserialization library [Build Status](https://travis-ci.org/mandrean/...


https://github.com/danburkert/prost


https://github.com/stepancheg/rust-protobuf


https://github.com/ron-rs/ron


https://github.com/erickt/rust-tnetstring


https://github.com/alexcrichton/toml-rs


https://github.com/tafia/quick-xml

High performance XML pull reader/writer


https://github.com/Florob/RustyXML

an XML parser written in Rust


https://github.com/shepmaster/sxd-document

An XML library in Rust


https://github.com/shepmaster/sxd-xpath

An XPath library in Rust


https://github.com/netvl/xml-rs

A streaming XML library


https://github.com/media-io/yaserde

Yet Another Serializer/Deserializer specialized for XML


https://github.com/chyh1990/yaml-rust

The missing YAML 1.2 implementation for Rust.


https://github.com/kimhyunkang/libyaml-rust

libyaml bindings


https://github.com/vitiral/stfu8

Sorta Text Format in UTF-8


https://mathiasbynens.be/notes/javascript-encoding

Does JavaScript use UCS-2 or UTF-16 encoding? Since I couldn’t find a definitive answer to this question anywhere, I decided to look into it. The answer depends on what you’re referring to: the JavaSc...


http://stackoverflow.com/questions/144283/what-is-the-difference-between-varchar-and-nvarchar

An nvarchar column can store any Unicode data. A varchar column is restricted to an 8-bit codepage. Some people think that varchar should be used because it takes up less space. I believe this is ...