22 lines
683 B
TOML
22 lines
683 B
TOML
[package]
|
|
name = "sal-rfs-client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "SAL RFS Client - Client library for Remote File System server"
|
|
repository = "https://git.threefold.info/herocode/sal"
|
|
license = "Apache-2.0"
|
|
keywords = ["rfs", "client", "filesystem", "remote"]
|
|
categories = ["filesystem", "api-bindings"]
|
|
|
|
[dependencies]
|
|
openapi = { path = "./openapi" }
|
|
thiserror.workspace = true
|
|
url.workspace = true
|
|
reqwest = { workspace = true, features = ["json", "multipart"] }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
log.workspace = true
|
|
bytes.workspace = true
|
|
futures.workspace = true
|