-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (38 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
39 lines (38 loc) · 1.16 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
[package]
name = "aiscript-runtime"
description = "The web runtime of AIScript programming language interpreter"
version.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
authors.workspace = true
keywords.workspace = true
categories.workspace = true
readme.workspace = true
[dependencies]
aiscript-lexer = { path = "../aiscript-lexer", version = "0.2.0" }
aiscript-directive = { path = "../aiscript-directive", version = "0.2.0" }
aiscript-vm = { path = "../aiscript-vm", version = "0.2.0" }
hyper = "1.6"
hyper-util = "0.1"
tokio = { version = "1.44", features = ["rt-multi-thread", "macros"] }
tower = "0.5"
http-body-util = "0.1"
bytes = "1.10"
axum = "0.8"
axum-extra = { version = "0.10", features = ["typed-header"] }
jsonwebtoken = "9.3"
serde_json.workspace = true
thiserror = "1.0"
indexmap = { version = "2.7", features = ["serde"] }
serde.workspace = true
walkdir = "2.5"
notify = "8.0"
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres"] }
redis.workspace = true
toml = "0.8"
oas3 = "0.15"
reqwest.workspace = true
minijinja = { version = "1.0", features = ["loader"] }
lazy_static = "1.4"