-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (65 loc) · 2.14 KB
/
Copy pathCargo.toml
File metadata and controls
76 lines (65 loc) · 2.14 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
[package]
name = "rustscript-agent"
version = "0.1.0"
edition = "2024"
description = "Standalone script-owned RustScript agent runner and Hermes-compatible gateway"
license = "MIT"
[lib]
name = "rustscript_agent"
[[bin]]
name = "rustscript-agent"
path = "src/bin/rustscript-agent.rs"
[[bin]]
name = "rustscript-agent-gateway"
path = "src/bin/rustscript-agent-gateway.rs"
[dependencies]
axum = "0.8"
bytes = "1"
futures-util = "0.3"
http-body-util = "0.1"
hyper = { version = "1", features = ["client", "http1"] }
hyper-util = { version = "0.1", features = ["client-legacy", "http1", "tokio"] }
parking_lot = "0.12"
rustls = { version = "0.23", default-features = false, features = ["ring", "std", "tls12"] }
rustscript-vm = { package = "pd-vm", git = "https://github.com/rustscript-lang/rustscript.git", rev = "f9ca4143f8ba2f486e270347504c49f5ea846097", default-features = false, features = ["runtime", "http-client", "sqlite"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
yaml-rust2 = { version = "0.12", default-features = false }
# Meta-schema validation only; resolver features stay disabled.
jsonschema = { version = "0.52.1", default-features = false }
libc = "0.2.189"
tokio = { version = "1", features = ["full"] }
tokio-rustls = { version = "0.26", default-features = false, features = ["ring", "tls12"] }
tower = { version = "0.5", features = ["util"] }
tracing = "0.1"
url = "2"
uuid = { version = "1", features = ["v4"] }
webpki-roots = "1"
zeroize = "1"
ring = "0.17"
[dev-dependencies]
tracing-core = "0.1"
[features]
default = []
config-fixture = []
[[test]]
name = "auth_store_tests"
path = "tests/auth_store_tests.rs"
required-features = ["config-fixture"]
[[test]]
name = "auth_store_rss_tests"
path = "tests/auth_store_rss_tests.rs"
required-features = ["config-fixture"]
[[test]]
name = "config_auth_rss_tests"
path = "tests/config_auth_rss_tests.rs"
required-features = ["config-fixture"]
[[test]]
name = "oauth_flow_tests"
path = "tests/oauth_flow_tests.rs"
required-features = ["config-fixture"]
[[test]]
name = "oauth_rss_entry_tests"
path = "tests/oauth_rss_entry_tests.rs"
required-features = ["config-fixture"]