26 lines
614 B
TOML
26 lines
614 B
TOML
[package]
|
|
name = "ipfs-unixfs"
|
|
version = "0.0.1"
|
|
authors = ["Joonas Koivunen <joonas@equilibrium.co>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "UnixFs tree support"
|
|
repository = "https://github.com/rs-ipfs/rust-ipfs"
|
|
readme = "README.md"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[features]
|
|
default = [ "filetime" ]
|
|
|
|
[dependencies]
|
|
quick-protobuf = "0.7.0"
|
|
cid = "0.4.0"
|
|
filetime = { version = "0.2.10", optional = true }
|
|
either = "1.5.3"
|
|
|
|
[dev-dependencies]
|
|
multibase = "0.8.0"
|
|
multihash = "0.10.1"
|
|
sha2 = "0.8.1"
|
|
hex-literal = "0.2.1"
|