Skip to content

Commit 00a9c43

Browse files
Merge branch 'main' into feat/reactions
2 parents 002e44c + 57f6747 commit 00a9c43

File tree

7 files changed

+56
-72
lines changed

7 files changed

+56
-72
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,10 @@ resolver = "2"
33
members = ["src/ui", "src/cache", "src/chat", "src/discord"]
44

55
[workspace.dependencies]
6-
chrono = "0.4.38"
6+
chrono = "0.4.38"
7+
gpui = { git = "https://github.com/scopeclient/zed.git", branch = "feature/export-platform-window", default-features = false, features = [
8+
"http_client",
9+
"font-kit",
10+
] }
11+
components = { package = "ui", git = "https://github.com/scopeclient/components", version = "0.1.0" }
12+
reqwest_client = { git = "https://github.com/scopeclient/zed.git", branch = "feature/export-platform-window", version = "0.1.0" }

src/cache/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
gpui = { git = "https://github.com/huacnlee/zed.git", branch = "export-platform-window", default-features = false, features = [
8-
"http_client",
9-
"font-kit",
10-
] }
7+
gpui.workspace = true
118
rand = "0.8.5"
129
scope-chat = { version = "0.1.0", path = "../chat" }
1310
tokio = "1.41.1"

src/chat/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
gpui = { git = "https://github.com/huacnlee/zed.git", branch = "export-platform-window", default-features = false, features = [
8-
"http_client",
9-
"font-kit",
10-
] }
117
tokio = "1.41.1"
128
chrono.workspace = true
9+
gpui.workspace = true

src/discord/Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
gpui = { git = "https://github.com/huacnlee/zed.git", branch = "export-platform-window", default-features = false, features = [
8-
"http_client",
9-
"font-kit",
10-
] }
7+
gpui.workspace = true
118
scope-chat = { version = "0.1.0", path = "../chat" }
129
serenity = { git = "https://github.com/scopeclient/serenity", version = "0.12" }
1310
tokio = "1.41.1"

src/ui/Cargo.toml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,16 @@ repository = "https://github.com/scopeclient/scope"
1313
keywords = ["discord", "scope", "reticle"]
1414

1515
[dependencies]
16-
gpui = { git = "https://github.com/huacnlee/zed.git", branch = "export-platform-window", version = "0.1.0", default-features = false, features = [
17-
"http_client",
18-
"font-kit",
19-
] }
20-
reqwest_client = { git = "https://github.com/huacnlee/zed.git", branch = "export-platform-window", version = "0.1.0" }
16+
gpui.workspace = true
17+
reqwest_client.workspace = true
2118
scope-chat = { version = "0.1.0", path = "../chat" }
2219
scope-util = { version = "0.1.0", path = "../util" }
2320
scope-backend-discord = { version = "0.1.0", path = "../discord" }
2421
scope-backend-cache = { version = "0.1.0", path = "../cache" }
2522
dotenv = "0.15.0"
2623
env_logger = "0.11.5"
2724
tokio = { version = "1.41.1", features = ["full"] }
28-
components = { package = "ui", git = "https://github.com/longbridgeapp/gpui-component", version = "0.1.0" }
25+
components.workspace = true
2926
log = "0.4.22"
3027
random-string = "1.1.0"
3128
rust-embed = "8.5.0"

0 commit comments

Comments
 (0)