kitchen-freezer/Cargo.toml

26 lines
642 B
TOML
Raw Normal View History

2021-02-18 12:02:04 +01:00
[package]
name = "my-tasks"
version = "0.1.0"
authors = ["Jérôme"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2021-03-22 23:42:41 +01:00
[features]
integration_tests = ["mock_version_tag"]
mock_version_tag = []
2021-02-18 12:02:04 +01:00
[dependencies]
2021-02-21 00:14:55 +01:00
env_logger = "0.8"
log = "0.4"
2021-02-24 23:49:20 +01:00
tokio = { version = "1.2", features = ["macros", "rt", "rt-multi-thread"]}
2021-02-20 00:10:05 +01:00
reqwest = "0.11"
minidom = "0.13"
2021-02-24 17:38:08 +01:00
url = { version = "2.2", features = ["serde"] }
2021-02-21 00:16:40 +01:00
bitflags = "1.2"
2021-02-24 17:38:08 +01:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2021-02-25 00:47:39 +01:00
async-trait = "0.1"
2021-02-25 00:50:49 +01:00
uuid = { version = "0.8", features = ["v4"] }
2021-03-21 00:11:35 +01:00
sanitize-filename = "0.3"