-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (38 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
43 lines (38 loc) · 1.22 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
[workspace]
members = [
"providers/aigw",
"providers/aigw-core",
"providers/aigw-openai",
"providers/aigw-openai-compat",
"providers/aigw-anthropic",
"providers/aigw-gemini",
]
resolver = "3"
[workspace.package]
version = "0.5.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/arcboxlabs/aigateway"
[workspace.dependencies]
aigw = { version = "0.5.0", path = "providers/aigw" }
aigw-core = { version = "0.5.0", path = "providers/aigw-core" }
aigw-openai = { version = "0.5.0", path = "providers/aigw-openai" }
aigw-openai-compat = { version = "0.5.0", path = "providers/aigw-openai-compat" }
aigw-anthropic = { version = "0.5.0", path = "providers/aigw-anthropic" }
aigw-gemini = { version = "0.5.0", path = "providers/aigw-gemini" }
[package]
name = "aigateway"
version.workspace = true
edition.workspace = true
description = "A unified AI Gateway for multiple LLM providers"
license.workspace = true
repository.workspace = true
[dependencies]
aigw = { workspace = true }
[dev-dependencies]
aigw-core = { workspace = true }
futures-util = "0.3"
reqwest = { version = "0.12", default-features = false }
secrecy = "0.10"
serde_json = "1"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }