-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 1.04 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
[workspace]
members = [
"aiscript",
"aiscript-lexer",
"aiscript-arena",
"aiscript-common",
"aiscript-derived",
"aiscript-directive",
"aiscript-runtime",
"aiscript-vm",
"tests",
"xtask",
]
exclude = ["assets", "examples", "routes", "tests", "xtask", "project.toml"]
resolver = "2"
[workspace.package]
version = "0.2.0"
edition = "2024"
homepage = "https://aiscript.dev"
repository = "https://github.com/aiscriptdev/aiscript"
license = "MIT"
authors = ["Folyd lyshuhow@gmail.com"]
keywords = ["language", "interpreter", "scripting", "compiler", "vm"]
categories = ["compilers", "web-programming", "web-programming::http-server"]
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
redis = { version = "0.29", features = ["aio", "tokio-comp"] }
reqwest = "0.12"
# RUSTFLAGS="-Z sanitizer=address" cargo run --release --target x86_64-apple-darwin -- test.ai
[profile.release]
debug = true
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"