Skip to content

Commit afbf746

Browse files
committed
remove chat from q_cli
1 parent 523b6c5 commit afbf746

File tree

102 files changed

+1134
-16079
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+1134
-16079
lines changed

Cargo.lock

Lines changed: 1039 additions & 632 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ objc2-input-method-kit = "0.2.2"
106106
parking_lot = "0.12.3"
107107
percent-encoding = "2.2.0"
108108
portable-pty = "0.8.1"
109-
q_chat = { path = "crates/q_chat" }
110109
r2d2 = "0.8.10"
111110
r2d2_sqlite = "0.25.0"
112111
rand = "0.9.0"

crates/amzn-toolkit-telemetry/Cargo.toml renamed to crates/amzn-toolkit-telemetry-client/Cargo.toml

Lines changed: 6 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,10 @@
1111

1212
[package]
1313
edition = "2021"
14-
name = "amzn-toolkit-telemetry"
14+
name = "amzn-toolkit-telemetry-client"
1515
version = "1.0.0"
1616
authors = ["Grant Gurvis <grangurv@amazon.com>"]
17-
exclude = [
18-
"/build",
19-
"/Config",
20-
"/build-tools/",
21-
]
17+
exclude = ["/build", "/Config", "/build-tools/"]
2218
publish = ["brazil"]
2319
description = "Rust client bindings for the toolkit-telemetry service"
2420

@@ -53,10 +49,7 @@ features = ["client"]
5349

5450
[dependencies.aws-smithy-runtime-api]
5551
version = "1.1.3"
56-
features = [
57-
"client",
58-
"http-02x",
59-
]
52+
features = ["client", "http-02x"]
6053

6154
[dependencies.aws-smithy-types]
6255
version = "1.1.3"
@@ -79,16 +72,7 @@ features = ["test-util"]
7972

8073
[features]
8174
behavior-version-latest = []
82-
default = [
83-
"rustls",
84-
"rt-tokio",
85-
]
86-
rt-tokio = [
87-
"aws-smithy-async/rt-tokio",
88-
"aws-smithy-types/rt-tokio",
89-
]
75+
default = ["rustls", "rt-tokio"]
76+
rt-tokio = ["aws-smithy-async/rt-tokio", "aws-smithy-types/rt-tokio"]
9077
rustls = ["aws-smithy-runtime/tls-rustls"]
91-
test-util = [
92-
"aws-credential-types/test-util",
93-
"aws-smithy-runtime/test-util",
94-
]
78+
test-util = ["aws-credential-types/test-util", "aws-smithy-runtime/test-util"]

crates/amzn-toolkit-telemetry/src/client.rs renamed to crates/amzn-toolkit-telemetry-client/src/client.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ impl Client {
100100
/// operation call. For example, this can be used to add an additional HTTP header:
101101
///
102102
/// ```ignore
103-
/// # async fn wrapper() -> ::std::result::Result<(), amzn_toolkit_telemetry::Error> {
104-
/// # let client: amzn_toolkit_telemetry::Client = unimplemented!();
103+
/// # async fn wrapper() -> ::std::result::Result<(), amzn_toolkit_telemetry_client::Error> {
104+
/// # let client: amzn_toolkit_telemetry_client::Client = unimplemented!();
105105
/// use ::http::header::{HeaderName, HeaderValue};
106106
///
107107
/// let result = client.post_error_report()

0 commit comments

Comments
 (0)