-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (33 loc) · 900 Bytes
/
Cargo.toml
File metadata and controls
34 lines (33 loc) · 900 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
33
34
[package]
name = "torn"
version = "0.2.0"
authors = ["Simon Dickson <simonhdickson@users.noreply.github.com>"]
edition = "2024"
description = """
A minimalist DVD/Bru-ray ripper.
"""
documentation = "https://github.com/simonhdickson/torn"
homepage = "https://github.com/simonhdickson/torn"
repository = "https://github.com/simonhdickson/torn"
readme = "readme.MD"
license = "MIT"
[dependencies]
argh = "0.1"
config = { version = "0.15", default-features = false, features = ["toml"] }
pretty_env_logger = "0.5"
failure = "0.1"
futures = "0.3"
heck = "0.5"
humantime-serde = "1.1"
log = "0.4"
serde = "1.0"
serde_derive = "1.0"
tokio = { version = "1.46", features = ["full"] }
toml = "0.9"
udev = "0.9"
axum = "0.7"
tower = "0.4"
tower-http = { version = "0.5", features = ["fs"] }
serde_json = "1.0"
uuid = { version = "1.17", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }