Skip to content

Commit ac327b3

Browse files
committed
corrected wnfs version
1 parent e1fc271 commit ac327b3

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ target
1717
.vscode
1818
tmp
1919
wnfslib/Cargo.lock
20+
/.history

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@ Please note the following might not be done in order:
8989
- [x] add error catching
9090
- [x] add metadata to ls and make it array
9191
- [x] Improve read function to use a stream. ( :100: v1 Release here )
92-
- [ ] remove dependancy to custom version of wnfs
92+
- [x] remove dependancy to custom version of wnfs

jitpack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ before_install:
22
- git lfs pull
33
install:
44
- FILE="-Dfile=lib/build/outputs/aar/lib-release.aar"
5-
- mvn install:install-file $FILE -DgroupId=com.group.module -DartifactId=wnfs-android -Dversion=1.8.1 -Dpackaging=aar -DgeneratePom=true
5+
- mvn install:install-file $FILE -DgroupId=com.group.module -DartifactId=wnfs-android -Dversion=1.8.2 -Dpackaging=aar -DgeneratePom=true

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.group.module</groupId>
77
<artifactId>wnfs-android</artifactId>
8-
<version>1.8.1</version>
8+
<version>1.8.2</version>
99
</project>

wnfslib/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
[package]
22
name = "wnfslib-android"
3-
version = "1.8.1"
3+
version = "1.8.2"
44
edition = "2021"
55

66
[lib]
77
name = "wnfslib"
88
crate-type = ["cdylib", "staticlib"]
99

1010
[dependencies]
11-
wnfs = { git = "https://github.com/wnfs-wg/rs-wnfs.git", branch = "main" }
12-
wnfsutils = { git = "https://github.com/functionland/wnfs-utils.git", tag = "v1.1.5" }
11+
wnfs = { git = "https://github.com/wnfs-wg/rs-wnfs.git", rev = "491ce8555d811477e934e6a1a6b6e0d347a32357" }
12+
wnfsutils = { git = "https://github.com/functionland/wnfs-utils.git", tag = "v1.1.7" }
1313
libipld = { version = "0.16", features = ["dag-cbor", "derive", "serde-codec"] }
1414
anyhow = "1.0.66"
1515
serde = "1.0.149"
1616
serde_json = "1.0.89"
1717
chrono = "0.4.22"
1818
crc32fast = "1.3.2"
19-
env_logger = "0.10.0"
19+
env_logger = "0.11.5"
2020
log = "0.4.14"
21-
image = "0.24.2"
21+
image = "0.25.5"
2222
url = { version = "2.2.2", features = ["serde"] }
2323
rand = "0.8.5"
2424
kv = "0.24.0"
2525

2626

27-
jni = { version = "0.19.0", default-features = false }
28-
android_logger = "0.11.0"
27+
jni = { version = "0.21.1", default-features = false }
28+
android_logger = "0.14.1"
2929
# comment this while debbuging using vscode+rust-plugin.
30-
ndk = "0.6.0"
30+
ndk = "0.9.0"

0 commit comments

Comments
 (0)