-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
31 lines (27 loc) · 1.02 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
[package]
name = "excalidocker"
version = "0.1.8"
edition = "2021"
authors = ["Evgeny Tolbakov <[email protected]>"]
description = "Utility to convert your docker-compose into excalidraw"
repository = "https://github.com/etolbakov/excalidocker-rs"
license = "MIT"
readme = "./README.md"
keywords = ["docker", "docker-compose", "excalidraw"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
serde_yaml = "0.9.21"
clap = {version = "4.3.8", features = ["derive", "cargo"]}
thiserror = "1.0.40"
rand = "0.8.5"
isahc = "1.7"
phf = { version = "0.11", features = ["macros"] }
# linked list to store the containers in the order they appear in the docker-compose.yaml
indexmap = { version = "2.0.0", features = ["serde"] }
# https://github.com/sfackler/rust-openssl/issues/1021
openssl = { version = "0.10", features = ["vendored"] }
[profile.release]
debug = false