mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-26 01:12:21 +00:00
18 lines
475 B
TOML
18 lines
475 B
TOML
[package]
|
|
name = "litellm-auth"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
aws = ["dep:litellm-auth-aws"]
|
|
azure = ["dep:litellm-auth-azure"]
|
|
gcp = ["dep:litellm-auth-gcp"]
|
|
|
|
[dependencies]
|
|
litellm-auth-types.workspace = true
|
|
litellm-auth-aws = { workspace = true, optional = true }
|
|
litellm-auth-azure = { workspace = true, optional = true }
|
|
litellm-auth-gcp = { workspace = true, optional = true }
|