-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (37 loc) · 1003 Bytes
/
Cargo.toml
File metadata and controls
49 lines (37 loc) · 1003 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "cortex-plugins"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "Complete WASM-based plugin system for Cortex CLI"
[dependencies]
# Async runtime
tokio = { workspace = true }
# Serialization
serde = { workspace = true }
serde_json = { workspace = true }
toml = { workspace = true }
# Error handling
thiserror = { workspace = true }
anyhow = { workspace = true }
# Logging
tracing = { workspace = true }
# Async traits
async-trait = { workspace = true }
# Utilities
dirs = { workspace = true }
uuid = { workspace = true }
chrono = { workspace = true }
semver = "1.0"
# WASM Runtime
wasmtime = { version = "29", features = ["async", "component-model"] }
# HTTP client for plugin network access
reqwest = { workspace = true }
# URL parsing
url = { workspace = true }
[dev-dependencies]
tempfile = { workspace = true }
tokio-test = { workspace = true }