mirror of https://github.com/tikv/client-rust.git
parent
ddfad81d61
commit
0785626abc
|
@ -3,7 +3,7 @@ name = "tikv-client"
|
|||
version = "0.0.0"
|
||||
keywords = ["TiKV", "KV", "distributed-systems"]
|
||||
license = "Apache-2.0"
|
||||
authors = ["The TiKV Project Developers"]
|
||||
authors = ["The TiKV Project Authors"]
|
||||
repository = "https://github.com/tikv/client-rust"
|
||||
description = "The rust language implementation of TiKV client."
|
||||
|
||||
|
|
|
@ -1,3 +1,16 @@
|
|||
// Copyright 2018 The TiKV Project Authors
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
extern crate futures;
|
||||
extern crate tikv_client;
|
||||
|
||||
|
|
|
@ -1,3 +1,16 @@
|
|||
// Copyright 2018 The TiKV Project Authors
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
extern crate futures;
|
||||
extern crate tikv_client;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// Copyright 2016 PingCAP, Inc.
|
||||
// Copyright 2018 The TiKV Project Authors
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
|
|
13
src/lib.rs
13
src/lib.rs
|
@ -1,3 +1,16 @@
|
|||
// Copyright 2018 The TiKV Project Authors
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
extern crate futures;
|
||||
extern crate serde;
|
||||
#[macro_use]
|
||||
|
|
13
src/raw.rs
13
src/raw.rs
|
@ -1,3 +1,16 @@
|
|||
// Copyright 2018 The TiKV Project Authors
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
use std::ops::RangeBounds;
|
||||
|
||||
use futures::{Future, Poll};
|
||||
|
|
|
@ -1,3 +1,16 @@
|
|||
// Copyright 2018 The TiKV Project Authors
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
use std::ops::RangeBounds;
|
||||
|
||||
use futures::{Future, Poll, Stream};
|
||||
|
|
Loading…
Reference in New Issue