19 Star 251 Fork 71

Neil-鹏 / wechat-rs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Cargo.toml 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
Neil-鹏 提交于 2022-04-12 21:33 . 调整目录规划结构
[package]
authors = ["shaipe <shaipe@sina.com>"]
edition = "2021"
name = "wechat"
version = "0.2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
yaml-rust = "0.4.5"
wechat_sdk = {path = "sdk", version = "0.2.0"}
# 公众号对接
wechat_mp = {path = "mp", version = "0.2.0"}
# 开放平台
wechat_open = {path = "open", version = "0.2.0", optional = true}
# 微信支付
wechat_pay = {path = "pay", version = "0.2.0", optional = true}
# 微信小店
wechat_store = {path = "store", version = "0.2.0", optional = true}
# 微信小程序
wechat_weapp = {path = "weapp", version = "0.2.0", optional = true}
# 企业微信服务端对接
wechat_work = {path = "work", version = "0.2.0", optional = true}
[dev-dependencies]
actix-rt = "2.7.0"
actix-web = "4.0.1"
serde_json = "1.0.79"
[features]
default = []
full = ["wechat_pay", "wechat_store", "wechat_work"]
open = ["wechat_open"]
pay = ["wechat_pay"]
store = ["wechat_store"]
weapp = ["wechat_weapp"]
work = ["wechat_work"]
[workspace]
members = [
"web/actix", # 基于actix-web应用 # "web/axum", # 基于Axum框架的demo
"weapp", # 小程序
"work", # 企业微信
"open", # 开放平台
"mp", # 公众号
"store",
"sdk", # 工具类
"redis",
]
Rust
1
https://gitee.com/shaipe/wechat-rs.git
git@gitee.com:shaipe/wechat-rs.git
shaipe
wechat-rs
wechat-rs
master

搜索帮助