forked from x402-rs/x402-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
87 lines (81 loc) · 3.16 KB
/
Copy pathCargo.toml
File metadata and controls
87 lines (81 loc) · 3.16 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[package]
name = "x402-rs"
version = "0.12.1"
authors = ["Sergey Ukustov <sergey@ukstv.me>"]
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/x402-rs/x402-rs"
description = "x402 payments in Rust: verify, settle, and monitor payments over HTTP 402 flows"
readme = "README.md"
homepage = "https://x402.rs"
documentation = "https://docs.rs/x402-rs"
keywords = ["blockchain", "payments", "x402", "stablecoin", "http-402"]
categories = ["cryptography", "finance", "network-programming", "web-programming::http-server"]
[dependencies]
axum = { version = "0.8" }
tokio = { version = "1.45", features = ["full"] }
tokio-util = { version = "0.7.16", features = ["rt"] }
dotenvy = { version = "0.15.7" }
serde_json = { version = "1.0.145", features = ["raw_value"] }
clap = { version = "4.5", features = ["derive", "env"] }
tower = { version = "0.5.2" }
tower-http = { version = "0.6.6", features = ["trace", "cors"] }
serde = { version = "1.0.219", features = ["derive"] }
once_cell = { version = "1.21.3" }
url = { version = "2.5.4", features = ["serde"] }
thiserror = { version = "2.0.12" }
base64 = { version = "0.22.1" }
async-trait = { version = "0.1" }
dashmap = { version = "6.1.0" }
rand = { version = "0.9.2" }
rust_decimal = { version = "1.39.0" }
serde_with = { version = "3.16.1" }
regex = { version = "1.12.2" }
# EVM: Alloy
alloy-primitives = { version = "1.4.1" }
alloy-network = { version = "1.1.3" }
alloy-signer = { version = "1.1.3" }
alloy-signer-local = { version = "1.1.3" }
alloy-sol-types = { version = "1.4.1", features = ["json"] }
alloy-contract = { version = "1.1.3" }
alloy-provider = { version = "1.1.3" }
alloy-rpc-client = { version = "1.1.3" }
alloy-rpc-types-eth = { version = "1.1.3" }
alloy-transport = { version = "1.1.3", features = ["throttle"] }
alloy-transport-http = { version = "1.1.3" }
# Solana
solana-compute-budget-interface = { version = "3.0.0" }
solana-pubkey = { version = "4.0.0" }
bs58 = { version = "0.5.1" }
solana-signature = { version = "3.1.0" }
solana-transaction = { version = "3.0.2 "}
solana-signer = { version = "3.0.0" }
solana-account = { version = "3.2.0" }
solana-message = { version = "3.0.1" }
solana-keypair = { version = "3.1.0" }
solana-commitment-config = { version = "3.1.0" }
spl-token = { version = "9.0.0", features = ["no-entrypoint"] }
spl-token-2022 = { version = "10.0.0", features = ["no-entrypoint"] }
solana-client = { version = "3.1.4" }
bincode = { version = "1.3.3" }
futures-util = { version = "0.3.31" }
# Tracing and OpenTelemetry
tracing = { version = "0.1.41" }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
opentelemetry = { version = "0.31" }
opentelemetry_sdk = { version = "0.31" }
opentelemetry-semantic-conventions = { version = "0.31", features = ["semconv_experimental"] }
tracing-core = { version = "0.1.34" }
tracing-opentelemetry = { version = "0.32" }
opentelemetry-otlp = { version = "0.31", features = ["metrics", "grpc-tonic"] }
opentelemetry-stdout = { version = "0.31", features = ["trace", "metrics"] }
[features]
telemetry = []
[workspace]
members = [
"crates/x402-axum",
"examples/x402-axum-example",
"crates/x402-reqwest",
"examples/x402-reqwest-example",
"."
]