This repository was archived by the owner on Dec 15, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +688
-639
lines changed Expand file tree Collapse file tree 7 files changed +688
-639
lines changed Original file line number Diff line number Diff line change @@ -3,18 +3,13 @@ name = "iotdb"
3
3
version = " 0.0.2"
4
4
edition = " 2018"
5
5
license = " Apache-2.0"
6
- license-file = " LICENSE"
7
6
readme = " README.md"
8
7
authors = [" francis-du <francis@francisdu.com>" ]
9
8
repository = " https://github.com/francis-du/iotdb-rs"
10
9
documentation = " https://docs.rs/crate/iotdb"
11
10
description = " Rust client for Apache IotDB"
12
11
keywords = [" api" , " iotdb" ," thrift" ]
13
12
14
- [lib ]
15
- name = " iotdb"
16
- path = " src/lib.rs"
17
-
18
13
[dependencies ]
19
14
prettytable-rs = " ^0.8"
20
15
chrono = " 0.4.19"
Original file line number Diff line number Diff line change 3
3
![ Logo] ( http://iotdb.apache.org/img/logo.png )
4
4
5
5
<h1 >iotdb-rs</h1 >
6
- <h3 >(WIP) Rust client for Apache IotDB</h3 >
6
+ <h3 >Rust client for Apache IotDB (WIP) </h3 >
7
7
8
8
[ ![ Crates.io] ( https://img.shields.io/crates/v/iotdb?style=flat-square&color=%23E5531A )] ( https://crates.io/crates/iotdb )
9
- [ ![ Api Docs] ( https://img.shields.io/badge/Api-Doc-a94064?style=flat-square&color=%23E5531A )] ( https://docs.rs/crate/ iotdb )
9
+ [ ![ Api Docs] ( https://img.shields.io/badge/Api-Doc-a94064?style=flat-square&color=%23E5531A )] ( https://docs.rs/iotdb )
10
10
[ ![ Crates.io] ( https://img.shields.io/crates/d/iotdb?style=flat-square&color=%23E5531A )] ( https://crates.io/crates/iotdb )
11
11
[ ![ License] ( https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square&color=%23E5531A )] ( https://github.com/francis-du/iotdb-rs/blob/main/LICENSE )
12
12
[ ![ Rust Build] ( https://img.shields.io/github/workflow/status/francis-du/iotdb-rs/cargo-test?label=build&style=flat-square )] ( https://github.com/francis-du/iotdb-rs/actions?query=workflow%3Acargo-test )
Original file line number Diff line number Diff line change 1
1
use thrift:: Error ;
2
2
3
- use iotdb:: client:: Client ;
4
3
use iotdb:: pretty;
5
- use iotdb:: session:: Session ;
4
+ use iotdb:: Client ;
5
+ use iotdb:: Session ;
6
6
use std:: collections:: HashMap ;
7
7
8
8
fn main ( ) -> Result < ( ) , Error > {
Original file line number Diff line number Diff line change
1
+ //! TODO impl a dataset,etc...
You can’t perform that action at this time.
0 commit comments