-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (34 loc) · 887 Bytes
/
Cargo.toml
File metadata and controls
43 lines (34 loc) · 887 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
[package]
name = "caxton"
version = "0.1.4"
edition = "2024"
authors = ["John Wilger <john.wilger@gmail.com>"]
description = "An application server hosting AI Agents and secure, WASM MCP tools"
license = "MIT OR Apache-2.0"
repository = "https://github.com/jwilger/caxton"
homepage = "https://github.com/jwilger/caxton"
documentation = "https://docs.rs/caxton"
readme = "README.md"
keywords = ["wasm", "agent", "runtime", "mcp", "ai", "llm"]
categories = ["wasm", "ai", "server"]
[lints.rust]
warnings = "deny"
missing_docs = "warn"
rust_2018_idioms = "warn"
[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
[[bin]]
name = "caxton"
path = "src/main.rs"
[lib]
name = "caxton"
path = "src/lib.rs"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[dependencies]
[dev-dependencies]
[profile.bench]
inherits = "release"