summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorDenis Kayshev <topenkoff@gmail.com>2022-04-29 18:56:23 +0300
committerGitHub <noreply@github.com>2022-04-29 11:56:23 -0400
commitaaad564074864ad463e369af7f98655b01565143 (patch)
tree6f56d7d8c372308dfd24bca76d24ec217dc39d86 /src/lib.rs
parent4bd3699faba3f00dd8f59a358605abb6e485deb9 (diff)
Add axum support (#59)
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 803b401..96ce141 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -200,3 +200,6 @@ pub use de::{from_bytes, from_str};
pub use error::Error;
#[doc(inline)]
pub use ser::{to_string, to_writer, QsSerializer};
+
+#[cfg(feature = "axum")]
+pub mod axum;