-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathCargo.toml
More file actions
114 lines (92 loc) · 3.15 KB
/
Copy pathCargo.toml
File metadata and controls
114 lines (92 loc) · 3.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[workspace]
resolver = "2"
members = [
"native/*",
"util/mr_minutes",
"util/sari"
]
default-members = ["native/acter"]
[workspace.package]
rust-version = "1.85"
[workspace.dependencies.ffi-gen]
git = "https://github.com/acterglobal/ffi-gen"
[workspace.dependencies.uniffi-dart]
# path = "../uniffi-dart/"
git = "https://github.com/acterglobal/uniffi-dart"
branch = "ben-ffi-next"
[workspace.dependencies.uniffi]
version = "0.28.0"
[workspace.dependencies.matrix-sdk]
# path = "../matrix-rust-sdk/crates/matrix-sdk"
git = "https://github.com/matrix-org/matrix-rust-sdk"
rev = "b6b9dc8"
default-features = false
[workspace.dependencies.matrix-sdk-base]
# path = "../matrix-rust-sdk/crates/matrix-sdk-base"
git = "https://github.com/matrix-org/matrix-rust-sdk"
rev = "b6b9dc8"
default-features = false
[workspace.dependencies.matrix-sdk-sqlite]
# path = "../matrix-rust-sdk/crates/matrix-sdk-sqlite"
git = "https://github.com/matrix-org/matrix-rust-sdk"
rev = "b6b9dc8"
default-features = false
features = ["crypto-store", "state-store"]
[workspace.dependencies.matrix-sdk-store-encryption]
# path = "../matrix-rust-sdk/crates/matrix-sdk-store-encryption"
git = "https://github.com/matrix-org/matrix-rust-sdk"
rev = "b6b9dc8"
default-features = false
[workspace.dependencies.matrix-sdk-ui]
# path = "../matrix-rust-sdk/crates/matrix-sdk-ui"
git = "https://github.com/matrix-org/matrix-rust-sdk"
rev = "b6b9dc8"
default-features = false
[workspace.dependencies.matrix-sdk-ffi]
git = "https://github.com/matrix-org/matrix-rust-sdk"
rev = "b6b9dc8"
default-features = false
[workspace.dependencies.matrix-sdk-ffi-macros]
git = "https://github.com/matrix-org/matrix-rust-sdk"
rev = "b6b9dc8"
default-features = false
[workspace.dependencies.matrix-sdk-test]
# path = "../matrix-rust-sdk/testing/matrix-sdk-test"
git = "https://github.com/matrix-org/matrix-rust-sdk"
rev = "b6b9dc8"
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.2"
git = "https://github.com/ruma/ruma"
rev = "a8fd1b0322649bf59e2a5cfc73ab4fe46b21edd7"
features = ['unstable-msc4095']
# - see comment above
[workspace.dependencies.ruma-common]
# version = "0.15.2"
git = "https://github.com/ruma/ruma"
rev = "a8fd1b0322649bf59e2a5cfc73ab4fe46b21edd7"
[workspace.dependencies.url]
version = "2.5.0"
features = ["serde"]
[workspace.dependencies]
strum = { version = "0.27.0", features = ["derive"] }
base64ct = "1.6.0"
derive-getters = "0.5.0"
derive_builder = "0.20.0"
icalendar = "0.16.1"
scc = "2"
env_logger = "0.11.7"
urlencoding = "2.1.3"
eyeball-im = "0.7.0"
[profile.release]
panic = "unwind"
opt-level = 2
lto = true
codegen-units = 1
strip = true # Automatically strip symbols from the binary.
[patch.crates-io]
async-compat = { git = "https://github.com/element-hq/async-compat", rev = "5a27c8b290f1f1dcfc0c4ec22c464e38528aa591" }
const_panic = { git = "https://github.com/jplatte/const_panic", rev = "9024a4cb3eac45c1d2d980f17aaee287b17be498" }
# async-compat = { git = "https://github.com/element-hq/async-compat", rev = "5a27c8b290f1f1dcfc0c4ec22c464e38528aa591" }