diff --git a/Cargo.lock b/Cargo.lock index b9ef044..7079b6e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -72,7 +72,7 @@ dependencies = [ [[package]] name = "dokan" -version = "0.3.0+dokan205" +version = "0.3.1+dokan206" dependencies = [ "bitflags", "clap", @@ -86,7 +86,7 @@ dependencies = [ [[package]] name = "dokan-sys" -version = "0.3.0+dokan205" +version = "0.3.1+dokan206" dependencies = [ "cc", "libc", diff --git a/appveyor.yml b/appveyor.yml index 518af10..6b46bec 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -60,12 +60,12 @@ init: install: - ps: &download-dokany | - Invoke-WebRequest https://github.com/dokan-dev/dokany/releases/download/v2.0.5.1000/DokanSetup.exe -OutFile "$Env:TEMP\DokanSetup.exe" + Invoke-WebRequest https://github.com/dokan-dev/dokany/releases/download/v2.0.6.1000/DokanSetup.exe -OutFile "$Env:TEMP\DokanSetup.exe" Start-Process "$Env:TEMP\DokanSetup.exe" -ArgumentList '/quiet /norestart' -Wait if ($Env:USE_INSTALLED_LIB -eq $true) { - $Env:DokanLibrary2_LibraryPath_x64 = 'C:\Program Files\Dokan\Dokan Library-2.0.5\lib\' - $Env:DokanLibrary2_LibraryPath_x86 = 'C:\Program Files\Dokan\Dokan Library-2.0.5\x86\lib\' + $Env:DokanLibrary2_LibraryPath_x64 = 'C:\Program Files\Dokan\Dokan Library-2.0.6\lib\' + $Env:DokanLibrary2_LibraryPath_x86 = 'C:\Program Files\Dokan\Dokan Library-2.0.6\x86\lib\' } else { Remove-Item 'C:\Windows\System32\dokan2.dll' Remove-Item 'C:\Windows\SysWOW64\dokan2.dll' diff --git a/dokan-sys/Cargo.toml b/dokan-sys/Cargo.toml index 5872ab7..3a533b7 100644 --- a/dokan-sys/Cargo.toml +++ b/dokan-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dokan-sys" -version = "0.3.0+dokan205" +version = "0.3.1+dokan206" authors = ["DDoSolitary "] description = "Raw FFI bindings for Dokan (user mode file system library for Windows)" homepage = "https://dokan-dev.github.io" diff --git a/dokan-sys/src/dokany b/dokan-sys/src/dokany index 1dc492a..5464da7 160000 --- a/dokan-sys/src/dokany +++ b/dokan-sys/src/dokany @@ -1 +1 @@ -Subproject commit 1dc492a3219525cd13ef21fe9bd77788676193b8 +Subproject commit 5464da7187cf1a3fb05977df28c1da98087051c5 diff --git a/dokan/Cargo.toml b/dokan/Cargo.toml index 5a30c8e..5bc7d52 100644 --- a/dokan/Cargo.toml +++ b/dokan/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dokan" -version = "0.3.0+dokan205" +version = "0.3.1+dokan206" authors = ["DDoSolitary "] description = "Rust-friendly wrapper for Dokan (user mode file system library for Windows)" homepage = "https://dokan-dev.github.io" @@ -17,7 +17,7 @@ appveyor = { repository = "Liryna/dokan-rust" } [dependencies] bitflags = "1.2.1" -dokan-sys = { version = "0.3.0", path = "../dokan-sys" } +dokan-sys = { version = "0.3.1", path = "../dokan-sys" } widestring = "0.4.3" winapi = { version = "0.3.9", features = ["std", "errhandlingapi", "handleapi", "heapapi", "ioapiset", "minwinbase", "minwindef", "ntdef", "ntstatus", "processthreadsapi", "sddl", "securitybaseapi", "synchapi", "winbase", "winerror", "winnt"] }