wechat-vendor-sdk 0.3.14

wechat miniprogram and wechat corp sdk (微信小程序、公众号和企业微信部分 sdk 封装)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! You can use `RUST_LOG=wechat_vendor_sdk=trace cargo run` to get response tracing log when getting such as `WxcorpResDeserializeErr` error
//!
#![cfg_attr(docsrs, feature(doc_cfg))]

pub mod common;

#[cfg(feature = "wxcorp")]
#[cfg_attr(docsrs, doc(cfg(feature = "wxcorp")))]
pub mod wxcorp;
#[cfg(feature = "wxmini")]
#[cfg_attr(docsrs, doc(cfg(feature = "wxmini")))]
pub mod wxmini;

#[cfg(feature = "wxpay")]
#[cfg_attr(docsrs, doc(cfg(feature = "wxpay")))]
pub mod wxpay;