summaryrefslogtreecommitdiffstats
path: root/ipfs-api/Cargo.toml
blob: 77ff907dec4b45acc2d46ae468e05d9df937c2cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name                      = "ipfs-api"
description               = "Implementation of an IPFS HTTP API client"
authors                   = ["Ferris Tseng <ferristseng@fastmail.fm>"]
edition                   = "2018"
documentation             = "https://docs.rs/ipfs-api"
repository                = "https://github.com/ferristseng/rust-ipfs-api"
keywords                  = ["ipfs"]
categories                = ["filesystem", "web-programming"]
version                   = "0.7.2"
readme                    = "../README.md"
license                   = "MIT OR Apache-2.0"

[badges]
travis-ci                 = { repository = "ferristseng/rust-ipfs-api" }

[features]
default                   = ["hyper", "hyper-multipart-rfc7578", "hyper-tls", "failure"]
actix                     = ["actix-http", "actix-multipart-rfc7578", "awc", "derive_more"]

[dependencies]
actix-http                = { version = "1.0", optional = true }
actix-multipart-rfc7578   = { version = "0.3.0-rc", optional = true }
awc                       = { version = "1.0", optional = true }
bytes                     = "0.5"
derive_more               = { version = "0.99", optional = true }
failure                   = { version = "0.1.6", optional = true }
futures                   = "0.3"
http                      = "0.2"
hyper                     = { version = "0.13", optional = true }
hyper-tls                 = { version = "0.4", optional = true }
hyper-multipart-rfc7578   = { version = "0.4.0-rc", optional = true }
serde                     = { version = "1.0", features = ["derive"] }
serde_json                = "1.0"
serde_urlencoded          = "0.6"
tokio                     = "0.2"
tokio-util                = { version = "0.2", features = ["codec"] }
walkdir                   = "2.2"
dirs                      = "2.0"
parity-multiaddr          = "0.7.3"

[dev-dependencies]
actix-http                = "1.0"
actix-multipart-rfc7578   = "0.3.0-rc"
actix-rt                  = "1.0"
awc                       = "1.0"
hyper                     = "0.13"
hyper-tls                 = "0.4"
tar                       = "0.4"
tokio                     = { version = "0.2", features = ["rt-threaded", "macros", "time"] }