File tree Expand file tree Collapse file tree 4 files changed +11
-9
lines changed Expand file tree Collapse file tree 4 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 1+ ## 2.0.3
2+ - Update dependencies
3+
14## 2.0.2
25- Update dependencies
36
Original file line number Diff line number Diff line change 11# Defines a default set of lint rules enforced for
2- # projects at Google. For details and rationale,
3- # see https://github.com/dart-lang/pedantic#enabled-lints.
4- include : package:pedantic/analysis_options.yaml
2+ # projects at Google.
3+ include : package:lints/recommended.yaml
54
65# For lint rules and documentation, see http://dart-lang.github.io/linter/lints.
76# Uncomment to specify additional rules.
Original file line number Diff line number Diff line change 11name : crypton
22description : A simple Dart library for asymmetric encryption and digital signatures
3- version : 2.0.2
3+ version : 2.0.3
44homepage : https://github.com/konstantinullrich
55repository : https://github.com/konstantinullrich/crypton
66issue_tracker : https://github.com/konstantinullrich/crypton/issues
@@ -9,9 +9,9 @@ environment:
99 sdk : ' >=2.12.0 <3.0.0'
1010
1111dependencies :
12- pointycastle : 3.1.2
12+ pointycastle : ^3.3.4
1313 asn1lib : ^1.0.2
1414
1515dev_dependencies :
16- pedantic : ^1.11 .1
17- test : ^1.17.9
16+ lints : ^1.0 .1
17+ test : ^1.18.0
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ void main() {
8585 .split ('\n ' )
8686 .map ((l) => l.length)
8787 .toList ()
88- ..sort ())
88+ ..sort ())
8989 .last,
9090 64 );
9191 });
@@ -97,7 +97,7 @@ void main() {
9797 .split ('\n ' )
9898 .map ((l) => l.length)
9999 .toList ()
100- ..sort ())
100+ ..sort ())
101101 .last,
102102 64 );
103103 expect (rsaKeypair.publicKey.toFormattedPEM ().length, 450 );
You can’t perform that action at this time.
0 commit comments