-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (36 loc) · 951 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
42
43
44
[package]
name = "pipe2drive"
version = "0.3.0"
authors = ["Dennis Værum <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["colored"]
[dependencies]
google-drive3 = { version = "4.0.4" }
tokio = { version = "^1.0", features = ["full"] }
hyper = { version = "^0.14", features = ["full"] }
hyper-rustls = "^0.23.0"
serde = "^1.0"
serde_json = "^1.0"
age = { version = "*", features = ["async"] }
secrecy = "*"
ringbuf = "*"
futures = { version = "*" }
tokio-pipe = { version="*" }
async-compat = "*"
pin-project = "*"
tokio-util = { version = "*", features = ["compat"] }
chacha20poly1305 = "*"
log = "*"
clap = { version = "*", features = ["derive"] }
bytesize = "*"
regex = "*"
atty = "*"
dirs = "*"
lazy_static = "*"
prettytable-rs = "*"
chrono = "*"
colored = { version = "*", optional = true }
[dev-dependencies]
function_name = "*"