Skip to content

Commit f5a4ce5

Browse files
committed
sdk upgrade
1 parent 8c91229 commit f5a4ce5

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "deps/dart_gdbc"]
2+
path = deps/dart_gdbc
3+
url = https://github.com/graph-cn/dart_gdbc.git

example/test/example_test.dart

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
import 'package:example/example.dart';
1+
import 'package:example/example.dart' as example;
22
import 'package:test/test.dart';
33

4-
void main() {}
4+
void main() {
5+
test('run main', () async {
6+
example.main([]);
7+
});
8+
}

pubspec.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@ version: 0.0.1+1
44
repository: https://github.com/graph-cn/nebula_dart_gdbc
55

66
environment:
7-
sdk: '>=2.19.0 <3.0.0'
7+
sdk: '>=2.19.0 <4.0.0'
88

99
dependencies:
1010
fbthrift: ^1.0.0+1
1111
dart_gdbc: ^0.0.1+3
12-
# dart_gdbc:
13-
# path: ../dart_gdbc
1412

1513
dev_dependencies:
1614
lints: ^2.0.0

0 commit comments

Comments
 (0)