-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
39 lines (35 loc) · 1.7 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
# see definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "crypto-sanctions-server"
description = "An http server that allows you to check whether a crypto wallet address is on the sanctions list via json api"
keywords = ["cryptocurrency", "sanctions", "compliance", "ofac", "sdn"]
categories = ["command-line-utilities"]
repository = "https://github.com/stdfox/crypto-sanctions-server"
homepage = "https://github.com/stdfox/crypto-sanctions-server"
authors = ["stdfox <stdfox@protonmail.com>"]
license = "MIT"
version = "0.3.2"
edition = "2021"
exclude = [".dockerignore", ".editorconfig", ".gitattributes", ".gitignore", "Dockerfile"]
[dependencies]
clap = { version = "~4.5", default-features = false, features = ["derive", "help", "std", "suggestions", "usage"] }
fern = { version = "~0.6", default-features = false, features = ["colored"] }
http-body-util = { version = "~0.1", default-features = false }
hyper = { version = "~1.2", default-features = false, features = ["client", "server"] }
hyper-tls = { version = "~0.6", default-features = false }
hyper-util = { version = "~0.1", default-features = false, features = ["http1"] }
itertools = { version = "~0.12", default-features = false, features = ["use_std"] }
log = { version = "~0.4", default-features = false }
regex = { version = "~1.10", default-features = false, features = ["std", "unicode-perl"] }
time = { version = "~0.3", default-features = false, features = ["formatting"] }
tokio = { version = "~1.36", default-features = false, features = ["macros", "rt-multi-thread"] }
[profile.dev]
lto = "off"
debug = 0
[profile.release]
codegen-units = 1
strip = "symbols"
opt-level = 3
lto = "fat"
[lints.rust]
unsafe_code = "forbid"