-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (32 loc) · 1021 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
35
36
37
38
[package]
name = "atlas-rs"
version = "0.3.0"
edition = "2021"
authors = ["Ollivier Robert <[email protected]>"]
repository = "https://github.com/keltia/atlas-rs"
license = "MIT"
readme = "README.md"
keywords = ["atlas", "ripe-atlas", "library", "REST-API", "client-library"]
description = "Rust library to access RIPE Atlas probes API."
categories = ["api-bindings" ]
# features = ["flat-api", "alt-api"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[badges]
maintenance = { status = "actively-developed" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
clap = { version = "3.1", features = ["cargo", "derive"] }
home = "0.5"
itertools = "0.10"
lazy-regex = "2.3"
regex = "1.5"
reqwest = { version = "0.11", features = ["socks", "blocking", "gzip", "json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.5"
[dev-dependencies]
rstest = "0.13"
assert_cmd = "2.0"