forked from ankit-chaubey/ferogram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 1.3 KB
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 1.3 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
[workspace]
resolver = "2"
members = [
"ferogram-tl-parser",
"ferogram-tl-gen",
"ferogram-tl-types",
"ferogram-crypto",
"ferogram-mtproto",
"ferogram-session",
"ferogram-parsers",
"ferogram",
"ferogram-connect",
"ferogram-app",
"ferogram-bot",
]
[workspace.package]
version = "0.3.2"
edition = "2024"
license = "MIT OR Apache-2.0"
readme = "README.md"
authors = ["Ankit Chaubey <ankitchaubey.dev@gmail.com>"]
repository = "https://github.com/ankit-chaubey/ferogram"
homepage = "https://github.com/ankit-chaubey/ferogram"
documentation = "https://docs.rs/ferogram"
[workspace.dependencies]
ferogram-tl-parser = { path = "ferogram-tl-parser", version = "0.3.2" }
ferogram-tl-gen = { path = "ferogram-tl-gen", version = "0.3.2" }
ferogram-tl-types = { path = "ferogram-tl-types", version = "0.3.2" }
ferogram-crypto = { path = "ferogram-crypto", version = "0.3.2" }
ferogram-mtproto = { path = "ferogram-mtproto", version = "0.3.2" }
ferogram-session = { path = "ferogram-session", version = "0.3.2" }
ferogram-parsers = { path = "ferogram-parsers", version = "0.3.2" }
ferogram = { path = "ferogram", version = "0.3.2" }
tracing = { version = "0.1", features = ["log"] }