diff options
| author | Erick Tryzelaar <erick.tryzelaar@gmail.com> | 2014-07-29 17:06:37 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-07-31 07:30:49 -0700 |
| commit | e1dcbefe52d4c5877602a17270cf5a1b6882c232 (patch) | |
| tree | d28cb87692062adc2f25336573e7937289f2e259 /src/libserialize/lib.rs | |
| parent | ea1b6376540ed559ed5d95567c613511390bc578 (diff) | |
| download | rust-e1dcbefe52d4c5877602a17270cf5a1b6882c232.tar.gz rust-e1dcbefe52d4c5877602a17270cf5a1b6882c232.zip | |
remove serialize::ebml, add librbml
Our implementation of ebml has diverged from the standard in order to better serve the needs of the compiler, so it doesn't make much sense to call what we have ebml anyore. Furthermore, our implementation is pretty crufty, and should eventually be rewritten into a format that better suits the needs of the compiler. This patch factors out serialize::ebml into librbml, otherwise known as the Really Bad Markup Language. This is a stopgap library that shouldn't be used by end users, and will eventually be replaced by something better. [breaking-change]
Diffstat (limited to 'src/libserialize/lib.rs')
| -rw-r--r-- | src/libserialize/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libserialize/lib.rs b/src/libserialize/lib.rs index 5cb272a19eb..5c35ad85233 100644 --- a/src/libserialize/lib.rs +++ b/src/libserialize/lib.rs @@ -39,6 +39,5 @@ mod serialize; mod collection_impls; pub mod base64; -pub mod ebml; pub mod hex; pub mod json; |
