-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Wenqi Mou
authored
Mar 22, 2021
1 parent
6355497
commit e4f7beb
Showing
33 changed files
with
89 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
name = "pravega-client-auth" | ||
version = "0.1.0" | ||
edition = "2018" | ||
categories = ["Network programming"] | ||
categories = ["network-programming"] | ||
keywords = ["streaming", "client", "pravega"] | ||
readme = "Readme.md" | ||
readme = "README.md" | ||
repository = "https://github.com/pravega/pravega-client-rust" | ||
license = "Apache-2.0" | ||
description = "An internal library used by the Rust client for Pravega." | ||
|
@@ -14,8 +14,8 @@ authors = ["Tom Kaitchuck <[email protected]>", "Wenqi Mou <wenqi.mou@dell. | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
pravega-client-shared = { path = "../shared"} | ||
pravega-controller-client = { path = "../controller-client"} | ||
pravega-client-shared = { path = "../shared", version = "0.1"} | ||
pravega-controller-client = { path = "../controller-client", version = "0.1"} | ||
async-trait = "0.1" | ||
tokio = { version = "1.1", features = ["full"] } | ||
base64 = "0.12" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Authentication and Authorization | ||
Authentication and Authorization utilities for Pravega Rust client. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# channel | ||
Provides a channel with back pressure. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
name = "pravega-client-config" | ||
version = "0.1.0" | ||
edition = "2018" | ||
categories = ["Network programming"] | ||
categories = ["network-programming"] | ||
keywords = ["streaming", "client", "pravega"] | ||
readme = "Readme.md" | ||
readme = "README.md" | ||
repository = "https://github.com/pravega/pravega-client-rust" | ||
license = "Apache-2.0" | ||
description = "An internal library used by the Rust client for Pravega." | ||
|
@@ -14,13 +14,13 @@ authors = ["Tom Kaitchuck <[email protected]>", "Wenqi Mou <wenqi.mou@dell. | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
pravega-client-shared = { path = "../shared"} | ||
pravega-client-retry = {path= "../retry"} | ||
pravega-client-shared = { path = "../shared", version = "0.1"} | ||
pravega-client-retry = {path = "../retry", version = "0.1"} | ||
derive_builder = "0.9" | ||
getset = "0.0.9" | ||
serde_json = "1.0" | ||
serde = "1.0" | ||
reqwest = { version = "0.10", features = ["json"]} | ||
reqwest = { version = "0.11", features = ["json"]} | ||
base64 = "0.12" | ||
tokio = "1.1" | ||
async-trait = "0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# config | ||
Config for the client. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
name = "pravega-connection-pool" | ||
version = "0.1.0" | ||
edition = "2018" | ||
categories = ["Network programming"] | ||
categories = ["network-programming"] | ||
keywords = ["streaming", "client", "pravega"] | ||
readme = "Readme.md" | ||
readme = "README.md" | ||
repository = "https://github.com/pravega/pravega-client-rust" | ||
license = "Apache-2.0" | ||
description = "A connection pool used by the Pravega Rust client." | ||
|
@@ -14,7 +14,7 @@ authors = ["Tom Kaitchuck <[email protected]>", "Wenqi Mou <wenqi.mou@dell. | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
pravega-client-shared = { path = "../shared"} | ||
pravega-client-shared = { path = "../shared", version = "0.1"} | ||
async-trait = "0.1" | ||
uuid = {version = "0.8", features = ["v4"]} | ||
snafu = "0.6" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# connection pool | ||
A generic connection pool |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,21 +3,21 @@ name = "pravega-controller-client" | |
version = "0.1.0" | ||
edition = "2018" | ||
build = "build.rs" | ||
categories = ["Network programming"] | ||
categories = ["network-programming"] | ||
keywords = ["streaming", "client", "pravega"] | ||
readme = "Readme.md" | ||
readme = "README.md" | ||
repository = "https://github.com/pravega/pravega-client-rust" | ||
license = "Apache-2.0" | ||
description = "An internal library used by the Rust client for Pravega to talk to the Pravega controller." | ||
authors = ["Tom Kaitchuck <[email protected]>", "Wenqi Mou <[email protected]>", | ||
"Sandeep Shridhar <[email protected]>", "Wenxiao Zhang <[email protected]>"] | ||
|
||
[dependencies] | ||
pravega-client-shared = { path = "../shared"} | ||
pravega-wire-protocol = { path = "../wire_protocol"} | ||
pravega-connection-pool = {path= "../connection_pool" } | ||
pravega-client-retry = {path = "../retry"} | ||
pravega-client-config = { path = "../config"} | ||
pravega-client-shared = { path = "../shared", version = "0.1"} | ||
pravega-wire-protocol = { path = "../wire_protocol", version = "0.1"} | ||
pravega-client-retry = {path = "../retry", version = "0.1"} | ||
pravega-connection-pool = {path = "../connection_pool", version = "0.1" } | ||
pravega-client-config = {path = "../config", version = "0.1"} | ||
async-trait = "0.1" | ||
prost = "0.7" | ||
snafu = "0.6" | ||
|
@@ -32,7 +32,6 @@ im = "15" | |
tracing = "0.1" | ||
jsonwebtoken = "7" | ||
serde = {version = "1.0", features = ["derive"] } | ||
h2 = "0.2" | ||
|
||
[build-dependencies] | ||
tonic-build = "0.3" | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "pravega-rust-client-examples" | ||
version = "0.1.0" | ||
edition = "2018" | ||
categories = ["Network programming"] | ||
categories = ["network-programming"] | ||
keywords = ["streaming", "client", "pravega"] | ||
readme = "Readme.md" | ||
repository = "https://github.com/pravega/pravega-client-rust" | ||
|
@@ -14,9 +14,9 @@ authors = ["Tom Kaitchuck <[email protected]>", "Wenqi Mou <wenqi.mou@dell. | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dev-dependencies] | ||
pravega-client = { path = "../" } | ||
pravega-client-config = { path = "../config"} | ||
pravega-client-shared = { path = "../shared"} | ||
pravega-client = { path = "../", version = "0.1"} | ||
pravega-client-config = { path = "../config", version = "0.1"} | ||
pravega-client-shared = { path = "../shared", version = "0.1"} | ||
tokio = "1.1" | ||
|
||
[[example]] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Retry | ||
Provides generic retry functions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.