-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (44 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
48 lines (44 loc) · 1.23 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
[package]
name = "forma"
version = "0.1.0"
edition = "2024"
description = "An AI-optimized programming language with memory safety, minimal syntax, and grammar-constrained generation"
license = "MIT"
repository = "https://github.com/sfw/forma"
homepage = "https://github.com/sfw/forma"
readme = "README.md"
keywords = ["programming-language", "compiler", "ai", "memory-safety"]
categories = ["compilers", "development-tools"]
[dependencies]
thiserror = "1.0"
ariadne = "0.4"
clap = { version = "4", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rand = "0.8"
chrono = "0.4"
base64 = "0.22"
hex = "0.4"
sha2 = "0.10"
uuid = { version = "1.0", features = ["v4"] }
regex = "1.10"
reqwest = { version = "0.12", features = ["blocking", "json"] }
rustyline = "14"
tokio = { version = "1", features = ["full"] }
futures = "0.3"
# LSP server
tower-lsp = "0.20"
async-trait = "0.1"
# TLS support
native-tls = "0.2"
# Compression
flate2 = "1.0"
# SQLite database
rusqlite = { version = "0.32", features = ["bundled"] }
# LLVM backend (optional, requires LLVM installed)
inkwell = { version = "0.5", features = ["llvm18-0"], optional = true }
[features]
default = []
llvm = ["inkwell"]
[dev-dependencies]
tempfile = "3"