Skip to content
This repository was archived by the owner on Oct 23, 2022. It is now read-only.

Commit 15ff888

Browse files
committed
Fix android build and include unixfs crate
1 parent 94d9b0a commit 15ff888

File tree

2 files changed

+16
-17
lines changed

2 files changed

+16
-17
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

unixfs/Cargo.toml

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,25 @@
11
[package]
2-
name = "ipfs-unixfs"
3-
version = "0.0.1"
42
authors = ["Joonas Koivunen <joonas@equilibrium.co>"]
3+
description = "UnixFs tree support"
54
edition = "2018"
65
license = "MIT OR Apache-2.0"
7-
description = "UnixFs tree support"
8-
repository = "https://github.com/rs-ipfs/rust-ipfs"
6+
name = "ipfs-unixfs"
97
readme = "README.md"
8+
repository = "https://github.com/rs-ipfs/rust-ipfs"
9+
version = "0.0.1"
1010

11-
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1211
[features]
13-
default = [ "filetime" ]
12+
default = ["filetime"]
1413

1514
[dependencies]
16-
quick-protobuf = "0.7.0"
17-
cid = "0.5"
18-
filetime = { version = "0.2.10", optional = true }
19-
either = "1.5.3"
20-
sha2 = "0.9"
21-
multihash = "0.11"
15+
cid = { default-features = false, version = "0.5" }
16+
either = { default-features = false, version = "1.5" }
17+
filetime = { optional = true, version = "=0.2.8" }
18+
multihash = { default-features = false, version = "0.11" }
19+
quick-protobuf = { default-features = false, features = ["std"], version = "0.7" }
20+
sha2 = { default-features = false, version = "0.9" }
2221

2322
[dev-dependencies]
24-
multibase = "0.8.0"
25-
hex-literal = "0.3"
26-
libc = "0.2.71"
23+
hex-literal = { default-features = false, version = "0.3" }
24+
libc = { default-features = false, version = "0.2.71" }
25+
multibase = { default-features = false, version = "0.8.0" }

0 commit comments

Comments
 (0)