Skip to content
This repository was archived by the owner on Dec 15, 2023. It is now read-only.

Commit 83b160b

Browse files
committed
feat: update modules
1 parent cb9ff87 commit 83b160b

File tree

7 files changed

+688
-639
lines changed

7 files changed

+688
-639
lines changed

Cargo.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,13 @@ name = "iotdb"
33
version = "0.0.2"
44
edition = "2018"
55
license = "Apache-2.0"
6-
license-file = "LICENSE"
76
readme = "README.md"
87
authors = ["francis-du <francis@francisdu.com>"]
98
repository = "https://github.com/francis-du/iotdb-rs"
109
documentation = "https://docs.rs/crate/iotdb"
1110
description = "Rust client for Apache IotDB"
1211
keywords = ["api", "iotdb","thrift"]
1312

14-
[lib]
15-
name = "iotdb"
16-
path = "src/lib.rs"
17-
1813
[dependencies]
1914
prettytable-rs = "^0.8"
2015
chrono = "0.4.19"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
![Logo](http://iotdb.apache.org/img/logo.png)
44

55
<h1>iotdb-rs</h1>
6-
<h3>(WIP) Rust client for Apache IotDB</h3>
6+
<h3>Rust client for Apache IotDB (WIP)</h3>
77

88
[![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)
1010
[![Crates.io](https://img.shields.io/crates/d/iotdb?style=flat-square&color=%23E5531A)](https://crates.io/crates/iotdb)
1111
[![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)
1212
[![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)

examples/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
use thrift::Error;
22

3-
use iotdb::client::Client;
43
use iotdb::pretty;
5-
use iotdb::session::Session;
4+
use iotdb::Client;
5+
use iotdb::Session;
66
use std::collections::HashMap;
77

88
fn main() -> Result<(), Error> {

src/db.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
//! TODO impl a dataset,etc...

0 commit comments

Comments
 (0)