Publish harness and TUI open-source
initial sync from the monorepo
This commit is contained in:
commit
c68e39f604
2734 changed files with 1437016 additions and 0 deletions
25
crates/codegen/xai-grok-auth/Cargo.toml
Normal file
25
crates/codegen/xai-grok-auth/Cargo.toml
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
[package]
|
||||
license = "Apache-2.0"
|
||||
name = "xai-grok-auth"
|
||||
version = "0.1.0"
|
||||
edition.workspace = true
|
||||
description = "Auth dependency-inversion seam: HttpAuth + AuthCredentialProvider traits"
|
||||
authors = ["xAI"]
|
||||
|
||||
[features]
|
||||
middleware = ["dep:reqwest-middleware", "dep:http"]
|
||||
|
||||
[dependencies]
|
||||
async-trait = { workspace = true }
|
||||
http = { workspace = true, optional = true }
|
||||
reqwest = { workspace = true }
|
||||
reqwest-middleware = { workspace = true, optional = true }
|
||||
tracing = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
mockito = { workspace = true }
|
||||
reqwest-middleware = { workspace = true }
|
||||
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
Loading…
Reference in a new issue