summaryrefslogtreecommitdiffstats
path: root/third_party/rust/serde_urlencoded/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/serde_urlencoded/src/lib.rs')
-rw-r--r--third_party/rust/serde_urlencoded/src/lib.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/third_party/rust/serde_urlencoded/src/lib.rs b/third_party/rust/serde_urlencoded/src/lib.rs
new file mode 100644
index 0000000000..b7ccc783f5
--- /dev/null
+++ b/third_party/rust/serde_urlencoded/src/lib.rs
@@ -0,0 +1,12 @@
+//! `x-www-form-urlencoded` meets Serde
+
+#![warn(unused_extern_crates)]
+#![forbid(unsafe_code)]
+
+pub mod de;
+pub mod ser;
+
+#[doc(inline)]
+pub use crate::de::{from_bytes, from_reader, from_str, Deserializer};
+#[doc(inline)]
+pub use crate::ser::{to_string, Serializer};