File: Cargo.toml.orig

package info (click to toggle)
rust-rust-unixfs 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 652 kB
  • sloc: sh: 17; makefile: 2
file content (37 lines) | stat: -rw-r--r-- 971 bytes parent folder | download
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
[package]
authors = ["Rust-IPFS contributors"]
description = "UnixFs tree support"
edition = "2021"
license = "MIT OR Apache-2.0"
name = "rust-unixfs"
readme = "README.md"
repository = "https://github.com/dariusc93/rust-ipfs"
version = "0.4.0"

[features]
default = ["filetime"]

[dependencies]
libipld = "0.16"
either = { default-features = false, version = "1.8" }
filetime = { optional = true, version = "0.2" }
quick-protobuf = { default-features = false, features = [
    "std",
], version = "0.8" }
sha2 = { default-features = false, version = "0.10" }

[dev-dependencies]
hash_hasher = "2.0.3"
hex-literal = { default-features = false, version = "0.3" }
libc = { default-features = false, version = "0.2" }
multibase = { default-features = false, version = "0.9" }
tar = { default-features = false, version = "0.4" }
criterion = { default-features = false, version = "0.4" }

[[bench]]
name = "ingest-tar"
harness = false

[[bench]]
name = "adder"
harness = false