-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 806 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 806 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
32
[package]
authors = ["Kevin Del Castillo <quebin31@gmail.com>"]
categories = ["api-bindings", "filesystem"]
description = "High-level interface for the libmtp C library."
edition = "2018"
keywords = ["mtp", "libmtp", "android", "players"]
license = "MIT"
name = "libmtp-rs"
readme = "README.md"
repository = "https://github.com/quebin31/libmtp-rs"
version = "0.7.7"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["libmtp-sys"]
[dependencies]
bitflags = "1.2.1"
cfg-if = "1.0.0"
chrono = "0.4.19"
derivative = "2.1.1"
libc = "0.2.80"
libmtp-sys = {version = "1.1.17-5", path = "./libmtp-sys"}
num-derive = "0.3.2"
num-traits = "0.2.12"
thiserror = "1.0.21"
[dev-dependencies]
anyhow = "1.0.33"
bytefmt = "0.1.7"
text_io = "0.1.8"