ferogram 0.2.2__tar.gz → 0.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ferogram-0.3.0/CHANGELOG.md +91 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/Cargo.lock +26 -313
- {ferogram-0.2.2 → ferogram-0.3.0}/Cargo.toml +2 -2
- {ferogram-0.2.2 → ferogram-0.3.0}/FEATURES.md +320 -27
- {ferogram-0.2.2 → ferogram-0.3.0}/PKG-INFO +1 -1
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/__init__.py +6 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/client.py +395 -15
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/_tl_schema.py +2 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/proxy.py +8 -6
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/tl.py +75 -6
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/types.py +23 -3
- {ferogram-0.2.2 → ferogram-0.3.0}/pyproject.toml +1 -1
- ferogram-0.3.0/src/auth.rs +222 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/src/client.rs +788 -161
- ferogram-0.3.0/src/keyboards.rs +567 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/src/lib.rs +8 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/src/message.rs +3 -9
- {ferogram-0.2.2 → ferogram-0.3.0}/src/updates.rs +17 -0
- ferogram-0.2.2/src/auth.rs +0 -82
- {ferogram-0.2.2 → ferogram-0.3.0}/.github/workflows/publish.yml +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/.gitignore +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/LICENSE-APACHE +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/LICENSE-MIT +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/README.md +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/examples/admin_tools.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/examples/command_bot.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/examples/echo_bot.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/examples/group_management.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/examples/media_bot.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/examples/raw_invoke.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/examples/search_bot.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/examples/send_hi.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/examples/send_media.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/examples/send_message.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/examples/update_handlers.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/examples/user_management.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/examples/userbot.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/filters.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/logging.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/py.typed +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/__init__.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/api/__init__.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/api/functions.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/api/types.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/codegen.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/__init__.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/__init__.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/account.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/aicompose.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/auth.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/bots.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/channels.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/chatlists.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/contacts.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/folders.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/fragment.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/help.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/langpack.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/messages.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/payments.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/phone.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/photos.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/premium.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/smsjobs.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/stats.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/stickers.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/stories.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/updates.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/upload.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/functions/users.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/__init__.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/_base.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/account.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/aicompose.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/auth.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/bots.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/channels.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/chatlists.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/contacts.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/fragment.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/help.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/messages.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/payments.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/phone.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/photos.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/premium.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/smsjobs.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/stats.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/stickers.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/storage.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/stories.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/updates.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/upload.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw/generated/types/users.py +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/ferogram/raw_api.tl +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/src/raw.rs +0 -0
- {ferogram-0.2.2 → ferogram-0.3.0}/src/types.rs +0 -0
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
## 0.3.0 (2026-05-16)
|
|
2
|
+
|
|
3
|
+
### ferogram core upgraded to 0.5.0
|
|
4
|
+
|
|
5
|
+
The Rust dependency is now ferogram 0.5.0.
|
|
6
|
+
|
|
7
|
+
### send_poll: full PollBuilder kwargs exposed
|
|
8
|
+
|
|
9
|
+
`send_poll` now accepts all options the Rust `PollBuilder` supports: `public_voters`,
|
|
10
|
+
`shuffle_answers`, `hide_results_until_close`, `close_period`, `close_date`, and `solution`.
|
|
11
|
+
Previously only `quiz`, `correct_index`, and `multiple_choice` were wired through.
|
|
12
|
+
|
|
13
|
+
### edit_chat_default_banned_rights: send_reactions added
|
|
14
|
+
|
|
15
|
+
The `restrictions` dict now accepts `"send_reactions"` as a key. Mirrors the new
|
|
16
|
+
`send_reactions` field on `BannedRightsBuilder` added in ferogram 0.5.0.
|
|
17
|
+
|
|
18
|
+
### poll_results method
|
|
19
|
+
|
|
20
|
+
`poll_results(peer, msg_id)` is now the canonical way to fetch poll stats. Returns
|
|
21
|
+
the votes graph as a JSON string. The old `get_poll_results(peer, msg_id, poll_hash)`
|
|
22
|
+
is kept for backward compat but is deprecated; the `poll_hash` parameter is ignored
|
|
23
|
+
because ferogram 0.5.0 dropped the underlying API call it relied on.
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
# Changelog
|
|
28
|
+
|
|
29
|
+
## 0.2.3 (2026-05-14)
|
|
30
|
+
|
|
31
|
+
### Client Builder
|
|
32
|
+
|
|
33
|
+
Added 20 new kwargs to `Client(...)` so you can configure everything at construction time instead of touching internals.
|
|
34
|
+
|
|
35
|
+
Network options: `proxy` (SOCKS5 or MTProxy t.me link), `allow_ipv6`, `dc_addr`, `probe_transport`, `resilient_connect`.
|
|
36
|
+
|
|
37
|
+
Session backend: `session_string` and `in_memory` as alternatives to the default session file. Priority is `in_memory > session_string > file`.
|
|
38
|
+
|
|
39
|
+
Update handling: `catch_up`, `pfs`, `update_queue_capacity`, `update_overflow` (`"drop_oldest"` or `"drop_newest"`), `low_memory_mode`.
|
|
40
|
+
|
|
41
|
+
InitConnection identity: `device`, `system_version`, `app_version`, `lang_code`, `system_lang_code`, `lang_pack`.
|
|
42
|
+
|
|
43
|
+
Experimental: `allow_missing_channel_hash`, `auto_resolve_peers`.
|
|
44
|
+
|
|
45
|
+
### Inline Bots
|
|
46
|
+
|
|
47
|
+
`InlineArticle`, `InlinePhoto`, and `InlineDocument` now expose all their fields. Previously only the 3 required fields worked. New fields: `description`, `url`, `thumb_url`, `reply_markup` on articles; `photo_url`, `photo_width`, `photo_height`, `thumb_url`, `mime_type`, `reply_markup` on photos; `document_url`, `mime_type`, `description`, `thumb_url`, `reply_markup` on documents.
|
|
48
|
+
|
|
49
|
+
`answer_inline_query` now accepts `next_offset` for pagination and `switch_pm` to show a "go to PM" button in the results list.
|
|
50
|
+
|
|
51
|
+
`answer_inline_query_articles` is now accessible from Python. Takes a plain list of `(id, title, text)` tuples and supports `next_offset`.
|
|
52
|
+
|
|
53
|
+
`edit_inline_message` now accepts `reply_markup` so you can attach or update a keyboard when editing.
|
|
54
|
+
|
|
55
|
+
`InlineSend` now exposes `msg_id_bytes` and `msg_id_dc` so you can build an `InlineMessageId` from the send event and edit the message later.
|
|
56
|
+
|
|
57
|
+
### Participants
|
|
58
|
+
|
|
59
|
+
Ten new methods for managing group and channel members.
|
|
60
|
+
|
|
61
|
+
`get_participants(peer, limit=200)` fetches all members as a list of `ChatMember`.
|
|
62
|
+
|
|
63
|
+
`get_participants_filtered(peer, filter, limit)` fetches a filtered subset. Filter values: `"recent"`, `"admins"`, `"kicked"`, `"banned"`, `"bots"`.
|
|
64
|
+
|
|
65
|
+
`kick_participant(peer, user)` removes a user from the chat. They can rejoin if the chat is public or they have an invite link.
|
|
66
|
+
|
|
67
|
+
`ban_participant(peer, user)` permanently bans a user until an admin manually lifts it.
|
|
68
|
+
|
|
69
|
+
`ban_participant_until(peer, user, until_date)` bans until a unix timestamp, after which the ban lifts automatically.
|
|
70
|
+
|
|
71
|
+
`promote_participant(peer, user, rights)` promotes to admin with specific rights. Pass `rights=None` to grant all. Valid right strings: `"change_info"`, `"post_messages"`, `"edit_messages"`, `"delete_messages"`, `"ban_users"`, `"invite_users"`, `"pin_messages"`, `"add_admins"`, `"manage_call"`.
|
|
72
|
+
|
|
73
|
+
`demote_participant(peer, user)` strips all admin rights, leaving the user as a regular member.
|
|
74
|
+
|
|
75
|
+
`get_profile_photos(peer, limit=100)` returns a list of `(file_id, access_hash, dc_id)` tuples.
|
|
76
|
+
|
|
77
|
+
`search_peer(query)` searches the local peer cache by name or username and returns a list of peer identifier strings.
|
|
78
|
+
|
|
79
|
+
`signal_network_restored()` (sync, not async) tells the client network is back so it attempts reconnect immediately instead of waiting for the retry timer.
|
|
80
|
+
|
|
81
|
+
### Reactions and Polls
|
|
82
|
+
|
|
83
|
+
`delete_reaction(peer, msg_id, participant)` was in Rust but had no Python wrapper. Now exposed. Removes a specific user's reaction from a message, admin only.
|
|
84
|
+
|
|
85
|
+
`get_poll_results(peer, msg_id, poll_hash)` was in Rust but had no Python wrapper. Now exposed. Fetches and caches the latest poll results from Telegram.
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
## 0.2.2
|
|
90
|
+
|
|
91
|
+
Previous release.
|
|
@@ -40,12 +40,6 @@ dependencies = [
|
|
|
40
40
|
"libc",
|
|
41
41
|
]
|
|
42
42
|
|
|
43
|
-
[[package]]
|
|
44
|
-
name = "anyhow"
|
|
45
|
-
version = "1.0.102"
|
|
46
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
-
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
48
|
-
|
|
49
43
|
[[package]]
|
|
50
44
|
name = "async-trait"
|
|
51
45
|
version = "0.1.89"
|
|
@@ -171,24 +165,6 @@ dependencies = [
|
|
|
171
165
|
"cfg-if",
|
|
172
166
|
]
|
|
173
167
|
|
|
174
|
-
[[package]]
|
|
175
|
-
name = "crossbeam-channel"
|
|
176
|
-
version = "0.5.15"
|
|
177
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
-
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
179
|
-
dependencies = [
|
|
180
|
-
"crossbeam-utils",
|
|
181
|
-
]
|
|
182
|
-
|
|
183
|
-
[[package]]
|
|
184
|
-
name = "crossbeam-epoch"
|
|
185
|
-
version = "0.9.18"
|
|
186
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
-
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
188
|
-
dependencies = [
|
|
189
|
-
"crossbeam-utils",
|
|
190
|
-
]
|
|
191
|
-
|
|
192
168
|
[[package]]
|
|
193
169
|
name = "crossbeam-utils"
|
|
194
170
|
version = "0.8.21"
|
|
@@ -222,7 +198,7 @@ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
|
|
|
222
198
|
dependencies = [
|
|
223
199
|
"cfg-if",
|
|
224
200
|
"crossbeam-utils",
|
|
225
|
-
"hashbrown
|
|
201
|
+
"hashbrown",
|
|
226
202
|
"lock_api",
|
|
227
203
|
"once_cell",
|
|
228
204
|
"parking_lot_core",
|
|
@@ -256,12 +232,6 @@ version = "1.15.0"
|
|
|
256
232
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
233
|
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
258
234
|
|
|
259
|
-
[[package]]
|
|
260
|
-
name = "equivalent"
|
|
261
|
-
version = "1.0.2"
|
|
262
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
-
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
264
|
-
|
|
265
235
|
[[package]]
|
|
266
236
|
name = "errno"
|
|
267
237
|
version = "0.3.14"
|
|
@@ -274,11 +244,10 @@ dependencies = [
|
|
|
274
244
|
|
|
275
245
|
[[package]]
|
|
276
246
|
name = "ferogram"
|
|
277
|
-
version = "0.
|
|
247
|
+
version = "0.5.0"
|
|
278
248
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
-
checksum = "
|
|
249
|
+
checksum = "26b8e6012b392af393e53d65ee1de28716a6b88cb8d877da1dc007ba48e36bfd"
|
|
280
250
|
dependencies = [
|
|
281
|
-
"async-trait",
|
|
282
251
|
"base64",
|
|
283
252
|
"chrono",
|
|
284
253
|
"dashmap",
|
|
@@ -290,13 +259,11 @@ dependencies = [
|
|
|
290
259
|
"ferogram-parsers",
|
|
291
260
|
"ferogram-session",
|
|
292
261
|
"ferogram-tl-types",
|
|
293
|
-
"flate2",
|
|
294
262
|
"getrandom 0.2.17",
|
|
295
263
|
"hmac",
|
|
296
264
|
"md5",
|
|
297
265
|
"metrics",
|
|
298
266
|
"mime_guess",
|
|
299
|
-
"moka",
|
|
300
267
|
"num-bigint",
|
|
301
268
|
"num-traits",
|
|
302
269
|
"parking_lot",
|
|
@@ -305,18 +272,16 @@ dependencies = [
|
|
|
305
272
|
"serde",
|
|
306
273
|
"serde_json",
|
|
307
274
|
"sha2",
|
|
308
|
-
"socket2 0.5.10",
|
|
309
275
|
"tokio",
|
|
310
|
-
"tokio-socks",
|
|
311
276
|
"tokio-util",
|
|
312
277
|
"tracing",
|
|
313
278
|
]
|
|
314
279
|
|
|
315
280
|
[[package]]
|
|
316
281
|
name = "ferogram-connect"
|
|
317
|
-
version = "0.
|
|
282
|
+
version = "0.5.0"
|
|
318
283
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
-
checksum = "
|
|
284
|
+
checksum = "f2ca8eacc6071d1d27912bad4a0b1c742976dfeb667563ee9025afe77ef4715e"
|
|
320
285
|
dependencies = [
|
|
321
286
|
"ferogram-crypto",
|
|
322
287
|
"ferogram-mtproto",
|
|
@@ -334,9 +299,9 @@ dependencies = [
|
|
|
334
299
|
|
|
335
300
|
[[package]]
|
|
336
301
|
name = "ferogram-crypto"
|
|
337
|
-
version = "0.
|
|
302
|
+
version = "0.5.0"
|
|
338
303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
-
checksum = "
|
|
304
|
+
checksum = "7626096961dcdc3f99ce20d88159f871ffa0dcf47bbb8880731672b249f3d3eb"
|
|
340
305
|
dependencies = [
|
|
341
306
|
"aes",
|
|
342
307
|
"ctr",
|
|
@@ -349,9 +314,9 @@ dependencies = [
|
|
|
349
314
|
|
|
350
315
|
[[package]]
|
|
351
316
|
name = "ferogram-fsm"
|
|
352
|
-
version = "0.
|
|
317
|
+
version = "0.5.0"
|
|
353
318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
-
checksum = "
|
|
319
|
+
checksum = "2cdbcf96efc61b1231a3bc50b1648f9a09562579e0e2d6733169c624c634b638"
|
|
355
320
|
dependencies = [
|
|
356
321
|
"async-trait",
|
|
357
322
|
"dashmap",
|
|
@@ -362,9 +327,9 @@ dependencies = [
|
|
|
362
327
|
|
|
363
328
|
[[package]]
|
|
364
329
|
name = "ferogram-mtproto"
|
|
365
|
-
version = "0.
|
|
330
|
+
version = "0.5.0"
|
|
366
331
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
-
checksum = "
|
|
332
|
+
checksum = "57951d603c64d39c19235ed247c7924de17a1692314c40601475b05fa89ab4a9"
|
|
368
333
|
dependencies = [
|
|
369
334
|
"ferogram-crypto",
|
|
370
335
|
"ferogram-tl-types",
|
|
@@ -377,9 +342,9 @@ dependencies = [
|
|
|
377
342
|
|
|
378
343
|
[[package]]
|
|
379
344
|
name = "ferogram-mtsender"
|
|
380
|
-
version = "0.
|
|
345
|
+
version = "0.5.0"
|
|
381
346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
-
checksum = "
|
|
347
|
+
checksum = "14389d9611c18cdb84899a83836bd6928a232e977977fad6f506803f515f13eb"
|
|
383
348
|
dependencies = [
|
|
384
349
|
"ferogram-connect",
|
|
385
350
|
"ferogram-crypto",
|
|
@@ -397,9 +362,9 @@ dependencies = [
|
|
|
397
362
|
|
|
398
363
|
[[package]]
|
|
399
364
|
name = "ferogram-parsers"
|
|
400
|
-
version = "0.
|
|
365
|
+
version = "0.5.0"
|
|
401
366
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
-
checksum = "
|
|
367
|
+
checksum = "7f9773d05c065c96fad11da5e1237200fca4af1c00c8789ca73b15b756211e03"
|
|
403
368
|
dependencies = [
|
|
404
369
|
"ferogram-tl-types",
|
|
405
370
|
"pulldown-cmark",
|
|
@@ -407,7 +372,7 @@ dependencies = [
|
|
|
407
372
|
|
|
408
373
|
[[package]]
|
|
409
374
|
name = "ferogram-py"
|
|
410
|
-
version = "0.
|
|
375
|
+
version = "0.3.0"
|
|
411
376
|
dependencies = [
|
|
412
377
|
"ferogram",
|
|
413
378
|
"hex",
|
|
@@ -418,9 +383,9 @@ dependencies = [
|
|
|
418
383
|
|
|
419
384
|
[[package]]
|
|
420
385
|
name = "ferogram-session"
|
|
421
|
-
version = "0.
|
|
386
|
+
version = "0.5.0"
|
|
422
387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
-
checksum = "
|
|
388
|
+
checksum = "b6ee26c7360e25ed9d5c9cfb2f6a606bd47224ed65a3d24416ebe4ad4729ba48"
|
|
424
389
|
dependencies = [
|
|
425
390
|
"base64",
|
|
426
391
|
"tracing",
|
|
@@ -428,24 +393,24 @@ dependencies = [
|
|
|
428
393
|
|
|
429
394
|
[[package]]
|
|
430
395
|
name = "ferogram-tl-gen"
|
|
431
|
-
version = "0.
|
|
396
|
+
version = "0.5.0"
|
|
432
397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
-
checksum = "
|
|
398
|
+
checksum = "4b4f9cc8fbb791e614151d8a9a092831e2bd6a089bafd58a38c9058a777c4d02"
|
|
434
399
|
dependencies = [
|
|
435
400
|
"ferogram-tl-parser",
|
|
436
401
|
]
|
|
437
402
|
|
|
438
403
|
[[package]]
|
|
439
404
|
name = "ferogram-tl-parser"
|
|
440
|
-
version = "0.
|
|
405
|
+
version = "0.5.0"
|
|
441
406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
-
checksum = "
|
|
407
|
+
checksum = "31a681429fc6a16cc93ce40e5e1f3b254c5c81e3ec2ecadf6ccab41dd455c93e"
|
|
443
408
|
|
|
444
409
|
[[package]]
|
|
445
410
|
name = "ferogram-tl-types"
|
|
446
|
-
version = "0.
|
|
411
|
+
version = "0.5.0"
|
|
447
412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
-
checksum = "
|
|
413
|
+
checksum = "6fa2804f4217d92e6765b3284412004faea0fd1fab48cf6dc197a2ad64e6ee51"
|
|
449
414
|
dependencies = [
|
|
450
415
|
"ferogram-tl-gen",
|
|
451
416
|
"ferogram-tl-parser",
|
|
@@ -467,12 +432,6 @@ dependencies = [
|
|
|
467
432
|
"miniz_oxide",
|
|
468
433
|
]
|
|
469
434
|
|
|
470
|
-
[[package]]
|
|
471
|
-
name = "foldhash"
|
|
472
|
-
version = "0.1.5"
|
|
473
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
-
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
475
|
-
|
|
476
435
|
[[package]]
|
|
477
436
|
name = "form_urlencoded"
|
|
478
437
|
version = "1.2.2"
|
|
@@ -611,45 +570,17 @@ dependencies = [
|
|
|
611
570
|
"cfg-if",
|
|
612
571
|
"js-sys",
|
|
613
572
|
"libc",
|
|
614
|
-
"r-efi
|
|
573
|
+
"r-efi",
|
|
615
574
|
"wasip2",
|
|
616
575
|
"wasm-bindgen",
|
|
617
576
|
]
|
|
618
577
|
|
|
619
|
-
[[package]]
|
|
620
|
-
name = "getrandom"
|
|
621
|
-
version = "0.4.2"
|
|
622
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
-
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
624
|
-
dependencies = [
|
|
625
|
-
"cfg-if",
|
|
626
|
-
"libc",
|
|
627
|
-
"r-efi 6.0.0",
|
|
628
|
-
"wasip2",
|
|
629
|
-
"wasip3",
|
|
630
|
-
]
|
|
631
|
-
|
|
632
578
|
[[package]]
|
|
633
579
|
name = "hashbrown"
|
|
634
580
|
version = "0.14.5"
|
|
635
581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
582
|
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
637
583
|
|
|
638
|
-
[[package]]
|
|
639
|
-
name = "hashbrown"
|
|
640
|
-
version = "0.15.5"
|
|
641
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
-
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
643
|
-
dependencies = [
|
|
644
|
-
"foldhash",
|
|
645
|
-
]
|
|
646
|
-
|
|
647
|
-
[[package]]
|
|
648
|
-
name = "hashbrown"
|
|
649
|
-
version = "0.17.0"
|
|
650
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
-
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
652
|
-
|
|
653
584
|
[[package]]
|
|
654
585
|
name = "heck"
|
|
655
586
|
version = "0.5.0"
|
|
@@ -875,12 +806,6 @@ dependencies = [
|
|
|
875
806
|
"zerovec",
|
|
876
807
|
]
|
|
877
808
|
|
|
878
|
-
[[package]]
|
|
879
|
-
name = "id-arena"
|
|
880
|
-
version = "2.3.0"
|
|
881
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
-
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
883
|
-
|
|
884
809
|
[[package]]
|
|
885
810
|
name = "idna"
|
|
886
811
|
version = "1.1.0"
|
|
@@ -902,18 +827,6 @@ dependencies = [
|
|
|
902
827
|
"icu_properties",
|
|
903
828
|
]
|
|
904
829
|
|
|
905
|
-
[[package]]
|
|
906
|
-
name = "indexmap"
|
|
907
|
-
version = "2.14.0"
|
|
908
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
-
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
910
|
-
dependencies = [
|
|
911
|
-
"equivalent",
|
|
912
|
-
"hashbrown 0.17.0",
|
|
913
|
-
"serde",
|
|
914
|
-
"serde_core",
|
|
915
|
-
]
|
|
916
|
-
|
|
917
830
|
[[package]]
|
|
918
831
|
name = "indoc"
|
|
919
832
|
version = "2.0.7"
|
|
@@ -966,12 +879,6 @@ dependencies = [
|
|
|
966
879
|
"wasm-bindgen",
|
|
967
880
|
]
|
|
968
881
|
|
|
969
|
-
[[package]]
|
|
970
|
-
name = "leb128fmt"
|
|
971
|
-
version = "0.1.0"
|
|
972
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
-
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
974
|
-
|
|
975
882
|
[[package]]
|
|
976
883
|
name = "libc"
|
|
977
884
|
version = "0.2.186"
|
|
@@ -1073,23 +980,6 @@ dependencies = [
|
|
|
1073
980
|
"windows-sys 0.61.2",
|
|
1074
981
|
]
|
|
1075
982
|
|
|
1076
|
-
[[package]]
|
|
1077
|
-
name = "moka"
|
|
1078
|
-
version = "0.12.15"
|
|
1079
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
-
checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046"
|
|
1081
|
-
dependencies = [
|
|
1082
|
-
"crossbeam-channel",
|
|
1083
|
-
"crossbeam-epoch",
|
|
1084
|
-
"crossbeam-utils",
|
|
1085
|
-
"equivalent",
|
|
1086
|
-
"parking_lot",
|
|
1087
|
-
"portable-atomic",
|
|
1088
|
-
"smallvec",
|
|
1089
|
-
"tagptr",
|
|
1090
|
-
"uuid",
|
|
1091
|
-
]
|
|
1092
|
-
|
|
1093
983
|
[[package]]
|
|
1094
984
|
name = "num-bigint"
|
|
1095
985
|
version = "0.4.6"
|
|
@@ -1193,16 +1083,6 @@ dependencies = [
|
|
|
1193
1083
|
"zerocopy",
|
|
1194
1084
|
]
|
|
1195
1085
|
|
|
1196
|
-
[[package]]
|
|
1197
|
-
name = "prettyplease"
|
|
1198
|
-
version = "0.2.37"
|
|
1199
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1200
|
-
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1201
|
-
dependencies = [
|
|
1202
|
-
"proc-macro2",
|
|
1203
|
-
"syn",
|
|
1204
|
-
]
|
|
1205
|
-
|
|
1206
1086
|
[[package]]
|
|
1207
1087
|
name = "proc-macro2"
|
|
1208
1088
|
version = "1.0.106"
|
|
@@ -1377,12 +1257,6 @@ version = "5.3.0"
|
|
|
1377
1257
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1378
1258
|
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1379
1259
|
|
|
1380
|
-
[[package]]
|
|
1381
|
-
name = "r-efi"
|
|
1382
|
-
version = "6.0.0"
|
|
1383
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1384
|
-
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
1385
|
-
|
|
1386
1260
|
[[package]]
|
|
1387
1261
|
name = "rand"
|
|
1388
1262
|
version = "0.9.4"
|
|
@@ -1532,12 +1406,6 @@ version = "1.2.0"
|
|
|
1532
1406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
1407
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1534
1408
|
|
|
1535
|
-
[[package]]
|
|
1536
|
-
name = "semver"
|
|
1537
|
-
version = "1.0.28"
|
|
1538
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
-
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1540
|
-
|
|
1541
1409
|
[[package]]
|
|
1542
1410
|
name = "serde"
|
|
1543
1411
|
version = "1.0.228"
|
|
@@ -1712,12 +1580,6 @@ dependencies = [
|
|
|
1712
1580
|
"syn",
|
|
1713
1581
|
]
|
|
1714
1582
|
|
|
1715
|
-
[[package]]
|
|
1716
|
-
name = "tagptr"
|
|
1717
|
-
version = "0.2.0"
|
|
1718
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
-
checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
|
|
1720
|
-
|
|
1721
1583
|
[[package]]
|
|
1722
1584
|
name = "target-lexicon"
|
|
1723
1585
|
version = "0.13.5"
|
|
@@ -1848,7 +1710,6 @@ dependencies = [
|
|
|
1848
1710
|
"bytes",
|
|
1849
1711
|
"futures-core",
|
|
1850
1712
|
"futures-sink",
|
|
1851
|
-
"futures-util",
|
|
1852
1713
|
"pin-project-lite",
|
|
1853
1714
|
"tokio",
|
|
1854
1715
|
]
|
|
@@ -1960,12 +1821,6 @@ version = "0.2.2"
|
|
|
1960
1821
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1961
1822
|
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1962
1823
|
|
|
1963
|
-
[[package]]
|
|
1964
|
-
name = "unicode-xid"
|
|
1965
|
-
version = "0.2.6"
|
|
1966
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1967
|
-
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
1968
|
-
|
|
1969
1824
|
[[package]]
|
|
1970
1825
|
name = "unindent"
|
|
1971
1826
|
version = "0.2.4"
|
|
@@ -1996,17 +1851,6 @@ version = "1.0.4"
|
|
|
1996
1851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
1852
|
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1998
1853
|
|
|
1999
|
-
[[package]]
|
|
2000
|
-
name = "uuid"
|
|
2001
|
-
version = "1.23.1"
|
|
2002
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2003
|
-
checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76"
|
|
2004
|
-
dependencies = [
|
|
2005
|
-
"getrandom 0.4.2",
|
|
2006
|
-
"js-sys",
|
|
2007
|
-
"wasm-bindgen",
|
|
2008
|
-
]
|
|
2009
|
-
|
|
2010
1854
|
[[package]]
|
|
2011
1855
|
name = "version_check"
|
|
2012
1856
|
version = "0.9.5"
|
|
@@ -2034,16 +1878,7 @@ version = "1.0.3+wasi-0.2.9"
|
|
|
2034
1878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2035
1879
|
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
2036
1880
|
dependencies = [
|
|
2037
|
-
"wit-bindgen
|
|
2038
|
-
]
|
|
2039
|
-
|
|
2040
|
-
[[package]]
|
|
2041
|
-
name = "wasip3"
|
|
2042
|
-
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
2043
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
|
-
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
2045
|
-
dependencies = [
|
|
2046
|
-
"wit-bindgen 0.51.0",
|
|
1881
|
+
"wit-bindgen",
|
|
2047
1882
|
]
|
|
2048
1883
|
|
|
2049
1884
|
[[package]]
|
|
@@ -2101,40 +1936,6 @@ dependencies = [
|
|
|
2101
1936
|
"unicode-ident",
|
|
2102
1937
|
]
|
|
2103
1938
|
|
|
2104
|
-
[[package]]
|
|
2105
|
-
name = "wasm-encoder"
|
|
2106
|
-
version = "0.244.0"
|
|
2107
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2108
|
-
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
2109
|
-
dependencies = [
|
|
2110
|
-
"leb128fmt",
|
|
2111
|
-
"wasmparser",
|
|
2112
|
-
]
|
|
2113
|
-
|
|
2114
|
-
[[package]]
|
|
2115
|
-
name = "wasm-metadata"
|
|
2116
|
-
version = "0.244.0"
|
|
2117
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2118
|
-
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
2119
|
-
dependencies = [
|
|
2120
|
-
"anyhow",
|
|
2121
|
-
"indexmap",
|
|
2122
|
-
"wasm-encoder",
|
|
2123
|
-
"wasmparser",
|
|
2124
|
-
]
|
|
2125
|
-
|
|
2126
|
-
[[package]]
|
|
2127
|
-
name = "wasmparser"
|
|
2128
|
-
version = "0.244.0"
|
|
2129
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2130
|
-
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
2131
|
-
dependencies = [
|
|
2132
|
-
"bitflags",
|
|
2133
|
-
"hashbrown 0.15.5",
|
|
2134
|
-
"indexmap",
|
|
2135
|
-
"semver",
|
|
2136
|
-
]
|
|
2137
|
-
|
|
2138
1939
|
[[package]]
|
|
2139
1940
|
name = "web-sys"
|
|
2140
1941
|
version = "0.3.95"
|
|
@@ -2379,100 +2180,12 @@ version = "0.53.1"
|
|
|
2379
2180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2380
2181
|
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
2381
2182
|
|
|
2382
|
-
[[package]]
|
|
2383
|
-
name = "wit-bindgen"
|
|
2384
|
-
version = "0.51.0"
|
|
2385
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2386
|
-
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
2387
|
-
dependencies = [
|
|
2388
|
-
"wit-bindgen-rust-macro",
|
|
2389
|
-
]
|
|
2390
|
-
|
|
2391
2183
|
[[package]]
|
|
2392
2184
|
name = "wit-bindgen"
|
|
2393
2185
|
version = "0.57.1"
|
|
2394
2186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2395
2187
|
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
2396
2188
|
|
|
2397
|
-
[[package]]
|
|
2398
|
-
name = "wit-bindgen-core"
|
|
2399
|
-
version = "0.51.0"
|
|
2400
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2401
|
-
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
2402
|
-
dependencies = [
|
|
2403
|
-
"anyhow",
|
|
2404
|
-
"heck",
|
|
2405
|
-
"wit-parser",
|
|
2406
|
-
]
|
|
2407
|
-
|
|
2408
|
-
[[package]]
|
|
2409
|
-
name = "wit-bindgen-rust"
|
|
2410
|
-
version = "0.51.0"
|
|
2411
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2412
|
-
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
2413
|
-
dependencies = [
|
|
2414
|
-
"anyhow",
|
|
2415
|
-
"heck",
|
|
2416
|
-
"indexmap",
|
|
2417
|
-
"prettyplease",
|
|
2418
|
-
"syn",
|
|
2419
|
-
"wasm-metadata",
|
|
2420
|
-
"wit-bindgen-core",
|
|
2421
|
-
"wit-component",
|
|
2422
|
-
]
|
|
2423
|
-
|
|
2424
|
-
[[package]]
|
|
2425
|
-
name = "wit-bindgen-rust-macro"
|
|
2426
|
-
version = "0.51.0"
|
|
2427
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2428
|
-
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
2429
|
-
dependencies = [
|
|
2430
|
-
"anyhow",
|
|
2431
|
-
"prettyplease",
|
|
2432
|
-
"proc-macro2",
|
|
2433
|
-
"quote",
|
|
2434
|
-
"syn",
|
|
2435
|
-
"wit-bindgen-core",
|
|
2436
|
-
"wit-bindgen-rust",
|
|
2437
|
-
]
|
|
2438
|
-
|
|
2439
|
-
[[package]]
|
|
2440
|
-
name = "wit-component"
|
|
2441
|
-
version = "0.244.0"
|
|
2442
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2443
|
-
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
2444
|
-
dependencies = [
|
|
2445
|
-
"anyhow",
|
|
2446
|
-
"bitflags",
|
|
2447
|
-
"indexmap",
|
|
2448
|
-
"log",
|
|
2449
|
-
"serde",
|
|
2450
|
-
"serde_derive",
|
|
2451
|
-
"serde_json",
|
|
2452
|
-
"wasm-encoder",
|
|
2453
|
-
"wasm-metadata",
|
|
2454
|
-
"wasmparser",
|
|
2455
|
-
"wit-parser",
|
|
2456
|
-
]
|
|
2457
|
-
|
|
2458
|
-
[[package]]
|
|
2459
|
-
name = "wit-parser"
|
|
2460
|
-
version = "0.244.0"
|
|
2461
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2462
|
-
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
2463
|
-
dependencies = [
|
|
2464
|
-
"anyhow",
|
|
2465
|
-
"id-arena",
|
|
2466
|
-
"indexmap",
|
|
2467
|
-
"log",
|
|
2468
|
-
"semver",
|
|
2469
|
-
"serde",
|
|
2470
|
-
"serde_derive",
|
|
2471
|
-
"serde_json",
|
|
2472
|
-
"unicode-xid",
|
|
2473
|
-
"wasmparser",
|
|
2474
|
-
]
|
|
2475
|
-
|
|
2476
2189
|
[[package]]
|
|
2477
2190
|
name = "writeable"
|
|
2478
2191
|
version = "0.6.3"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "ferogram-py"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.3.0"
|
|
4
4
|
edition = "2024"
|
|
5
5
|
description = "Python bindings for ferogram (Rust MTProto)"
|
|
6
6
|
license = "MIT OR Apache-2.0"
|
|
@@ -12,7 +12,7 @@ crate-type = ["cdylib"]
|
|
|
12
12
|
|
|
13
13
|
[dependencies]
|
|
14
14
|
hex = "0.4"
|
|
15
|
-
ferogram = "0.
|
|
15
|
+
ferogram = "0.5.0"
|
|
16
16
|
pyo3 = { version = "0.24", features = ["extension-module", "abi3-py313"] }
|
|
17
17
|
pyo3-async-runtimes = { version = "0.24", features = ["tokio-runtime"] }
|
|
18
18
|
tokio = { version = "1", features = ["full"] }
|