forked from Jachdich/aster-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 796 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 796 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
[package]
name = "cli"
version = "0.1.0"
authors = ["Jachdich <jamesedkitching@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
termion = "*"
futures = "*"
tokio = { version = "*", features = ["full", "tracing"] }
tokio-util = { version = "*", features = ["full"] }
tokio-stream = { version = "*" }
tokio-native-tls = "*"
native-tls = "*"
regex = "*"
dirs = "*"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_repr = "0.1.19"
base64 = "*"
image = "0.24.6"
dct-tiv = { git = "https://github.com/Jachdich/dct-tiv" }
fmtstring = { git = "https://github.com/Jachdich/fmtstring" }
notify-rust = { version = "4.11.0", default-features = false, features = ["d"] }
once_cell = "*"