libzymod-rust 1.0.6

智眼Rust SDK
docs.rs failed to build libzymod-rust-1.0.6
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默认源,如果想要本地实时开发/测试代码,需要做以下设置

1.克隆源代码

git clone 
cd libzymod-rust

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

touch ../Cargo.toml

3.编辑Cargo.toml

vim ../Cargo.toml

4.填入一下内容:

[workspace]

members = [
    "XXX",//需要实时更新SDK的项目名称
]

[patch.crates-io]
libzymod-rust = { path = '../../../libzymod-rust' }//SDK所在的绝对路径

5.在项目中直接更新即可:

cargo build

使用

在文件中添加:

extern crate zymod;