-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (39 loc) · 1.44 KB
/
Copy pathCargo.toml
File metadata and controls
42 lines (39 loc) · 1.44 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
[workspace]
members = [
"rust/crates/synth_optimizer_platform",
"rust/crates/synth_gepa",
"rust/crates/synth_marl_promptopt",
"rust/crates/synth_mapo",
"rust/crates/synth_optimizers_py",
]
resolver = "2"
[workspace.package]
version = "0.2.22"
edition = "2021"
license = "Apache-2.0"
authors = ["Synth Laboratories <josh@usesynth.ai>"]
repository = "https://github.com/synth-laboratories/optimizers"
[workspace.dependencies]
anyhow = "1.0"
base64 = "0.22"
clap = { version = "4.5", features = ["derive"] }
fs2 = "0.4"
libc = "0.2"
pyo3 = { version = "0.22", features = ["abi3-py311", "extension-module"] }
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "multipart", "rustls-tls"] }
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha1 = "0.10"
sha2 = "0.10"
thiserror = "1.0"
time = { version = "0.3", features = ["formatting", "macros", "parsing"] }
toml = "0.8"
uuid = { version = "1.10", features = ["v4"] }
# Several constructors and snapshot builders take eight or more distinct domain
# values. Bundling them into parameter structs would only move the arity into a
# literal at every call site, and the alternative -- an attribute per function --
# grows source files that the file-size ratchet in
# `synth_optimizer_platform/tests/file_size_cap.rs` allows only to shrink.
[workspace.lints.clippy]
too_many_arguments = "allow"