-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (38 loc) · 1.07 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
38
39
40
41
42
43
44
45
# Copyright 2022 Florian Eich <[email protected]>
#
# This work is licensed under the Apache License, Version 2.0. You should have
# received a copy of this license along with the source code. If that is not
# the case, please find one at http://www.apache.org/licenses/LICENSE-2.0.
[package]
name = "magritte"
description = "Ceci n'est pas une pipe"
version = "1.0.0"
authors = ["Florian Eich <[email protected]>"]
edition = "2021"
[dependencies]
array_tool = "1.0"
async-trait = "0.1"
boolinator = "2.4"
clap = { version = "3.0", features = ["derive"] }
color-eyre = "0.6"
derivative = "2.2"
downcast-rs = "1.2"
eyre = "0.6"
futures = "0.3"
indicatif = "0.17"
indoc = "1.0"
itertools = "0.10"
toml = "0.5"
# serde
serde = { version = "1.0", features = ["derive"] }
serde_closure = "0.3"
# tokio
tokio = { version = "1.2", features = ["full", "tracing"] }
tokio-postgres = "0.7"
tokio-stream = { version = "0.1", features = ["default", "sync"] }
tracing = "0.1"
tracing-subscriber = "0.3"
console-subscriber = "0.1"
[dev-dependencies]
pretty_assertions = "1.2"
wildmatch = "2.1"