vtcode-auth 0.94.0

Authentication and OAuth flows shared across VT Code
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "vtcode-auth"
version = "0.94.0"
authors = ["Vinh Nguyen <vinhnguyen2308@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Authentication and OAuth flows shared across VT Code"
homepage = "https://github.com/vinhnx/vtcode"
documentation = "https://docs.rs/vtcode-auth"
readme = false
keywords = [
    "auth",
    "oauth",
    "vtcode",
    "keyring",
]
categories = [
    "authentication",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/vinhnx/vtcode"
resolver = "2"

[features]
default = []
schema = ["dep:schemars"]

[lib]
name = "vtcode_auth"
path = "src/lib.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.axum]
version = "0.8"

[dependencies.base64]
version = "0.22.1"

[dependencies.dirs]
version = "6.0"

[dependencies.fs2]
version = "0.4"

[dependencies.hostname]
version = "0.4"

[dependencies.keyring]
version = "3"

[dependencies.reqwest]
version = "0.12"
features = [
    "json",
    "rustls-tls",
    "stream",
]
default-features = false

[dependencies.ring]
version = "0.17"

[dependencies.schemars]
version = "1.2"
features = ["indexmap2"]
optional = true

[dependencies.serde]
version = "1.0"
features = [
    "derive",
    "derive",
]

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.tokio]
version = "1.49"
features = ["full"]

[dependencies.tracing]
version = "0.1"

[dependencies.urlencoding]
version = "2.1"

[dev-dependencies.assert_fs]
version = "1.1"

[dev-dependencies.serial_test]
version = "3.4"

[target."cfg(unix)".dependencies.nix]
version = "0.31"
features = ["user"]

[lints.clippy]
dbg_macro = "warn"
multiple_unsafe_ops_per_block = "warn"
todo = "warn"
undocumented_unsafe_blocks = "warn"

[lints.rust]
trivial_numeric_casts = "warn"
unsafe_code = "warn"
unstable_features = "warn"
unused_extern_crates = "warn"
unused_import_braces = "warn"
unused_qualifications = "warn"
unused_results = "allow"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tarpaulin)"]