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
+
1
4
## 3.2.0
2
5
- Support for running dargon2 operations on M1 Macs
3
6
Original file line number Diff line number Diff line change @@ -32,8 +32,8 @@ class DartLibLoader implements LibLoader {
32
32
final rootLibrary = 'package:dargon2/dargon2.dart' ;
33
33
// ignore: deprecated_member_use
34
34
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);
37
37
if (Platform .isMacOS) return '${rootPath }libargon2-darwin.dylib' ;
38
38
if (Platform .isLinux) return '${rootPath }libargon2-linux.so' ;
39
39
if (Platform .isWindows) return '${rootPath }libargon2-win.dll' ;
Original file line number Diff line number Diff line change 1
1
name : dargon2
2
2
description : 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
4
4
homepage : https://github.com/tmthecoder/dargon2/blob/main/dargon2
5
5
repository : https://github.com/tmthecoder/dargon2
6
6
You can’t perform that action at this time.
0 commit comments