-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
43 lines (36 loc) · 963 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
39
40
41
42
43
[package]
name = "icann-rdap-client"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = """
An RDAP client library.
"""
[dependencies]
icann-rdap-common = { version = "0.0.21", path = "../icann-rdap-common" }
buildstructor.workspace = true
cidr.workspace = true
chrono.workspace = true
const_format.workspace = true
idna.workspace = true
ipnet.workspace = true
jsonpath-rust.workspace = true
jsonpath_lib.workspace = true
lazy_static.workspace = true
pct-str.workspace = true
regex.workspace = true
reqwest.workspace = true
serde.workspace = true
serde_json.workspace = true
strum.workspace = true
strum_macros.workspace = true
thiserror.workspace = true
tracing.workspace = true
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio.workspace = true
[dev-dependencies]
# fixture testings
rstest = "0.17.0"
# tokio async runtime
tokio = { version = "1.21", features = [ "full" ] }