-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 918 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 918 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
[workspace]
members = [
"crates/dspy-core",
"crates/dspy-optimizers",
"crates/dspy-tpe",
"crates/dspy-propose",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/productioneer/dspy-rs"
homepage = "https://github.com/productioneer/dspy-rs"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
anyhow = "1"
async-trait = "0.1"
indexmap = { version = "2", features = ["serde"] }
rand = "0.8"
regex = "1"
base64 = "0.22"
sha2 = "0.10"
# Internal crates
dspy-core = { path = "crates/dspy-core" }
dspy-optimizers = { path = "crates/dspy-optimizers" }
dspy-tpe = { path = "crates/dspy-tpe" }
dspy-propose = { path = "crates/dspy-propose" }
[profile.dev]
opt-level = 0
debug = true