libzymod-rust 2.0.3

智眼Rust SDK
docs.rs failed to build libzymod-rust-2.0.3
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

libzymod-rust

Crate

智眼模块Rust SDK

安装

从Create.io安装

Cargo.toml 依赖项内添加:

[dependencies]
libzymod-rust = "x.x.x"

本地实时开发

SDK上传至Creates.io后,想要实时更新必须使用Creates默认源,如果想要本地实时开发/测试代码,需要做以下设置

克隆源代码

git clone 
cd libzymod-rust

在要使用SDK项目的上级目录新建一个Cargo.toml文件

cat >> /home/xxxx/workspace/ZhiYanModule/Cargo.toml << EOF
[workspace]
members = [
    "zhiyan-mod-xxx",
]

[patch.crates-io]
libzymod-rust = { path = '/home/xxxx/ZhiYan/libzymod-rust' }
EOF

最终 Cargo.toml 文件内容

[workspace]
members = [
    "zhiyan-mod-xxx",
]

[patch.crates-io]
libzymod-rust = { path = '/home/xxxx/ZhiYan/libzymod-rust' }

在项目中直接更新即可

cargo build

使用

在文件中添加:

extern crate zymod;