-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
28 lines (25 loc) · 912 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
[package]
name = "diff-xjoules"
version = "1.1.0"
edition = "2021"
authors = ["Benjamin Danglot <[email protected]>"]
description = " diff-xjoules is a tool to run in your continuous integration to measure the impact of commits on the energy consumption of the program"
documentation = "https://github.com/davidson-consulting/diff-xjoules/tree/main/doc"
homepage = "https://davidson-consulting.github.io/diff-xjoules/"
readme = "https://github.com/davidson-consulting/diff-xjoules/blob/main/README.md"
repository = "https://github.com/davidson-consulting/diff-xjoules"
keywords = ["sustainability", "continuous-integration"]
[[bin]]
name = "diff_xjoules"
path = "src/main.rs"
[lib]
name = "diff_xjoules_lib"
path = "src/lib.rs"
[dependencies]
clap = { version = "3.0", features = ["derive"] }
serde = "1.0.117"
serde_derive = "1.0.117"
serde_json = "1.0.59"
serde_yaml = "0.8"
rand = "0.8.5"
handlebars = "3"