Skip to content

Commit

Permalink
Fix long path issue in windows
Browse files Browse the repository at this point in the history
  • Loading branch information
bitfriend committed Feb 19, 2025
1 parent 935e048 commit 8889828
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 50 deletions.
56 changes: 24 additions & 32 deletions Cargo.lock

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

36 changes: 18 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,50 +8,50 @@ members = [
default-members = ["native/acter"]

[workspace.dependencies.matrix-sdk]
git = "https://github.com/acterglobal/matrix-rust-sdk"
rev = "a95632aba2f1c6a0e74c05fd4574b32a6a449fcf"
git = "https://github.com/matrix-org/matrix-rust-sdk"
rev = "7a06bdb6950f74167e697e795babc8e12e1a5aa3"
default-features = false
features = ["rustls-tls"]

[workspace.dependencies.matrix-sdk-base]
git = "https://github.com/acterglobal/matrix-rust-sdk"
rev = "a95632aba2f1c6a0e74c05fd4574b32a6a449fcf"
git = "https://github.com/matrix-org/matrix-rust-sdk"
rev = "7a06bdb6950f74167e697e795babc8e12e1a5aa3"
default-features = false

[workspace.dependencies.matrix-sdk-sqlite]
git = "https://github.com/acterglobal/matrix-rust-sdk"
rev = "a95632aba2f1c6a0e74c05fd4574b32a6a449fcf"
git = "https://github.com/matrix-org/matrix-rust-sdk"
rev = "7a06bdb6950f74167e697e795babc8e12e1a5aa3"
default-features = false
features = ["crypto-store", "state-store"]

[workspace.dependencies.matrix-sdk-store-encryption]
git = "https://github.com/acterglobal/matrix-rust-sdk"
rev = "a95632aba2f1c6a0e74c05fd4574b32a6a449fcf"
git = "https://github.com/matrix-org/matrix-rust-sdk"
rev = "7a06bdb6950f74167e697e795babc8e12e1a5aa3"
default-features = false

[workspace.dependencies.matrix-sdk-ui]
git = "https://github.com/acterglobal/matrix-rust-sdk"
rev = "a95632aba2f1c6a0e74c05fd4574b32a6a449fcf"
git = "https://github.com/matrix-org/matrix-rust-sdk"
rev = "7a06bdb6950f74167e697e795babc8e12e1a5aa3"
default-features = false

[workspace.dependencies.matrix-sdk-test]
git = "https://github.com/acterglobal/matrix-rust-sdk"
rev = "a95632aba2f1c6a0e74c05fd4574b32a6a449fcf"
git = "https://github.com/matrix-org/matrix-rust-sdk"
rev = "7a06bdb6950f74167e697e795babc8e12e1a5aa3"
default-features = false


# not used directly but needed to enable specific features from ruma
# ATTENTION: _MUST_ stay in sync with the ruma-rev used by matrix-sdk!
[workspace.dependencies.ruma]
version = "0.12.1"
# git = "https://github.com/ruma/ruma"
# rev = "c91499fc464adc865a7c99d0ce0b35982ad96711"
# version = "0.12.1"
git = "https://github.com/ruma/ruma"
rev = "7755c7cbc580f8d8aea30d78cc1a6850b1a6fd39"

# - see comment above
[workspace.dependencies.ruma-common]
version = "0.15.1"
# git = "https://github.com/ruma/ruma"
# rev = "c91499fc464adc865a7c99d0ce0b35982ad96711"
# version = "0.15.1"
git = "https://github.com/ruma/ruma"
rev = "7755c7cbc580f8d8aea30d78cc1a6850b1a6fd39"

[workspace.dependencies.url]
version = "2.5.0"
Expand Down

0 comments on commit 8889828

Please sign in to comment.