-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (65 loc) · 2.03 KB
/
Copy pathCargo.toml
File metadata and controls
77 lines (65 loc) · 2.03 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
[package]
name = "npxc"
version = "0.3.0"
edition = "2024"
rust-version = "1.88"
description = "Sandboxed npm execution for MCP servers via Apple container"
license = "MIT"
repository = "https://github.com/tomchuk/npxc"
homepage = "https://github.com/tomchuk/npxc"
readme = "README.md"
keywords = ["mcp", "sandbox", "container", "npx", "security"]
categories = ["command-line-utilities", "development-tools"]
exclude = ["examples/sample.pdf", ".github", "target"]
[[bin]]
name = "npxc"
path = "src/main.rs"
[dependencies]
# Async runtime (only the features npxc actually uses)
tokio = { version = "1", features = [
"rt-multi-thread",
"macros",
"process",
"io-util",
"io-std",
"fs",
"net",
"sync",
"signal",
"time",
] }
# CLI
clap = { version = "4", features = ["derive", "env"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
semver = "1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Errors
thiserror = "2"
anyhow = "1"
# Concurrency
parking_lot = "0.12"
# Misc
uuid = { version = "1", features = ["v4"] }
directories = "5"
which = "6"
tempfile = "3"
boringtun = { version = "0.7", default-features = false }
base64 = "0.22"
getrandom = "0.4.2"
ipstack = "1.0.0"
ipnet = "2"
tls-parser = "0.12"
hickory-proto = { version = "0.26.1", default-features = false, features = ["std"] }
[dev-dependencies]
assert_cmd = "2"
etherparse = "0.19"
predicates = "3"
[features]
e2e = []
[lints.clippy]
pedantic = { level = "warn", priority = -1 }