-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
41 lines (37 loc) · 961 Bytes
/
Cargo.toml
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
[workspace]
resolver = "2"
members = [
"rsbinder",
"rsbinder-aidl",
"rsbinder-tools",
"tests",
"example-hello",
]
[workspace.package]
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
authors = ["Jeff Kim <hiking90@gmail.com>"]
homepage = "https://hiking90.github.io/rsbinder-book/"
repository = "https://github.com/hiking90/rsbinder"
rust-version = "1.74"
keywords = ["android", "binder", "aidl", "linux"]
[workspace.dependencies]
lazy_static = "1.4"
rsbinder = { version = "0.3.0", path = "rsbinder" }
log = "0.4"
env_logger = "0.11"
anstyle = "1.0"
tokio = { version = "1.37", default-features = false }
async-trait = "0.1"
rsbinder-aidl = { version = "0.3.0", path = "rsbinder-aidl" }
pest = "2.7"
pest_derive = "2.7"
convert_case = "0.6"
serde = { version = "1.0", features = ["derive"] }
tera = "1.19"
similar = "2.4"
pretty_hex = { version = "0.4", package = "pretty-hex" }
downcast-rs = "1.2"
rustix = "0.38"
clap = "4.5"