-
Notifications
You must be signed in to change notification settings - Fork 37
/
Cargo.toml
39 lines (33 loc) · 1.16 KB
/
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
32
33
34
35
36
37
38
39
[package]
name = "celery_exporter"
version = "1.5.1"
authors = ["Fabio Todaro <[email protected]>", "Nicola Martino <[email protected]>"]
description = "Prometheus metrics exporter for Celery"
edition = "2018"
homepage = "https://github.com/OvalMoney/celery-exporter"
license = "MIT"
readme = "README.md"
repository = "https://github.com/OvalMoney/celery-exporter.git"
[lib]
name = "celery_exporter"
crate-type = ["cdylib"]
[dependencies.pyo3]
version = "0.12.4"
features = ["extension-module"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
lru = "0.6.5"
[package.metadata.maturin]
classifier = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent"
]
requires-dist = ["click>=7", "celery>=4,<5", "prometheus_client>=0.0.20", "redis>=3.2.0; extra == 'redis'"]
provides-extra = ["redis"]
[package.metadata.maturin.scripts]
celery-exporter = "celery_exporter.__main__:main"