-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (55 loc) · 1.72 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (55 loc) · 1.72 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
[package]
name = "clawshell"
version = "0.2.1"
edition = "2024"
license-file = "LICENSE"
homepage = "https://clawshell.org/"
repository = "https://github.com/clawshell/clawshell"
exclude = ["npm/*", "docs/*"]
description = "A security privileged process for the OpenClaw ecosystem."
[dependencies]
axum = "0.8.9"
tokio = { version = "1.52", features = ["full"] }
reqwest = { version = "0.13.3", default-features = false, features = ["stream", "rustls", "form", "blocking", "json"] }
rustls = { version = "0.23.40", default-features = false, features = ["ring", "std"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
toml = "1.1.2"
regex = "1.12.3"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["env-filter", "json"] }
tower-http = { version = "0.6.10", features = ["trace"] }
http = "1.4"
http-body-util = "0.1.3"
bytes = "1.11.1"
futures-util = "0.3.31"
clap = { version = "4.6.1", features = ["derive"] }
nix = { version = "0.31.3", features = ["signal", "process", "feature", "user"] }
inquire = "0.9.4"
console = "0.16.3"
vfs = "0.13"
thiserror = "2"
semver = "1"
rustls-native-certs = "0.8.3"
sha2 = "0.11.0"
uuid = { version = "1.23.1", features = ["v4"] }
async-trait = "0.1.89"
chrono = { version = "0.4.44", features = ["serde"] }
base64 = "0.22.1"
urlencoding = "2.1.3"
rand = "0.10.0"
open = "5.3.5"
tokio-util = { version = "0.7.18", features = ["full"] }
[dev-dependencies]
tokio = { version = "1.52", features = ["full", "test-util"] }
tower = { version = "0.5.3", features = ["util"] }
wiremock = "0.6"
insta = { version = "1", features = ["yaml"] }
assert_cmd = "2"
predicates = "3"
tempfile = "3"
[[bin]]
name = "clawshell"
path = "src/main.rs"
[lints.clippy]
collapsible_if = "allow"