-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
34 lines (29 loc) · 945 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
32
33
34
[package]
name = "newrelic"
description = """
Idiomatic Rust bindings to the New Relic C SDK.
Note: versions 0.1.0 onwards of this crate are completely incompatible
with previous versions as they move away from the deprecated New Relic SDK
to the newer New Relic C SDK. This has additional requirements: see
https://docs.newrelic.com/docs/agents/c-sdk/get-started/introduction-c-sdk
for details.
"""
version = "0.2.2"
authors = ["Ben Sully <ben@bsull.io>"]
categories = ["api-bindings"]
edition = "2018"
repository = "https://github.com/sd2k/newrelic"
license = "MIT/Apache-2.0"
[dependencies]
log = "0.4.11"
newrelic-sys = "0.2.0"
libc = { version = "0.2.79", optional = true }
pin-project = { version = "1.0.0", optional = true }
[dev-dependencies]
tokio = { version = "1.0.0", features = ["full"] }
[features]
default = []
distributed_tracing = ["libc"]
async = ["pin-project"]
[badges]
maintenance = { status = "passively-maintained" }