-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into metrics/expiry
- Loading branch information
Showing
9 changed files
with
290 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Contributing | ||
|
||
## Protocol Buffers | ||
|
||
The `build.rs` script in this library depends upon the | ||
[Protocol Buffers compiler][protoc]. Be sure that `protoc` is installed and | ||
available within your `PATH`. | ||
|
||
[protoc]: https://docs.rs/prost-build/latest/prost_build/#sourcing-protoc | ||
|
||
## Python Dependencies | ||
|
||
This repository uses the [`prometheus-client`][client-python] Python client | ||
library in its test suite. | ||
|
||
You may create and activate a virtual environment with this dependency | ||
installed by running the following shell commands from the root of this | ||
repository: | ||
|
||
```shell | ||
python -m venv ./venv | ||
source venv/bin/activate | ||
pip install prometheus-client | ||
``` | ||
|
||
[client-python]: https://github.com/prometheus/client_python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "prometheus-client" | ||
version = "0.23.0" | ||
version = "0.23.1" | ||
authors = ["Max Inden <[email protected]>"] | ||
edition = "2021" | ||
description = "Open Metrics client library allowing users to natively instrument applications." | ||
|
@@ -29,6 +29,7 @@ prost-types = { version = "0.12.0", optional = true } | |
async-std = { version = "1", features = ["attributes"] } | ||
axum = "0.7" | ||
criterion = "0.5" | ||
futures = "0.3" | ||
http-types = "2" | ||
pyo3 = "0.22" | ||
quickcheck = "1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.