diff options
author | Sam Scott <sam@osohq.com> | 2020-12-06 23:43:32 -0500 |
---|---|---|
committer | Sam Scott <sam@osohq.com> | 2020-12-06 23:43:48 -0500 |
commit | b7b2520107ecfca77520151c6dc3002442bf0f0b (patch) | |
tree | be49c18915bac69746fcbc2bfb3641b3994a83d1 /src/lib.rs | |
parent | 3f77d51edcc0575df5204152cb0dd960604244dc (diff) |
Serialize bytes as percent-encoded data.
Fixes #40.
Thanks to @faulesocke for reporting.
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 44 |
1 files changed, 0 insertions, 44 deletions
@@ -160,50 +160,6 @@ //! //! Support for `actix-web 2.0.0` is available via the `actix2` feature. -#![allow()] -#![deny( - arithmetic_overflow, - const_err, - dead_code, - deprecated, - improper_ctypes, - missing_docs, - mutable_transmutes, - no_mangle_const_items, - non_camel_case_types, - non_shorthand_field_patterns, - non_snake_case, - non_upper_case_globals, - overflowing_literals, - path_statements, - stable_features, - trivial_casts, - trivial_numeric_casts, - unconditional_recursion, - unknown_crate_types, - unknown_lints, - unreachable_code, - unsafe_code, - unstable_features, - unused_allocation, - unused_assignments, - unused_attributes, - unused_comparisons, - unused_extern_crates, - unused_features, - unused_imports, - unused_import_braces, - unused_must_use, - unused_mut, - unused_parens, - unused_qualifications, - unused_results, - unused_unsafe, - unused_variables, - variant_size_differences, - while_true -)] - #[macro_use] extern crate serde; |