-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (68 loc) · 2.17 KB
/
Cargo.toml
File metadata and controls
74 lines (68 loc) · 2.17 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
[package]
name = "quicknode-cli"
version = "0.1.3"
edition = "2021"
description = "Command-line interface for the Quicknode SDK"
license = "MIT"
repository = "https://github.com/quicknode/cli"
homepage = "https://www.quicknode.com/docs/welcome"
authors = ["Quicknode <support@quicknode.com>"]
readme = "README.md"
keywords = ["quicknode", "cli", "blockchain", "web3"]
categories = ["command-line-utilities"]
rust-version = "1.75"
[[bin]]
name = "qn"
path = "src/main.rs"
[lib]
name = "qn"
path = "src/lib.rs"
[dependencies]
quicknode-sdk = "0.1"
clap = { version = "4", features = ["derive", "env", "wrap_help"] }
clap_complete = "4"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yml = "0.0.12"
toon-format = { version = "0.5", default-features = false }
comfy-table = { version = "7", default-features = false, features = ["tty"] }
dialoguer = "0.11"
toml = "0.8"
thiserror = "1"
humantime = "2"
time = { version = "0.3", features = ["formatting", "parsing", "macros"] }
base64 = "0.22"
tempfile = "3"
url = "2"
[dev-dependencies]
reqwest = { version = "0.12", default-features = false }
wiremock = "0.6"
assert_cmd = "2"
predicates = "3"
insta = { version = "1", features = ["yaml"] }
tempfile = "3"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# cargo-deb metadata. CI's publish-deb workflow packages the prebuilt
# linux-gnu binary into a .deb per arch and attaches each to the
# GitHub Release. `name` makes the deb filename match the binary name
# (qn_X.Y.Z_amd64.deb) instead of the crate name (quicknode-cli_X.Y.Z…).
[package.metadata.deb]
name = "qn"
maintainer = "Quicknode <support@quicknode.com>"
copyright = "2026 Quicknode"
extended-description = """
qn is a command-line interface for Quicknode, built around noun-verb
commands that read naturally for both humans and agents. Manage endpoints,
streams, webhooks, the KV store, teams, usage, and billing.
"""
section = "utils"
priority = "optional"
assets = [
["target/release/qn", "usr/bin/", "755"],
["README.md", "usr/share/doc/qn/README", "644"],
["LICENSE", "usr/share/doc/qn/LICENSE", "644"],
]