File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1+ ## 3.2.1
2+ - Fix ` dart run ` not working correctly with dargon2 on future versions of dart without a file path- Fix a crash on Ubuntu 20.04 LTS
3+
14## 3.2.0
25- Support for running dargon2 operations on M1 Macs
36
Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ class DartLibLoader implements LibLoader {
3232 final rootLibrary = 'package:dargon2/dargon2.dart' ;
3333 // ignore: deprecated_member_use
3434 var rootPath = waitFor (Isolate .resolvePackageUri (Uri .parse (rootLibrary)))!
35- .resolve ('src/blobs/' )
36- .toFilePath (windows: Platform .isWindows);
35+ .resolve ('src/blobs/' )
36+ .toFilePath (windows: Platform .isWindows);
3737 if (Platform .isMacOS) return '${rootPath }libargon2-darwin.dylib' ;
3838 if (Platform .isLinux) return '${rootPath }libargon2-linux.so' ;
3939 if (Platform .isWindows) return '${rootPath }libargon2-win.dll' ;
Original file line number Diff line number Diff line change 11name : dargon2
22description : Provides bindings for hashing and verifying with Argon2, the winner of the Password Hashing Competition.
3- version : 3.2.0
3+ version : 3.2.1
44homepage : https://github.com/tmthecoder/dargon2/blob/main/dargon2
55repository : https://github.com/tmthecoder/dargon2
66
You can’t perform that action at this time.
0 commit comments