Skip to content

Commit 499c370

Browse files
committed
Merge branch 'main' into search_messages_3#122
2 parents da4c301 + 3cbfd35 commit 499c370

File tree

21 files changed

+1544
-304
lines changed

21 files changed

+1544
-304
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,27 @@ indexmap = "2.6.0"
5454
blurhash = { version = "0.2.3", default-features = false }
5555
regex = "1.11.1"
5656

57+
## Dependencies for TSP support.
5758
tsp_sdk = { git = "https://github.com/openwallet-foundation-labs/tsp.git", optional = true, features = ["async", "resolve"] }
5859
# tsp_sdk = { version = "0.8.0", optional = true, default-features = false, features = ["async", "resolve"] }
59-
quinn = { version = "0.11.8", default-features = false }
60+
quinn = { version = "0.11.8", default-features = false, optional = true }
61+
percent-encoding = { version = "2.3", optional = true }
62+
## The following reqwest features were taken from the tsp_sdk's `Cargo.toml` file.
63+
## I'm not sure if all of them are actually needed.
64+
reqwest = { version = "0.12", default-features = false, features = [
65+
"rustls-tls-native-roots",
66+
"json",
67+
"stream",
68+
"charset",
69+
"http2",
70+
"macos-system-configuration",
71+
] }
6072

6173

6274
[features]
6375
default = []
6476
## Enables experimental support for using TSP wallets.
65-
tsp = ["dep:tsp_sdk"]
77+
tsp = ["dep:tsp_sdk", "dep:quinn", "dep:percent-encoding"]
6678

6779
## Hides the command prompt console on Windows.
6880
hide_windows_console = []

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ These are generally sorted in order of priority. If you're interested in helping
186186
- [x] Keyword filters for the list of all rooms: https://github.com/project-robius/robrix/issues/123
187187
- [ ] Collapsible/expandable view of contiguous "small" events: https://github.com/project-robius/robrix/issues/118
188188
- [ ] Display multimedia (audio/video/gif) message events: https://github.com/project-robius/robrix/issues/120
189-
- [ ] User settings screen
189+
- [x] User settings screen
190190
- [ ] Dedicated view of spaces
191191
- [ ] Link previews beneath messages: https://github.com/project-robius/robrix/issues/81
192192
- [ ] Search messages within a room: https://github.com/project-robius/robrix/issues/122

resources/icons/add_user.svg

Lines changed: 4 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)