Skip to content

Commit e7d5fe1

Browse files
authored
Add package metadata (#56)
1 parent 990c8f9 commit e7d5fe1

File tree

2 files changed

+33
-8
lines changed

2 files changed

+33
-8
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
**/*.rs.bk
33
Cargo.lock
44
__pycache__
5+
.vscode/
6+
.pytest_cache/
57

68
# Environments
79
.env

Cargo.toml

+31-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,33 @@
11
[package]
2-
name = "datadog-api-client"
3-
version = "1.0.0"
42
authors = ["[email protected]"]
5-
description = "Collection of all Datadog Public endpoints."
6-
license = "Apache-2.0"
3+
categories = [
4+
"api-bindings",
5+
"config",
6+
"web-programming::http-client"
7+
]
8+
description = "Rust client for the Datadog API."
79
edition = "2021"
10+
include = [
11+
"/build.rs",
12+
"/Cargo.toml",
13+
"/LICENSE-3rdparty.csv",
14+
"/LICENSE",
15+
"/NOTICE",
16+
"/README.md",
17+
"/src/**/*",
18+
"/tests/**/*",
19+
]
20+
keywords = [
21+
"datadog",
22+
"api",
23+
"client",
24+
"openapi"
25+
]
26+
license = "Apache-2.0"
27+
name = "datadog-api-client"
28+
readme = "README.md"
29+
repository = "https://github.com/DataDog/datadog-api-client-rust"
30+
version = "0.0.1"
831

932
[dependencies]
1033
async-stream = "0.3.5"
@@ -23,18 +46,18 @@ rustc_version = "0.4.0"
2346

2447
[dev-dependencies]
2548
chrono = "0.4.31"
49+
convert_case = "0.6.0"
2650
cucumber = "0.20.2"
2751
env_logger = "0.10.0"
2852
futures = "0.3.28"
53+
futures-util = "0.3.30"
54+
minijinja = "1.0.10"
2955
regex = "1.9.5"
3056
rvcr = { git = "https://github.com/nkzou/rvcr.git", rev = "b8f84bc0dfacd539fdc6f7446637c6276dcbb57c" }
31-
vcr-cassette = "2.0.1"
3257
sha256 = "1.4.0"
3358
tokio = { version = "1.10", features = ["macros", "rt-multi-thread", "time"] }
34-
minijinja = "1.0.10"
35-
convert_case = "0.6.0"
36-
futures-util = "0.3.30"
3759
urlencoding = "2.1.3"
60+
vcr-cassette = "2.0.1"
3861

3962
[[test]]
4063
harness = false # allows Cucumber to print output instead of libtest

0 commit comments

Comments
 (0)