-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 959 Bytes
/
Cargo.toml
File metadata and controls
33 lines (30 loc) · 959 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
31
32
33
[package]
name = "x402curl"
version = "0.2.0"
edition = "2021"
description = "curl with automatic x402 payment handling"
license = "MIT"
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
x402-types = { git = "https://github.com/x402-rs/x402-rs.git" }
x402-chain-eip155 = { git = "https://github.com/x402-rs/x402-rs.git", features = ["client"] }
x402-reqwest = { git = "https://github.com/x402-rs/x402-rs.git" }
reqwest = { version = "0.13", features = ["multipart", "json"] }
reqwest-middleware = { version = "0.5", features = ["multipart"] }
dotenvy = "0.15"
toml = "1.1"
serde_json = "1"
dirs = "6"
thiserror = "2"
alloy-signer-local = { version = "1", features = ["keystore"] }
[dev-dependencies]
wiremock = "0.6"
assert_cmd = "2"
predicates = "3"
tempfile = "3"
[profile.release]
strip = true
lto = true
codegen-units = 1