mirror of https://github.com/grpc/grpc-dart.git
Bump lints from 2.1.1 to 3.0.0 (#675)
This commit is contained in:
parent
e24550ae32
commit
b7f9115b98
|
@ -15,6 +15,7 @@
|
|||
|
||||
/// Exports an interface suitable for defining an alternate implementation of
|
||||
/// [ClientChannel].
|
||||
library;
|
||||
|
||||
export 'src/client/call.dart' show CallOptions, ClientCall;
|
||||
export 'src/client/channel.dart' show ClientChannelBase;
|
||||
|
|
|
@ -22,7 +22,7 @@ dependencies:
|
|||
dev_dependencies:
|
||||
build_runner: ^2.0.0
|
||||
build_test: ^2.0.0
|
||||
lints: ^2.0.0
|
||||
lints: ">=2.0.0 <4.0.0"
|
||||
mockito: ^5.0.0
|
||||
path: ^1.8.0
|
||||
test: ^1.16.0
|
||||
|
|
|
@ -122,7 +122,7 @@ class ServerHarness extends _Harness {
|
|||
@override
|
||||
ConnectionServer createServer() => Server.create(
|
||||
services: <Service>[service],
|
||||
interceptors: <Interceptor>[interceptor],
|
||||
interceptors: <Interceptor>[interceptor.call],
|
||||
);
|
||||
|
||||
static ServiceMethod<int, int> createMethod(String name,
|
||||
|
@ -136,7 +136,7 @@ class ConnectionServerHarness extends _Harness {
|
|||
@override
|
||||
ConnectionServer createServer() => ConnectionServer(
|
||||
<Service>[service],
|
||||
<Interceptor>[interceptor],
|
||||
<Interceptor>[interceptor.call],
|
||||
);
|
||||
|
||||
static ServiceMethod<int, int> createMethod(
|
||||
|
|
Loading…
Reference in New Issue