Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mcp enablement squashed #925

Merged
merged 21 commits into from
Mar 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 47 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ authors = [
edition = "2021"
homepage = "https://aws.amazon.com/q/"
publish = false
version = "1.7.1"
version = "1.7.2"
license = "MIT OR Apache-2.0"

[workspace.dependencies]
Expand Down Expand Up @@ -86,6 +86,7 @@ indicatif = "0.17.11"
indoc = "2.0.6"
insta = "1.42.2"
libc = "0.2.171"
mcp_client = { path = "crates/mcp_client" }
mimalloc = "0.1.43"
nix = { version = "0.29.0", features = [
"feature",
Expand Down Expand Up @@ -123,6 +124,7 @@ reqwest = { version = "0.12.14", default-features = false, features = [
] }
ring = "0.17.14"
rusqlite = { version = "0.32.1", features = ["bundled", "serde_json"] }
shellexpand = "3.0.0"
shell-color = { path = "crates/shell-color" }
semver = { version = "1.0.26", features = ["serde"] }
serde = { version = "1.0.219", features = ["derive", "rc"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/fig_desktop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ rfd = "0.15.1"
semver.workspace = true
serde.workspace = true
serde_json.workspace = true
shellexpand = "3.0.0"
shellexpand.workspace = true
sysinfo.workspace = true
tao = { version = "0.31.1", features = ["serde"] }
tempfile.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/fig_desktop_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ fig_util.workspace = true
fnv = "1.0.7"
serde.workspace = true
serde_json.workspace = true
shellexpand = "3.0.0"
shellexpand.workspace = true
thiserror.workspace = true
tokio.workspace = true
tracing.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/figterm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ serde.workspace = true
serde_json.workspace = true
shell-color.workspace = true
shell-words = "1.1"
shellexpand = "3.1.0"
shellexpand.workspace = true
shlex.workspace = true
sysinfo.workspace = true
time.workspace = true
Expand Down
30 changes: 30 additions & 0 deletions crates/mcp_client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[package]
name = "mcp_client"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
publish.workspace = true
version.workspace = true
license.workspace = true

[lints]
workspace = true

[features]
default = []

[[bin]]
name = "test_mcp_server"
path = "test_mcp_server/test_server.rs"
test = true
doc = false

[dependencies]
tokio.workspace = true
serde.workspace = true
serde_json.workspace = true
async-trait.workspace = true
tracing.workspace = true
thiserror.workspace = true
uuid.workspace = true
nix.workspace = true
Loading
Loading