-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 1.15 KB
/
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
[package]
name = "dtui"
version = "0.1.0"
authors = ["The0x539 <[email protected]>"]
edition = "2018"
[dependencies]
serde = "*"
tokio = { version = "1.19.2", features = ["time", "net", "sync", "macros", "rt-multi-thread"] }
cursive = { version = "0.17.0", default-features = false, features = ["crossterm-backend"] }
deluge-rpc = { git = "https://github.com/The0x539/rust-deluge-rpc.git", branch = "trunk" }
bytesize = "1.1.0"
cursive-tabs = "0.7.0"
cursive_buffered_backend = "0.6.0"
futures = "*"
fnv = "1.0.7"
ryu = "1.0.10"
async-trait = "0.1.56"
epochs = "0.2.4"
static_assertions = "1.1.0"
uuid = { version = "1.1.2", features = ["v4", "serde"] }
itertools = "0.10.3"
indexmap = { version = "1.9.0", features = ["serde-1"] }
confy = { git = "https://github.com/rust-cli/confy.git", default_features = false, features = ["yaml_conf"] }
lazy_static = "1.4.0"
pretty_dtoa = "0.3.0"
once_cell = "1.12.0"
[patch.crates-io]
deluge-rpc-macro = { git = "https://github.com/The0x539/deluge-macro.git", branch = "trunk" }
rencode = { git = "https://github.com/The0x539/rust-rencode.git", branch = "trunk" }
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"