changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / rust/lib/tenex/Cargo.toml

changeset 698: 96958d3eb5b0
parent: 0abefe2a369b
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 [package]
2 name = "tenex"
3 version = "0.1.0"
4 edition = "2021"
5 
6 [features]
7 util = ["tenex-util"]
8 oauth = ["tenex-util/oauth2"]
9 progress = ["tenex-util/indicatif"]
10 default = ["util"]
11 full = ["ipapi","nws","freesound","gitlab","util","oauth","progress","aws"]
12 
13 [dependencies]
14 tenex-util = { path = "util", optional = true }
15 ipapi = { path = "models/ipapi", optional = true }
16 aws = { path = "models/aws", optional = true }
17 gitlab = { path = "models/gitlab", optional = true }
18 nws = { path = "models/nws", optional = true }
19 freesound = { path = "models/freesound", optional = true }
20 tokio = "1.37"
21 serde_json = "1.0.116"
22 serde = { version = "1.0.200", features = ["derive"] }
23 chrono = { version = "0.4.38", features = ["serde"] }
24 jwt = { version = "0.15.0", optional = true }
25 oauth2 = { version = "4.4.2", optional = true }
26 
27 [dev-dependencies]
28 tokio = { version = "1.37", features = ["full"] }
29 
30 [[example]]
31 name = "freesound"
32 path = "examples/freesound.rs"
33 required-features = ["freesound"]