forked from ankit-chaubey/layer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 1005 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 1005 Bytes
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
[workspace]
resolver = "2"
members = [
"layer-tl-parser",
"layer-tl-gen",
"layer-tl-types",
"layer-crypto",
"layer-mtproto",
"layer",
"layer-connect",
"layer-client", # high-level Client library
"layer-app", # binary: login + send message
]
[workspace.package]
version = "0.2.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/layer"
homepage = "https://github.com/ankit-chaubey/layer"
[workspace.dependencies]
layer-tl-parser = { path = "layer-tl-parser", version = "0.2.0" }
layer-tl-gen = { path = "layer-tl-gen", version = "0.2.0" }
layer-tl-types = { path = "layer-tl-types", version = "0.2.0" }
layer-crypto = { path = "layer-crypto", version = "0.2.0" }
layer-mtproto = { path = "layer-mtproto", version = "0.2.1" }
layer-client = { path = "layer-client", version = "0.2.1" }