File tree Expand file tree Collapse file tree 7 files changed +67
-2
lines changed Expand file tree Collapse file tree 7 files changed +67
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "tikv-client"
3
3
version = " 0.0.0"
4
4
keywords = [" TiKV" , " KV" , " distributed-systems" ]
5
5
license = " Apache-2.0"
6
- authors = [" The TiKV Project Developers " ]
6
+ authors = [" The TiKV Project Authors " ]
7
7
repository = " https://github.com/tikv/client-rust"
8
8
description = " The rust language implementation of TiKV client."
9
9
Original file line number Diff line number Diff line change
1
+ // Copyright 2018 The TiKV Project Authors
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+
1
14
extern crate futures;
2
15
extern crate tikv_client;
3
16
Original file line number Diff line number Diff line change
1
+ // Copyright 2018 The TiKV Project Authors
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+
1
14
extern crate futures;
2
15
extern crate tikv_client;
3
16
Original file line number Diff line number Diff line change 1
- // Copyright 2016 PingCAP, Inc.
1
+ // Copyright 2018 The TiKV Project Authors
2
2
//
3
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
4
// you may not use this file except in compliance with the License.
Original file line number Diff line number Diff line change
1
+ // Copyright 2018 The TiKV Project Authors
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+
1
14
extern crate futures;
2
15
extern crate serde;
3
16
#[ macro_use]
Original file line number Diff line number Diff line change
1
+ // Copyright 2018 The TiKV Project Authors
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+
1
14
use std:: ops:: RangeBounds ;
2
15
3
16
use futures:: { Future , Poll } ;
Original file line number Diff line number Diff line change
1
+ // Copyright 2018 The TiKV Project Authors
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 (the "License");
4
+ // you may not use this file except in compliance with the License.
5
+ // You may obtain a copy of the License at
6
+ //
7
+ // http://www.apache.org/licenses/LICENSE-2.0
8
+ //
9
+ // Unless required by applicable law or agreed to in writing, software
10
+ // distributed under the License is distributed on an "AS IS" BASIS,
11
+ // See the License for the specific language governing permissions and
12
+ // limitations under the License.
13
+
1
14
use std:: ops:: RangeBounds ;
2
15
3
16
use futures:: { Future , Poll , Stream } ;
You can’t perform that action at this time.
0 commit comments