3个版本
0.16.3 | 2022年11月13日 |
---|---|
0.16.2 | 2022年11月13日 |
0.16.1 | 2022年11月13日 |
#10 in #ipfs-api
每月26次下载
19KB
ipfs-api
组件
名称 | 文档 | 包 |
---|---|---|
ipfs-api-prelude | ||
ipfs-api-backend-actix | ||
ipfs-api-backend-hyper | ||
ipfs-api (已弃用) |
Rust库,用于通过Hyper/Actix连接到IPFS HTTP API。
使用方法
使用Hyper
要使用Hyper后端,声明
[dependencies]
ipfs-api-backend-hyper = "0.5"
您可以指定with-hyper-rustls
或with-hyper-tls
(互斥)功能以启用TLS支持。
使用Actix
要使用Actix后端,声明
[dependencies]
ipfs-api-backend-actix = "0.6"
构建者模式
使用Hyper或Actix后端,您可以指定with-builder
功能以启用在构建请求时使用的构建者模式。
使用方法(已弃用)
[dependencies]
ipfs-api = "0.16.0"
功能标志(已弃用)
您可以使用actix-web
作为后端,而不是hyper
。
[dependencies]
ipfs-api = { version = "0.16.0", features = ["with-actix"], default-features = false }
您还可以选择使用rustls
而不是本地TLS
[dependencies]
ipfs-api = { version = "0.16.0", features = ["with-hyper-rustls"], default-features = false }
要启用构建者模式(默认)使用with-builder
功能
[dependencies]
ipfs-api = { version = "0.16.0", features = ["with-hyper-rustls", "with-builder"], default-features = false }
示例
将文件写入IPFS
使用Hyper
use ipfs_api::{IpfsApi, IpfsClient};
use std::io::Cursor;
#[tokio::main]
async fn main() {
let client = IpfsClient::default();
let data = Cursor::new("Hello World!");
match client.add(data).await {
Ok(res) => println!("{}", res.hash),
Err(e) => eprintln!("error adding file: {}", e)
}
}
使用Actix
use ipfs_api::{IpfsApi, IpfsClient};
use std::io::Cursor;
#[actix_rt::main]
async fn main() {
let client = IpfsClient::default();
let data = Cursor::new("Hello World!");
match client.add(data).await {
Ok(res) => println!("{}", res.hash),
Err(e) => eprintln!("error adding file: {}", e)
}
}
从IPFS读取文件
使用Hyper
use futures::TryStreamExt;
use ipfs_api_backend_hyper::{IpfsApi, IpfsClient};
use std::io::{self, Write};
#[tokio::main]
async fn main() {
let client = IpfsClient::default();
match client
.get("/test/file.json")
.map_ok(|chunk| chunk.to_vec())
.try_concat()
.await
{
Ok(res) => {
let out = io::stdout();
let mut out = out.lock();
out.write_all(&res).unwrap();
}
Err(e) => eprintln!("error getting file: {}", e)
}
}
使用Actix
use futures::TryStreamExt;
use ipfs_api::{IpfsApi, IpfsClient};
use std::io::{self, Write};
#[actix_rt::main]
async fn main() {
let client = IpfsClient::default();
match client
.get("/test/file.json")
.map_ok(|chunk| chunk.to_vec())
.try_concat()
.await
{
Ok(res) => {
let out = io::stdout();
let mut out = out.lock();
out.write_all(&res).unwrap();
}
Err(e) => eprintln!("error getting file: {}", e)
}
}
附加示例
项目中也包含了一些示例,我用它们进行了测试
要获取示例列表,请运行
$ cargo run --example
您可以使用cargo运行任何示例
$ cargo run --example add_file
许可
许可协议为以下之一
- Apache许可证版本2.0,(LICENSE-APACHE 或 http://apache.ac.cn/licenses/LICENSE-2.0)
- MIT许可证 (LICENSE-MIT 或 http://opensource.org/licenses/MIT)
任选其一。
贡献
除非您明确声明,否则根据Apache-2.0许可证定义的任何有意提交以包含在作品中的贡献,均将按上述方式双重许可,没有任何额外的条款或条件。
依赖
~0–15MB
~222K SLoC