-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 894 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (26 loc) · 894 Bytes
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
[package]
name = "circle-compliance"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
description = "Rust client for the Circle Web3 Services Compliance Engine API"
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/circle-compliance"
readme = "README.md"
keywords = ["circle", "compliance", "blockchain", "screening", "sdk"]
categories = ["api-bindings", "web-programming::http-client"]
[dependencies]
hpx = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
thiserror = { workspace = true }
tracing = { workspace = true }
uuid = { workspace = true, features = ["v4"] }
[dev-dependencies]
tokio = { workspace = true, features = ["macros", "rt", "rt-multi-thread"] }
[lints]
workspace = true
[package.metadata.cargo-machete]
ignored = ["tracing"]