Skip to content

Commit

Permalink
corrected wnfs version
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsan6sha committed Dec 20, 2024
1 parent e1fc271 commit ac327b3
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ target
.vscode
tmp
wnfslib/Cargo.lock
/.history
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@ Please note the following might not be done in order:
- [x] add error catching
- [x] add metadata to ls and make it array
- [x] Improve read function to use a stream. ( :100: v1 Release here )
- [ ] remove dependancy to custom version of wnfs
- [x] remove dependancy to custom version of wnfs
2 changes: 1 addition & 1 deletion jitpack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ before_install:
- git lfs pull
install:
- FILE="-Dfile=lib/build/outputs/aar/lib-release.aar"
- mvn install:install-file $FILE -DgroupId=com.group.module -DartifactId=wnfs-android -Dversion=1.8.1 -Dpackaging=aar -DgeneratePom=true
- mvn install:install-file $FILE -DgroupId=com.group.module -DartifactId=wnfs-android -Dversion=1.8.2 -Dpackaging=aar -DgeneratePom=true
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.group.module</groupId>
<artifactId>wnfs-android</artifactId>
<version>1.8.1</version>
<version>1.8.2</version>
</project>
16 changes: 8 additions & 8 deletions wnfslib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
[package]
name = "wnfslib-android"
version = "1.8.1"
version = "1.8.2"
edition = "2021"

[lib]
name = "wnfslib"
crate-type = ["cdylib", "staticlib"]

[dependencies]
wnfs = { git = "https://github.com/wnfs-wg/rs-wnfs.git", branch = "main" }
wnfsutils = { git = "https://github.com/functionland/wnfs-utils.git", tag = "v1.1.5" }
wnfs = { git = "https://github.com/wnfs-wg/rs-wnfs.git", rev = "491ce8555d811477e934e6a1a6b6e0d347a32357" }
wnfsutils = { git = "https://github.com/functionland/wnfs-utils.git", tag = "v1.1.7" }
libipld = { version = "0.16", features = ["dag-cbor", "derive", "serde-codec"] }
anyhow = "1.0.66"
serde = "1.0.149"
serde_json = "1.0.89"
chrono = "0.4.22"
crc32fast = "1.3.2"
env_logger = "0.10.0"
env_logger = "0.11.5"
log = "0.4.14"
image = "0.24.2"
image = "0.25.5"
url = { version = "2.2.2", features = ["serde"] }
rand = "0.8.5"
kv = "0.24.0"


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

0 comments on commit ac327b3

Please sign in to comment.