-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (57 loc) · 1.79 KB
/
Copy pathCargo.toml
File metadata and controls
60 lines (57 loc) · 1.79 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
[workspace]
resolver = "2"
members = [
"crates/evolve-adapters",
"crates/evolve-cli",
"crates/evolve-core",
"crates/evolve-dashboard",
"crates/evolve-llm",
"crates/evolve-mutators",
"crates/evolve-proxy",
"crates/evolve-storage",
]
exclude = ["bindings/python", "bindings/typescript"]
[workspace.package]
version = "0.3.0"
edition = "2024"
rust-version = "1.85"
authors = ["Kristian Baer <kristianb43r@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/Frostbyte-Devs/evolve"
homepage = "https://github.com/Frostbyte-Devs/evolve"
description = "Evolutionary computation for LLM agents"
keywords = ["llm", "agents", "evolution", "genetic-algorithms", "ai"]
categories = ["science", "algorithms"]
[workspace.dependencies]
tokio = { version = "1.42", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
thiserror = "2.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
rand = "0.8"
rand_chacha = "0.3"
async-trait = "0.1"
futures = "0.3"
dashmap = "6.0"
proptest = "1.5"
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", default-features = false, features = ["std", "clock", "serde"] }
sqlx = { version = "0.8", default-features = false, features = ["runtime-tokio", "sqlite", "macros", "migrate", "chrono"] }
tempfile = "3"
rand_distr = "0.4"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
wiremock = "0.6"
regex = "1"
axum = "0.8"
tower = "0.5"
tower-http = { version = "0.6", features = ["trace"] }
clap = { version = "4", features = ["derive", "env"] }
dirs = "5"
rust-embed = { version = "8", features = ["include-exclude"] }
mime_guess = "2"
[profile.release]
lto = "thin"
codegen-units = 1
strip = true