Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
update info for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
J-HowHuang committed Apr 25, 2024
1 parent 8156678 commit e91ea92
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 9 deletions.
20 changes: 13 additions & 7 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
[package]
name = "client"
name = "istziio-client"
version = "0.1.0"
edition = "2018"
authors = ["Your Name <your.email@example.com>"]
description = "Client application"
authors = ["Shuning Lin <86640627+ScottLinnn@users.noreply.github.com>", "J-HowHuang <howardhuang2001@gmail.com>"]
description = "Client application for ISTZIIO OLAP database I/O cache service"
license-file = "LICENSE"
homepage = "https://github.com/cmu-db/15721-s24-cache2"
repository = "https://github.com/cmu-db/15721-s24-cache2"
documentation = "https://github.com/cmu-db/15721-s24-cache2/blob/main/README.md"
readme = "README.md"
include = [
"src/client_api.rs",
"src/storage_client.rs",
"src/lib.rs"
]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -19,7 +29,3 @@ env_logger = "0.11.1"
async-trait = "0.1"
rocket = { version = "0.5.0", features = ["json"] }
reqwest = { version = "0.11", features = ["stream", "json"] }

[[bin]]
name = "benchmark"
path = "src/benchmark.rs"
21 changes: 21 additions & 0 deletions client/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 CMU Database Group

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
3 changes: 3 additions & 0 deletions client/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# ISTZIIO-client
15-721 Spring 2024 - Cache #2

4 changes: 2 additions & 2 deletions client/src/benchmark.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use client::client_api::{StorageClient, StorageRequest, TableId};
use client::storage_client::StorageClientImpl;
use istziio_client::client_api::{StorageClient, StorageRequest, TableId};
use istziio_client::storage_client::StorageClientImpl;
use std::collections::HashMap;
use std::fs;
use std::path::Path;
Expand Down

0 comments on commit e91ea92

Please sign in to comment.