forked from FoxAmes/timewarrior-jirapush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 887 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
[package]
name = "timewarrior_jirapush"
version = "0.3.0"
authors = ["Forest Ames <[email protected]>"]
edition = "2018"
description = "TimeWarrior-JiraPush is a configurable TimeWarrior Extension that uploads timewarrior intervals to Jira as work logs."
readme = "README"
homepage = "https://gitlab.com/FoxAmes/timewarrior-jirapush"
repository = "https://gitlab.com/FoxAmes/timewarrior-jirapush"
license = "MIT"
[[bin]]
name = "jirapush"
path = "src/main.rs"
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
[dependencies]
"env_logger" = "0.8.3"
"futures" = "0.3.15"
"log" = "0.4.14"
"regex" = "1.4.5"
"reqwest" = { version = "0.11.2", features = ["blocking"] }
"semver" = "0.11.0"
"serde_json" = "1.0.64"
"serde" = { version = "1.0.125", features = ["derive"] }
"time" = { version = "0.2.26", features = ["serde"] }
"tokio" = { version = "1.5.0", features = ["full"] }