-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
114 lines (88 loc) · 2.55 KB
/
Cargo.toml
File metadata and controls
114 lines (88 loc) · 2.55 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# Bashkit - Awesomely fast virtual sandbox with bash and file system
# Part of the Everruns ecosystem
# See specs/ for design decisions
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "0.1.17"
edition = "2024"
license = "MIT"
authors = ["Everruns"]
repository = "https://github.com/everruns/bashkit"
description = "Awesomely fast virtual sandbox with bash and file system"
keywords = ["bash", "virtual", "ai", "agent", "everruns"]
categories = ["command-line-utilities", "parser-implementations"]
[workspace.dependencies]
# Async runtime
# Base features are WASM-compatible; crates needing more (rt-multi-thread, fs, net, process)
# add them in their own Cargo.toml or via [target.'cfg(...)'.dependencies].
tokio = { version = "1", features = ["sync", "macros", "io-util", "rt", "time"] }
async-trait = "0.1"
futures = "0.3"
# Error handling
thiserror = "2"
anyhow = "1"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# JSON processing (jq) - verified embeddable
jaq-core = "3.0"
jaq-std = "3.0"
jaq-json = "2.0"
# Text search (grep) - verified supports search_slice() for in-memory
grep = "0.3"
grep-regex = "0.1"
grep-searcher = "0.1"
# HTTP client (for curl and API calls)
reqwest = { version = "0.13", default-features = false, features = ["json", "rustls", "stream"] }
# Glob matching
globset = "0.4"
# Regex
regex = "1"
# Date/Time
chrono = "0.4"
# Compression
flate2 = "1"
# Base64 encoding
base64 = "0.22"
# Checksums (md5sum, sha256sum, etc.)
md-5 = "0.11"
sha1 = "0.11"
sha2 = "0.11"
# Ed25519 signing (bot-auth request signing)
ed25519-dalek = { version = "2", features = ["rand_core"] }
rand = "0.10"
# CLI
clap = { version = "4", features = ["derive"] }
# Testing
tokio-test = "0.4"
tempfile = "3"
pretty_assertions = "1"
insta = "1"
# Fault injection (security testing)
fail = "0.5"
# Property-based testing
proptest = "1"
# JSON Schema generation
schemars = "1"
# Logging/tracing
tracing = "0.1"
tower = { version = "0.5", features = ["util"] }
# SSH client (for ssh/scp/sftp builtins)
russh = "0.60"
russh-keys = "0.49"
# Serial test execution
serial_test = "3"
# Python bindings
pyo3 = { version = "0.28.2", features = ["extension-module", "generate-import-lib"] }
pyo3-async-runtimes = { version = "0.28", features = ["tokio-runtime"] }
# JavaScript/Node.js bindings (NAPI-RS)
napi = { version = "3.0.0", default-features = false, features = ["napi6", "compat-mode", "tokio_rt"] }
napi-derive = "3.0.0"
napi-build = "2"
[profile.release]
lto = "thin"
codegen-units = 1
panic = "abort"
strip = "symbols"