diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b99f249..c5104d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,10 @@ on: branches: [ main ] pull_request: branches: [ main ] + schedule: + # Weekly, Monday 07:00 UTC. Upstream drift is not urgent, but three minor + # versions of it went unnoticed because nothing ever looked. + - cron: '0 7 * * 1' env: CARGO_TERM_COLOR: always @@ -26,6 +30,9 @@ jobs: uses: dtolnay/rust-toolchain@stable with: components: clippy, rustfmt + # src/wasm.rs is a fork of src/local.rs and is compiled by nothing + # else: `--all-targets` builds it only as a host test. + targets: wasm32-unknown-unknown - name: Cache dependencies uses: swatinem/rust-cache@v2 @@ -38,3 +45,46 @@ jobs: - name: Run Tests run: cargo test --all-targets --all-features + + # `--all-targets` excludes doctests, so every ``` block in the crate docs + # is currently uncompiled. + - name: Run doctests + run: cargo test --doc + + # The wasm transport duplicates most of the native one. Without this step + # a change can land in src/local.rs, miss its src/wasm.rs mirror, and go + # unnoticed -- which has already happened once. + - name: Check wasm target + run: cargo check --target wasm32-unknown-unknown --lib + + # Each of these declares its own workspace, so the root build never sees + # them and an API change does not break them until a user hits it. + - name: Check directory examples + run: | + for manifest in examples/*/Cargo.toml; do + echo "::group::${manifest}" + cargo check --manifest-path "${manifest}" --all-targets + echo "::endgroup::" + done + + # The whole reason this crate drifted three minor versions behind upstream is + # that nothing was watching. This job fails when a newer google-antigravity + # release exists than the one proto/localharness.proto was generated from, and + # when the generated proto no longer matches what that release actually ships. + upstream-drift: + name: Upstream drift + runs-on: ubuntu-latest + # Advisory on a pull request; a scheduled run is where it should page. + continue-on-error: true + steps: + - name: Checkout sources + uses: actions/checkout@v4 + + - name: Install Python dependencies + run: | + python3 -m pip install --quiet --upgrade pip + python3 -m pip install --quiet protobuf requests + + - name: Compare the pinned harness against the newest release + run: python3 scripts/check_upstream_drift.py + diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..6d3eb86 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,183 @@ +# Changelog + +## 0.2.0 — unreleased + +Not yet published to crates.io. Publishing waits on one full turn against a +live 0.1.9 harness, which needs credentials; the release is triggered by +pushing a `v*` tag, so merging this does not publish it. + +Migrates the wire format from upstream 0.1.1 to **0.1.9** and clears the defect +backlog recorded in `docs/upstream-parity.md` and +`docs/fix-plan-current-defects.md`. + +This release **breaks source compatibility**. The breaks are batched here +deliberately so downstream code adapts once — including both `Hook` breaks, the +second of which was pulled forward for exactly that reason. See +[On the two `Hook` breaks in this release](#on-the-two-hook-breaks-in-this-release). + +### Why the wire changes matter + +`proto/localharness.proto` had been hand-transcribed from 0.1.1 and had drifted +eight releases. It is now generated from the descriptor embedded in the upstream +wheel (`scripts/gen_proto.py`). The transport is protojson, which matches on +field and enum **names**, so a rename is as fatal as a renumber and fails +silently: the frame is dropped as unknown rather than rejected. + +Two examples this fixed, both of which the suite was previously certifying as +working: + +- `HarnessConfig.gemini_config` was **removed upstream in 0.1.4**. The harness + rejected the frame and closed the socket. The crate now sends the + `repeated ModelConfig models` list that replaced it. +- `STATE_IDLE` was renamed `STATE_FULLY_IDLE` in 0.1.9. The idle event was + discarded as an unknown variant, so a turn never ended. + +CI now regenerates the proto from the live upstream wheel on a schedule and +fails if the checked-in schema disagrees, so the next rename surfaces as a +build failure rather than a silent hang. + +### Breaking changes + +**Hooks** + +- Every `Hook` method takes a `&HookContext` as its final parameter, giving + hooks access to session state and conversation metadata. +- `post_turn` receives `&str` (the response text), not `&ChatResponse`. +- `on_compaction` receives `&Step`, not `&str`. +- `on_tool_error` returns `Result>` — a replacement *message*. + It could previously return a value that **cleared** the error, which reported + a failed tool to the model as a genuine success. +- **`pre_tool_call` now fails closed.** A hook that returns `Err` denies the + call; it was previously treated as "no objection" and the tool ran, so any + hook bug was an open gate. A hook with a tolerable failure mode must catch it + and return `allow: true` explicitly. +- Implementors may declare which kinds they handle via `declares()`, which is + what drives the harness-side `enabled_hooks`. + +**Tools** + +- `ToolCall` gains `server_name`; `ToolResult` gains `server_name` and a + structured `exception`. +- Registering two tools with the same name is now an error rather than a silent + overwrite; registry order is preserved. +- Model-supplied arguments are coerced against the tool's declared JSON Schema. + Only unambiguous conversions are performed, so a real type error still reads + as one. +- `ToolContext` is constructed and injected. It previously existed but was + never built, so context-aware tools did not work at all. +- Absent or empty `arguments_json` is `{}` rather than an error. + +**Types and responses** + +- `ChatResponse.usage_metadata` is `Option` and reports **this + turn**, not the session total. The running total remains on + `Conversation::total_usage`. +- `ChatResponse.steps` carries the turn, not the whole session. +- `UsageMetadata`'s counters are `u64`, matching the harness, which has declared + `uint64` since 0.1.1. +- `BuiltinTools::AskQuestion` (`ASK_QUESTION`) exists and drives + `user_questions.enabled`, which was hardcoded on. **A caller passing an + explicit `enabled_tools` list must add `ASK_QUESTION` to keep the question + panel.** +- `BuiltinTools::read_only()` includes `FINISH`; an agent that cannot finish + cannot terminate a turn or emit structured output. + +**Triggers** + +- `Trigger::run` takes a one-method `TriggerContext` instead of the full + connection. +- `every()` invokes a callback and rejects a non-positive interval. +- `TriggerRunner::stop` exists and `Agent::stop` calls it. Triggers previously + outlived the agent. + +**Connection** + +- `receive_steps()` is single-consumer. Two live streams shared one receiver and + each took roughly half the steps, silently; a second subscriber now gets an + error. The claim is released when the stream is dropped, so the per-turn call + still works. +- Prompts accept multimodal parts and slash commands. + +**Policy** + +- Workspace scoping is applied **unconditionally**, including alongside + `allow_all()` — which upstream documents as the way to get autonomous shell + access *while* file tools stay scoped. The opt-out is `workspaces(vec![])`, + not a policy. +- Generated MCP policy names use `approve_`, not `allow_`. + +### Added + +- Session resumption: the handshake reply is read, and `Conversation` is seeded + with the replayed history on both transports. +- `SessionContinuationMode` on the config and builder, with upstream's RESUME + validation. +- Cancellation: `Conversation::cancel()`. The harness answers a halt with an + ordinary idle, so a caller-initiated halt is tracked client-side and surfaces + as `AntigravityError::Cancelled` rather than looking like a completed turn. +- Harness-crash diagnostics: the last 20 stderr lines are retained and attached + when the socket closes mid-turn. A crash previously ended the stream in + silence. +- The harness-side hook channel: `CallHookRequest`/`Response`, the router, and + `enabled_hooks`. +- Model configuration: `ModelTarget` / `ModelEndpoint` / `GeminiModelOptions`, + the explicit → shorthand → default merge, and `GOOGLE_GENAI_USE_VERTEXAI` / + `GOOGLE_CLOUD_PROJECT` / `GOOGLE_CLOUD_LOCATION` routing. The explicit list is + `GeminiConfig::model_targets`, since `models` was already the crate's + shorthand — a deliberate divergence from upstream's naming. +- MCP servers on the wire, with stdio `env` and `timeout_seconds`. +- `search_web` and `read_url_content`; named custom subagents. +- `RetryConfig` and `ToolOutputTruncation`. +- `Conversation::wait_for_idle`; `send` drains the previous turn into history. +- `safe_defaults()`, `workspace_only_for()`, and policy group composition via + `AgentBuilder::policy_groups`. +- `docs/policy.md`. + +### Fixed + +- **`scripts/install_harness.sh` installed harness 0.1.1**, whose wire format + this SDK no longer speaks — a turn against it never ends, because `STATE_IDLE` + was renamed and protojson drops the unknown variant. It now installs 0.1.9, + and the drift job fails if that pin ever disagrees with the version the proto + was generated from. + +- **Workspace sandbox escape.** Containment is decided after resolution — `..` + is collapsed and symlinks are followed before comparison — and resolution + failure is treated as outside. It fails closed. +- The workspace root no longer falls back to `/tmp/.gemini/antigravity` when + `HOME` is unset. +- `Agent::start` routes through `policy::enforce()`; it previously bypassed it. +- Question answers are matched to the question actually asked, by index. +- Websocket message size caps are lifted; tool results and file contents + routinely exceed tungstenite's defaults, and hitting the cap killed the + connection mid-turn. +- A subagent going idle no longer ends the caller's turn. +- Steps queued behind an idle event are no longer dropped. +- A fresh connection reports idle, so send-then-receive cannot race. +- `on_session_end` hooks are dispatched on disconnect; they previously never ran. +- A failing `on_tool_error` hook is contained. +- Shutdown is ordered — stdin is closed first, so the harness runs its cleanup + and persists the trajectory instead of being killed outright. +- `EDIT_FILE` policy predicates can see `diff_block`, so a rule can inspect the + change and not only the path. +- Tool-call arguments carry arguments, not post-execution results. +- The removed DuckDuckGo/`python3` scraper. + +### On the two `Hook` breaks in this release + +`Hook` is broken **twice** here, deliberately, so that downstream code adapts +once rather than across two releases: + +1. Signatures — `post_turn` takes `&str`, `on_compaction` takes `&Step`, + `on_tool_error` returns `Result>`. +2. A `&HookContext` parameter on all nine methods. + +The second was originally planned for a later release, which would have broken +every implementation a second time. It was pulled forward instead. No further +`Hook` break is on the roadmap — though this is a pre-1.0 crate and that is not +a stability guarantee. + +### Out of scope + +`DebugConfig` has no field in the 0.1.9 proto and is dropped rather than +invented. diff --git a/Cargo.toml b/Cargo.toml index 339100c..69051e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "antigravity-sdk-rust" -version = "0.1.14" +version = "0.2.0" edition = "2024" license = "MIT" description = "Rust SDK for Google Antigravity and Gemini to build autonomous, stateful, and secure AI agents" diff --git a/build.rs b/build.rs index 17cdcb5..4269396 100644 --- a/build.rs +++ b/build.rs @@ -14,6 +14,19 @@ fn main() { pbjson_build::Builder::new() .register_descriptors(&descriptor_set) .unwrap() + // Tolerate fields this crate's schema does not know about. A newer + // harness always adds fields before we regenerate, and pbjson's default + // is to fail the whole message on the first unknown one — which drops + // the entire event rather than the field. Note this does NOT cover + // unknown *enum variants*: pbjson emits `unknown_variant` regardless, + // so an enum rename still has to be caught by regenerating. + .ignore_unknown_fields() .build(&[".antigravity.localharness"]) .unwrap(); + + // So ClientInfo.language_version reports something real instead of "unknown". + println!( + "cargo:rustc-env=RUSTC_VERSION={}", + std::env::var("RUSTC").unwrap_or_else(|_| "rustc".to_string()) + ); } diff --git a/docs/agent.md b/docs/agent.md index 3a27c1d..4d79c6b 100644 --- a/docs/agent.md +++ b/docs/agent.md @@ -264,7 +264,7 @@ use antigravity_sdk_rust::types::ChatResponse; // text: String, // Combined model text output // thinking: String, // Combined reasoning/thinking text // steps: Vec, // All intermediate execution steps -// usage_metadata: UsageMetadata, // Token consumption stats +// usage_metadata: Option, // This turn's token consumption // } ``` @@ -378,7 +378,9 @@ async fn main() -> Result<(), anyhow::Error> { let response = agent.chat("Explain Rust's ownership model in 3 sentences.").await?; println!("{}", response.text); - println!("Tokens used: {}", response.usage_metadata.total_token_count); + if let Some(usage) = &response.usage_metadata { + println!("Tokens used: {}", usage.total_token_count); +} agent.stop().await?; Ok(()) @@ -434,13 +436,13 @@ impl Tool for WeatherTool { struct AuditHook; impl Hook for AuditHook { - async fn pre_tool_call(&self, tool_call: &ToolCall) -> Result { + async fn pre_tool_call(&self, tool_call: &ToolCall, ctx: &HookContext) -> Result { println!("[AUDIT] Tool called: {} with args: {}", tool_call.name, tool_call.args); Ok(HookResult { allow: true, message: String::new() }) } - async fn post_turn(&self, response: &ChatResponse) -> Result<(), anyhow::Error> { - println!("[AUDIT] Turn complete. Tokens: {}", response.usage_metadata.total_token_count); + async fn post_turn(&self, response: &str, ctx: &HookContext) -> Result<(), anyhow::Error> { + println!("[AUDIT] Turn complete, {} chars", response.len()); Ok(()) } } diff --git a/docs/conversation.md b/docs/conversation.md index a0f3ad0..273a165 100644 --- a/docs/conversation.md +++ b/docs/conversation.md @@ -104,7 +104,10 @@ let response = conversation.chat_to_completion("What is 2 + 2?").await?; println!("Response: {}", response.text); println!("Thinking: {}", response.thinking); println!("Steps: {}", response.steps.len()); -println!("Total tokens: {}", response.usage_metadata.total_token_count); +// This turn only; `conversation.total_usage()` is the session total. +if let Some(usage) = &response.usage_metadata { + println!("Turn tokens: {}", usage.total_token_count); +} ``` **Signature:** @@ -330,7 +333,7 @@ pub struct ChatResponse { /// All steps executed during this turn. pub steps: Vec, /// Cumulative token usage metrics. - pub usage_metadata: UsageMetadata, + pub usage_metadata: Option, } ``` @@ -406,3 +409,47 @@ pub struct Step { > **Key difference:** In the Rust SDK, all state-querying methods are `async` because the > internal state is protected by a `tokio::sync::Mutex`. In Python, these are synchronous > properties protected by the GIL. + +## `send` drains the previous turn + +Steps still queued from the previous turn are drained into history before a new +prompt goes out. A caller who stopped reading mid-turn used to lose those steps +entirely, and the next turn's boundary was recorded at the wrong index. + +The drain only runs once a turn has actually been sent — a freshly connected +session reports not-idle until the harness says otherwise, and draining there +would block on a stream with nothing to deliver. + +`wait_for_idle()` resolves when the turn in flight finishes, returning +immediately if none is running. It is watch-backed, so it notices the moment +the harness reports idle rather than on the next tick of a poll loop. + +## Multimodal prompts and slash commands + +`Content` carries text, attachments and slash commands, and goes out as the +harness's `complex_user_input` — the plain prompt field is a bare string and can +carry none of them. The types existed in this crate and reached nothing: a +caller could build a `Content` and had no way to send it. + +```rust,no_run +# use antigravity_sdk_rust::types::{Content, ContentPrimitive, Media, MimeType, ImageMime}; +# async fn demo(agent: &antigravity_sdk_rust::agent::Agent) -> Result<(), anyhow::Error> { +let prompt = Content::Multi(vec![ + ContentPrimitive::Text("what changed in this screenshot?".to_string()), + ContentPrimitive::Media(Media { + data: std::fs::read("before.png")?, + mime_type: MimeType::Image(ImageMime::Png), + description: None, + }), +]); +let response = agent.chat_content(&prompt).await?; +# Ok(()) } +``` + +Text parts go through the same control-character strip as a plain prompt — a +multimodal path that skipped it would be a way around it. An empty prompt is +rejected before it reaches the harness, whichever form it takes. + +`last_structured_output()` returns the most recent `FINISH` payload, which is +what a `response_schema` produces; reaching it previously meant walking +`history()` backwards looking for the right step type. diff --git a/docs/fix-plan-current-defects.md b/docs/fix-plan-current-defects.md index 84172fe..723a06a 100644 --- a/docs/fix-plan-current-defects.md +++ b/docs/fix-plan-current-defects.md @@ -1,5 +1,11 @@ # Fix plan — defects in this crate today +> **Historical — frozen at 0.2.0.** Every item planned here has shipped. This +> document is kept for the reasoning behind the changes, not as a status board: +> it describes what was *planned*, and in places the delivery differed or a +> decision superseded it. **`CHANGELOG.md` is the record of what shipped**, and +> the only document that tracks current state. + Companion to `docs/upstream-parity.md`. That document audits the whole crate against upstream 0.1.9 and plans the wire migration (WP-1 … WP-11). **This document plans only the subset that is wrong right now, against the harness diff --git a/docs/hooks.md b/docs/hooks.md index 6c3dbe3..fd92e75 100644 --- a/docs/hooks.md +++ b/docs/hooks.md @@ -16,7 +16,7 @@ The Python SDK splits hooks into separate base classes by category: |---|---|---| | **Inspect** (read-only) | `OnSessionStartHook`, `PostToolCallHook`, `OnSessionEndHook`, `PostTurnHook`, `OnCompactionHook` | Default no-op methods on `Hook` | | **Decide** (blocking) | `PreTurnHook`, `PreToolCallDecideHook` | `pre_turn()`, `pre_tool_call()` return `HookResult` | -| **Transform** (modifying) | `OnToolErrorHook`, `OnInteractionHook` | `on_tool_error()`, `on_interaction()` return recovery data | +| **Transform** (modifying) | `OnToolErrorHook`, `OnInteractionHook` | `on_tool_error()` rewords a failure, `on_interaction()` answers questions | The Rust SDK merges all of these into a **single `Hook` trait** with 9 async methods. Every method has a default no-op implementation, so you only override @@ -41,12 +41,12 @@ pub trait Hook: Send + Sync { // ── Session lifecycle ────────────────────────────────────────── /// Called when the agent establishes a connection and starts a session. - async fn on_session_start(&self) -> Result<(), anyhow::Error> { + async fn on_session_start(&self, _context: &HookContext) -> Result<(), anyhow::Error> { Ok(()) } /// Called when the session is ending (agent shutdown or disconnect). - async fn on_session_end(&self) -> Result<(), anyhow::Error> { + async fn on_session_end(&self, _context: &HookContext) -> Result<(), anyhow::Error> { Ok(()) } @@ -54,12 +54,12 @@ pub trait Hook: Send + Sync { /// Intercepts the start of a user turn before the LLM processes the prompt. /// Return `allow: false` to halt execution. - async fn pre_turn(&self) -> Result { + async fn pre_turn(&self, _context: &HookContext) -> Result { Ok(HookResult { allow: true, message: String::new() }) } - /// Called after a turn completes, receiving the full response. - async fn post_turn(&self, _response: &ChatResponse) -> Result<(), anyhow::Error> { + /// Called when a turn completes, receiving the model's final text. + async fn post_turn(&self, _response: &str, _context: &HookContext) -> Result<(), anyhow::Error> { Ok(()) } @@ -67,28 +67,25 @@ pub trait Hook: Send + Sync { /// Intercepts a tool call before execution. /// Return `allow: false` to prevent the tool from running. - async fn pre_tool_call(&self, _tool_call: &ToolCall) -> Result { + async fn pre_tool_call(&self, _tool_call: &ToolCall, ctx: &HookContext) -> Result { Ok(HookResult { allow: true, message: String::new() }) } /// Called after a tool successfully returns a result. - async fn post_tool_call(&self, _result: &ToolResult) -> Result<(), anyhow::Error> { + async fn post_tool_call(&self, _result: &ToolResult, ctx: &HookContext) -> Result<(), anyhow::Error> { Ok(()) } // ── Error recovery ───────────────────────────────────────────── - /// Called when a tool execution encounters an error. - /// Return `(HookResult { allow: true, .. }, Some(value))` to provide a - /// recovery payload instead of propagating the error. + /// Called when a tool execution fails. + /// Return `Some(message)` to replace the error text the model is shown; + /// `None` leaves it as it is. A failure cannot be turned into a success. async fn on_tool_error( &self, - error: &anyhow::Error, - ) -> Result<(HookResult, Option), anyhow::Error> { - Ok(( - HookResult { allow: false, message: error.to_string() }, - None, - )) + _error: &anyhow::Error, + ) -> Result, anyhow::Error> { + Ok(None) } // ── User interaction ─────────────────────────────────────────── @@ -104,8 +101,9 @@ pub trait Hook: Send + Sync { // ── History compaction ───────────────────────────────────────── - /// Called when the conversation history is compacted/summarized. - async fn on_compaction(&self, _summary: &str) -> Result<(), anyhow::Error> { + /// Called when the conversation history is compacted, receiving the + /// compaction step itself. + async fn on_compaction(&self, _step: &Step, _context: &HookContext) -> Result<(), anyhow::Error> { Ok(()) } } @@ -139,15 +137,15 @@ use antigravity_sdk_rust::types::{HookResult, ToolCall, ToolResult, ChatResponse /// Object-safe version of `Hook`, used internally for dynamic dispatch. pub trait DynHook: Send + Sync { - fn on_session_start(&self) -> BoxFuture<'_, Result<(), anyhow::Error>>; - fn pre_turn(&self) -> BoxFuture<'_, Result>; + fn on_session_start<'a>(&'a self, context: &'a HookContext) -> BoxFuture<'a, Result<(), anyhow::Error>>; + fn pre_turn<'a>(&'a self, context: &'a HookContext) -> BoxFuture<'a, Result>; fn pre_tool_call<'a>(&'a self, tool_call: &'a ToolCall) -> BoxFuture<'a, Result>; fn post_tool_call<'a>(&'a self, result: &'a ToolResult) -> BoxFuture<'a, Result<(), anyhow::Error>>; fn on_tool_error<'a>(&'a self, error: &'a anyhow::Error) -> BoxFuture<'a, Result<(HookResult, Option), anyhow::Error>>; fn on_interaction<'a>(&'a self, questions: &'a [AskQuestionEntry]) -> BoxFuture<'a, Result, anyhow::Error>>; - fn on_session_end(&self) -> BoxFuture<'_, Result<(), anyhow::Error>>; - fn post_turn<'a>(&'a self, response: &'a ChatResponse) -> BoxFuture<'a, Result<(), anyhow::Error>>; - fn on_compaction<'a>(&'a self, summary: &'a str) -> BoxFuture<'a, Result<(), anyhow::Error>>; + fn on_session_end<'a>(&'a self, context: &'a HookContext) -> BoxFuture<'a, Result<(), anyhow::Error>>; + fn post_turn<'a>(&'a self, response: &'a str, context: &'a HookContext) -> BoxFuture<'a, Result<(), anyhow::Error>>; + fn on_compaction<'a>(&'a self, step: &'a Step, context: &'a HookContext) -> BoxFuture<'a, Result<(), anyhow::Error>>; } ``` @@ -301,9 +299,9 @@ Policies are sorted into 9 buckets organized by **specificity** (3 levels) × use antigravity_sdk_rust::policy; // ── Single-tool policies ─────────────────────────────────────────── -let _ = policy::allow("read_file"); // Approve a specific tool -let _ = policy::deny("run_command"); // Deny a specific tool -let _ = policy::ask_user("run_command", |_tc| { +let _ = policy::allow("VIEW_FILE"); // Approve a specific tool +let _ = policy::deny("RUN_COMMAND"); // Deny a specific tool +let _ = policy::ask_user("RUN_COMMAND", |_tc| { // Return true = user approved, false = user denied true }); @@ -354,7 +352,7 @@ Policies can include a predicate that narrows when they apply: use antigravity_sdk_rust::policy; // Only deny run_command when the command contains "rm" -let _ = policy::deny("run_command").when(|tc| { +let _ = policy::deny("RUN_COMMAND").when(|tc| { tc.args .get("CommandLine") .and_then(|v| v.as_str()) @@ -372,7 +370,7 @@ use antigravity_sdk_rust::policy; // Without MCP servers let enforcer = policy::enforce( vec![ - policy::deny("run_command"), + policy::deny("RUN_COMMAND"), policy::allow_all(), ], None, // no MCP servers @@ -398,28 +396,28 @@ use antigravity_sdk_rust::types::{ChatResponse, HookResult, ToolCall, ToolResult struct LoggingHook; impl Hook for LoggingHook { - async fn on_session_start(&self) -> Result<(), anyhow::Error> { + async fn on_session_start(&self, _context: &HookContext) -> Result<(), anyhow::Error> { println!("🟢 Session started"); Ok(()) } - async fn on_session_end(&self) -> Result<(), anyhow::Error> { + async fn on_session_end(&self, _context: &HookContext) -> Result<(), anyhow::Error> { println!("🔴 Session ended"); Ok(()) } - async fn pre_tool_call(&self, tool_call: &ToolCall) -> Result { + async fn pre_tool_call(&self, tool_call: &ToolCall, ctx: &HookContext) -> Result { println!("🔧 Calling tool: {}", tool_call.name); Ok(HookResult { allow: true, message: String::new() }) } - async fn post_tool_call(&self, result: &ToolResult) -> Result<(), anyhow::Error> { + async fn post_tool_call(&self, result: &ToolResult, ctx: &HookContext) -> Result<(), anyhow::Error> { println!("✅ Tool {} completed", result.name); Ok(()) } - async fn post_turn(&self, response: &ChatResponse) -> Result<(), anyhow::Error> { - println!("💬 Response length: {} chars", response.text.len()); + async fn post_turn(&self, response: &str, ctx: &HookContext) -> Result<(), anyhow::Error> { + println!("💬 Response length: {} chars", response.len()); Ok(()) } } @@ -449,7 +447,7 @@ impl RateLimitHook { } impl Hook for RateLimitHook { - async fn pre_turn(&self) -> Result { + async fn pre_turn(&self, _context: &HookContext) -> Result { let count = self.turn_count.fetch_add(1, Ordering::SeqCst); if count >= self.max_turns { Ok(HookResult { @@ -494,12 +492,12 @@ impl AuditHook { } impl Hook for AuditHook { - async fn pre_tool_call(&self, tool_call: &ToolCall) -> Result { + async fn pre_tool_call(&self, tool_call: &ToolCall, ctx: &HookContext) -> Result { println!("📝 Audit: tool '{}' invoked", tool_call.name); Ok(HookResult { allow: true, message: String::new() }) } - async fn post_tool_call(&self, result: &ToolResult) -> Result<(), anyhow::Error> { + async fn post_tool_call(&self, result: &ToolResult, ctx: &HookContext) -> Result<(), anyhow::Error> { let record = AuditRecord { tool_name: result.name.clone(), success: result.error.is_none(), @@ -585,7 +583,7 @@ async fn main() -> Result<(), anyhow::Error> { struct LoggingHook; impl antigravity_sdk_rust::hooks::Hook for LoggingHook { - async fn on_session_start(&self) -> Result<(), anyhow::Error> { + async fn on_session_start(&self, _context: &HookContext) -> Result<(), anyhow::Error> { println!("Session started"); Ok(()) } @@ -606,3 +604,158 @@ let mut agent = Agent::builder().allow_all().build(); agent.register_hook(Arc::new(MyHook) as Arc); // agent.start().await?; ``` + +## `on_tool_error` rewords, it does not recover + +A tool that failed stays failed. `on_tool_error` returns `Option`: the +error text the model is shown, or `None` to leave it alone. The first hook with +an opinion wins, and a hook that itself errors is logged and skipped. + +It used to be able to substitute a result and clear the error, which reported a +tool that had failed to the model as having worked and downgraded the step from +`Error` to `Done`. Upstream narrowed this for the same reason. Recovery belongs +inside the tool, where it can decide whether the fallback is honest. + +```rust,no_run +# use antigravity_sdk_rust::hooks::Hook; +struct Explain; + +impl Hook for Explain { + async fn on_tool_error(&self, error: &anyhow::Error, ctx: &HookContext) -> Result, anyhow::Error> { + if error.to_string().contains("response too large") { + // The model can act on this; it cannot act on a stack trace. + return Ok(Some("the result was too large — request fewer rows".to_string())); + } + Ok(None) + } +} +``` + +## A hook that errors denies the call + +`pre_tool_call` returning `Err` is not "no objection" — the call is **denied** +and the model is told the gate could not decide. A gate that cannot reach its +policy store, or whose predicate panicked, must not fall open. + +This is a behaviour change: a hook that used to error and let tools through now +blocks them. If a hook has a failure mode you want to tolerate, handle it inside +the hook and return `allow: true` explicitly. + +## `post_tool_call` and subagents + +A `START_SUBAGENT` call completes when the subagent's trajectory goes idle — +the harness sends no tool response for it. `post_tool_call` fires at that point +with `name = "START_SUBAGENT"` and `result` set to the subagent's last model +text, falling back to its trajectory id when it produced none. + +## `pre_turn` can refuse a turn + +Returning `allow: false` from `pre_turn` stops the prompt from being sent at +all: `send()` returns the hook's message as an error rather than starting a +turn that produces nothing. As with `pre_tool_call`, a hook that *errors* +refuses the turn too. + +## When the turn hooks fire + +`post_turn` fires at the terminal user-facing model step, carrying that step's +text. `on_compaction` fires on the compaction step, carrying the step — a hook +that archives history needs its index and trajectory, not only its summary +text. + +Both were defined and dispatched from nowhere until now; a `post_turn` hook +simply never ran. + +## Declaring hook kinds + +`Hook::declares()` returns the `HookKinds` an implementation wants the +**harness** to call. It is opt-in and defaults to `NONE`. + +This does not affect local dispatch: every method is called by the runner +either way. Declaring is what will put a kind into +`HarnessConfig.enabled_hooks`, and the harness then blocks its turn waiting for +an answer — so declare only what you handle. + +```rust,no_run +# use antigravity_sdk_rust::hooks::Hook; +# use antigravity_sdk_rust::hook_dispatch::HookKinds; +# struct Audit; +impl Hook for Audit { + fn declares(&self) -> HookKinds { + HookKinds::PRE_TOOL | HookKinds::POST_TOOL + } +} +``` + +`enabled_hooks` now carries exactly what registered hooks declared. It became +safe to emit only once the router existed: the harness blocks its turn waiting +for a `CallHookResponse` for every kind named in that field, so emitting it +first would have deadlocked the turn rather than being a no-op. + +## Harness-side hook requests + +The harness dispatches `CallHookRequest` for every declared kind and waits. +Every path through the router answers, including a request it does not +understand — that one is answered with `error_message`, which the harness treats +as a hook failure. Not answering is a deadlock. + +Deny semantics match the local gates: a hook that errors refuses, because a gate +that cannot decide must not fall open. Rewriting the model's arguments is not +offered, so `modified_arguments_json` comes back unset rather than echoed. + +## Hook and tool state + +Both `HookContext` and `ToolContext` are built on the same `StateStore`, which +provides `get`, `set` and an atomic `update`. They remain **separate stores**: +sharing the type is not sharing the data, and a hook should not silently depend +on a tool's bookkeeping. + +`HookContext` additionally chains to a parent — `get` walks up, `set` and +`update` stay local. `update` deliberately does not walk: a read-modify-write +that fell through to a parent would write its result locally and leave the +parent stale, which reads as a lost update. + +## What `post_tool_call` receives for a built-in + +`ToolResult::result` carries a structured object per tool rather than the +harness's display text: `RUN_COMMAND` reports `exit_code` and +`combined_output`, `READ_URL_CONTENT` reports `content_path` and `title`, +`EDIT_FILE` reports the `diff_block`. A hook that wanted a command's exit code +previously had to parse prose, and one that wanted a fetched page's location +could not get it at all. + +Anything the SDK does not recognise still falls back to the step's text, so an +unfamiliar built-in degrades rather than disappearing. + +## Every hook method receives a `HookContext` + +The context is session-scoped and shared across dispatches, so a hook can record +something in `on_session_start` and read it in `pre_tool_call` without holding +state of its own: + +```rust,no_run +# use antigravity_sdk_rust::hooks::Hook; +# use antigravity_sdk_rust::context::HookContext; +# use antigravity_sdk_rust::types::{HookResult, ToolCall}; +struct BudgetGate; + +impl Hook for BudgetGate { + async fn pre_tool_call( + &self, + _tool_call: &ToolCall, + context: &HookContext, + ) -> Result { + context.update::("calls", |c| Some(c.unwrap_or(0) + 1)); + let calls: u32 = context.get("calls").unwrap_or(0); + Ok(HookResult { + allow: calls <= 50, + message: "tool budget exhausted for this session".to_string(), + }) + } +} +``` + +`HookRunner::context()` exposes the same store, so a caller can seed it before +starting or read what hooks recorded afterwards. + +**This is the second `Hook` break**, and it was expected: the release notes for +the first one said so explicitly rather than claiming the trait was settled. diff --git a/docs/implementation-plan-phase-a.md b/docs/implementation-plan-phase-a.md new file mode 100644 index 0000000..93f7db9 --- /dev/null +++ b/docs/implementation-plan-phase-a.md @@ -0,0 +1,167 @@ +# Implementation plan — Phase A (finish the connection) + +> **Historical — frozen at 0.2.0.** Every item planned here has shipped. This +> document is kept for the reasoning behind the changes, not as a status board: +> it describes what was *planned*, and in places the delivery differed or a +> decision superseded it. **`CHANGELOG.md` is the record of what shipped**, and +> the only document that tracks current state. + +Written to be executed without re-deriving anything. Batch definitions and the +rest of the roadmap live in `docs/remaining-work.md` §6; this document carries +the code-level context for the five batches on the critical path. + +**Why Phase A is the milestone:** after it, the SDK completes a real turn +against a 0.1.9 harness. Everything before it fixed what we *send* (WP-1) and +the handshake (WP-6 core); what remains is the turn actually *terminating*. + +**Standing rules for every batch here** + +- Verify with CI's toolchain, not the container default: + `cargo +1.97.1 clippy --all-targets --all-features -- -D warnings`, + `cargo +1.97.1 fmt --all -- --check`, `cargo +1.97.1 test --all-targets --all-features`. + The default is 1.94 and misses lints CI enforces. +- **Every change lands in both `src/local.rs` and `src/wasm.rs`.** They are + forks of each other. CI compiles neither the wasm target nor the docs, so the + wasm half is unverified until B7 lands — read it, do not assume. +- Upstream sources are extracted per release under the session scratchpad + (`ag/0.1.1` … `ag/0.1.9`); `scripts/probe_harness.py` drives a real harness. +- The crate forbids `unsafe_code` and denies `unwrap_used` / `expect_used` / + `panic` outside `#[cfg(test)]` blocks that opt out. + +--- + +## A2 — Sentinel restructure, and C2 with it + +**Why paired:** C2 was attempted alone this session and reverted. Flipping the +initial `is_idle` to `true` makes `receive_steps()` return `None` on its first +poll, because that path treats "idle and queue empty" as end-of-stream before +any step arrives. The two only work together. + +### Current shape + +- Channel: `mpsc::UnboundedSender>` + (`src/local.rs:64`, receiver stored as + `Arc>>>`). +- Idle is signalled by a **magic step id**: a `Step { id: "IDLE_SENTINEL", .. }` + pushed at `src/local.rs:1170` / `src/wasm.rs:707`, matched at + `src/local.rs:140,159` and `src/wasm.rs:1000,1019`. +- `receive_steps` (`src/local.rs:114`, `src/wasm.rs:974`) **returns** on the + first sentinel seen while idle, so anything queued behind it is dropped. +- The idle arm uses `conn_is_idle.swap(true, ..)` and only emits a sentinel on + the *first* idle — every later idle is silent. + +### Target shape + +Upstream's loop (`local_connection.py:338-360`) is the specification: + +```python +while True: + if self.is_idle and self._processor.step_queue.empty(): + return + step_obj = await self._processor.step_queue.get() + if step_obj is IDLE_SENTINEL: + continue # <-- re-evaluate the head condition, do not return + if step_obj is None: + return + yield step_obj +``` + +1. Replace the magic id with an enum carried on the channel: + + ```rust + pub(crate) enum StepEvent { + Step(Box), // Step is large; box it to keep the enum small + Error(anyhow::Error), + Idle, + Close, + } + ``` + + Channel becomes `UnboundedSender`. A real step can then never + collide with the sentinel — the current design breaks if a harness ever emits + a step whose id is literally `IDLE_SENTINEL`. + +2. Rewrite `receive_steps` as upstream's loop: on `Idle`, **continue** and + re-check `is_idle && rx.is_empty()`; terminate only when both hold. Drop the + `checked_initial_idle` special case — the head condition subsumes it. + +3. Idle arm: `store(true, ..)` instead of `swap`, and emit `StepEvent::Idle` + **every** time (`event_processor.py:552-568`). + +4. Only then flip the initial `is_idle` to `true` (both sites carry a `NOTE` + explaining why it is currently `false`). + +### Verify + +- Port upstream's regression `local_connection_test.py:295-341`: queue + `[Idle, Step, Idle]` and assert the step after the first idle is yielded. + Today it is dropped — this is the test that proves the batch. +- `test_wasm_connection_integration_mock` must still pass; it is what caught the + C2 attempt. +- A turn with two idles emits two sentinels. + +--- + +## A3 — Cancellation + +`STATE_CANCELLED = 3` exists in the regenerated proto and nothing handles it. + +- Add the arm alongside FULLY_IDLE: push + `AntigravityExecutionError { message: tsu.error.unwrap_or("Turn cancelled") }`, + set idle, emit `StepEvent::Idle` — `event_processor.py:560-568` verbatim. +- Add `Connection::cancel()` and a `client_cancelled: AtomicBool`. Upstream + raises `AntigravityCancelledError` at each termination point when the flag is + set (`local_connection.py:340-344,352-355`), so a cancelled turn is + distinguishable from a completed one. +- New error variant in `src/error.rs`. `AntigravityCancelledError` is 0.1.2 + upstream; the crate has no equivalent. + +**Depends on A2** — it emits the same sentinel A2 restructures. + +--- + +## A4 — Turn-level errors + +- `TrajectoryStateUpdate.error` (field 4) is in the schema and unread. Push it + as an error before the idle transition (`event_processor.py:554-557`), so a + turn failing server-side surfaces instead of ending silently. +- `src/local.rs` reads only `step_update.error_message`; fall back to + `step_update.error.error_message` so a step carrying `http_code=403` with an + empty top-level message is not reported as empty (audit C14). +- Retain a bounded stderr tail (`VecDeque`, cap ~100) from the reader at + `src/local.rs:719-730`, currently logged and discarded, and attach it to the + error on an unexpected close (audit C7). Native only — the wasm transport has + no subprocess. + +--- + +## A5 — WP-6 remainder + +- **Seed `Conversation` from the replayed history.** `connect()` already parses + it and exposes `LocalConnection::initial_history()`; `Conversation::new` + cannot accept it. Thread it through, replaying compaction indices and + cumulative usage. +- **`env` passthrough** — `AgentConfig.env` → `InputConfig.env` (field 5, on the + *binary* handshake, so map encoding is exercised) **and** `Command::envs()` + merged over the existing SHELL/PATH base. +- **Prompt sanitization** — strip control characters, upstream + `_sanitize_prompt` (`local_connection.py:219-229`). Applied to text parts + only, never the plain-string path. +- **`save_dir`** — default to a `antigravity_*` temp dir when unset. +- **127.0.0.1 fallback** on connect, with the harness stderr in the error + message (`local_connection.py:1086-1100`). +- **`DebugConfig`** — `enable_server_side_tracing` + logging level (0.1.9). + +--- + +## After Phase A + +Re-run `scripts/probe_harness.py` against the 0.1.9 wheel and then drive a real +turn end to end. That is the point to cut `0.1.15-rc` and to update the "still +not connectable" wording in `docs/upstream-parity.md` §2 and the PR body. + +Phases B–E are specified in `docs/remaining-work.md` §6 with per-batch +"done when" criteria. Two ordering rules there are load-bearing, not advisory: +**C2 cannot ship without A2** (proven, reverted), and **E5 must be last in +Phase E** — emitting `enabled_hooks` before the router exists converts a silent +no-op into a mid-turn deadlock. diff --git a/docs/mcp.md b/docs/mcp.md index cf7eb87..c472b20 100644 --- a/docs/mcp.md +++ b/docs/mcp.md @@ -287,3 +287,14 @@ The name is used for: | N/A | `McpServerConfig::Http { ... }` (Rust-only) | | `LocalAgentConfig(mcp_servers=[...])` | `Agent::builder().mcp_servers(vec![...])` | | `McpBridge` (runtime client) | Handled by localharness (not in SDK) | + +## Servers reach the harness + +MCP servers configured on the builder are emitted on `HarnessConfig.mcp_servers` +(field 14). Until now the builder accepted them and both transports stored +them, and nothing ever put them on the wire — `mcp_server(...)` was a no-op and +the model never saw a single MCP tool. + +A stdio server carries its `command`, `args`, `env` and `timeout_seconds`. SSE +and HTTP both map to the proto's single HTTP transport; the harness negotiates +the streaming style itself. diff --git a/docs/policy.md b/docs/policy.md new file mode 100644 index 0000000..2929355 --- /dev/null +++ b/docs/policy.md @@ -0,0 +1,159 @@ +# Policy + +Policies decide whether a tool call runs. They are evaluated by a +`PolicyEnforcer`, which the agent registers as a hook, so every gated tool call +passes through them before execution. + +`docs/agent.md` has linked this page for some time without it existing. + +## Tool identifiers are SCREAMING_SNAKE + +This is the single most common mistake, because it fails **silently**: a policy +whose tool name does not match anything simply never applies, and a trailing +wildcard then decides the call. + +```rust +policy::deny("RUN_COMMAND") // ✅ matches +policy::deny("run_command") // ❌ matches nothing — the wildcard decides +``` + +The accepted spellings are exactly `BuiltinTools::as_str()`: + +| Variant | Identifier | +|---|---| +| `CreateFile` | `CREATE_FILE` | +| `EditFile` | `EDIT_FILE` | +| `FindFile` | `FIND_FILE` | +| `ListDir` | `LIST_DIR` | +| `RunCommand` | `RUN_COMMAND` | +| `SearchDir` | `SEARCH_DIR` | +| `ViewFile` | `VIEW_FILE` | +| `StartSubagent` | `START_SUBAGENT` | +| `GenerateImage` | `GENERATE_IMAGE` | +| `AskQuestion` | `ASK_QUESTION` | +| `Finish` | `FINISH` | + +Prefer `BuiltinTools::RunCommand.as_str()` over a string literal so a rename is +a compile error rather than a policy that stops matching. + +> **Divergence from the Python SDK.** Upstream's identifiers are lowercase +> (`run_command`, `list_directory`, `search_directory`). A Python policy ported +> verbatim will not match here. This is a **standing divergence**, not a pending +> change: the 0.1.9 audit recorded it as S8 and 0.2.0 shipped without aligning +> it, so the uppercase spellings are the ones to write against. + +## Decisions + +| Decision | Effect | +|---|---| +| `Approve` | The call runs. | +| `Deny` | The call is blocked and the model is told why. | +| `AskUser` | The `ask_user` handler decides. A policy without a handler is a config error. | + +## Precedence + +Policies are bucketed, and **the first match in the highest-priority bucket +wins** — not the last policy in the list. Specificity beats order: + +1. A specific tool with a `when` predicate +2. A specific tool without one +3. An MCP `server/tool` target +4. An MCP `server/*` wildcard +5. The global `*` wildcard + +So `[allow_all(), deny("RUN_COMMAND")]` denies `RUN_COMMAND` even though the +wildcard comes first. This is why `workspace_only()`'s DENY rules survive being +prepended to a policy set containing `allow_all()`. + +## Builders + +| Builder | Produces | +|---|---| +| `allow(tool)` / `deny(tool)` | One policy for one tool | +| `ask_user(tool, handler)` | One policy that prompts | +| `allow_all()` / `deny_all()` | The `*` fallback | +| `confirm_run_command(handler)` | Ask (or deny) on `RUN_COMMAND`, allow the rest | +| `safe_defaults(handler)` | Approve read-only tools, ask for everything else | +| `workspace_only(dirs)` | Deny path-carrying tools outside `dirs` | +| `workspace_only_for(tools, dirs)` | The same, for an explicit tool list | +| `allow_mcp` / `deny_mcp` / `ask_user_mcp` | A group for an MCP server | + +Group builders return `Vec`; compose them with +`AgentBuilder::policy_groups`: + +```rust +let agent = Agent::builder() + .policy_groups([ + policy::workspace_only(vec!["/srv/app".to_string()]), + vec![policy::deny("RUN_COMMAND"), policy::allow_all()], + ]) + .build(); +``` + +To attach a predicate or a name to a whole group, map over it: + +```rust +let policies: Vec = policy::deny_mcp(&server, None) + .into_iter() + .map(|p| p.with_name("no_mcp_writes")) + .collect(); +``` + +## Workspace scoping + +`workspace_only(dirs)` denies a tool whose `canonical_path` resolves outside +every directory in `dirs`. **Applied unconditionally** — including when the +policy set contains `allow_all()`, which upstream documents as the way to get +autonomous shell access *while* file tools stay scoped. The opt-out is +`workspaces(vec![])`, not a policy. + +Containment is decided after resolution: `.` and `..` are collapsed and symlinks +are followed before comparison, so `/../../etc/passwd` is outside. +Resolution failures are treated as outside — it fails closed. A tool call +carrying no path is unaffected. + +The agent's `app_data_dir` joins the allow-list so the agent can reach its own +state directory. + +> **Divergence, deliberately.** This scopes six tools where upstream scopes +> three (`VIEW_FILE`, `CREATE_FILE`, `EDIT_FILE`). `list_directory` enumerates +> the filesystem and `search_directory` returns matching file *content*, so +> leaving them unscoped would let the model read anywhere on disk. For upstream's +> exact scope: `workspace_only_for(&BuiltinTools::file_tools(), dirs)`. +> `FIND_FILE` is unscoped, matching upstream. + +## Predicates + +`when` narrows a policy to calls matching a condition: + +```rust +policy::deny("RUN_COMMAND").when(|tc| { + tc.args.get("command_line") + .and_then(|v| v.as_str()) + .is_some_and(|cmd| cmd.contains("rm -rf")) +}) +``` + +A predicate that panics is treated as **matching** — a policy that cannot decide +must not silently allow the call. + +## MCP targets + +MCP tools are addressed as `server/tool`, with `server/*` for a whole server. +Registering MCP policies without registering the servers they name is a +config error rather than a silent no-op. + +## Validation at startup + +`Agent::start` rejects: + +- an `AskUser` policy with no handler +- MCP policies with no registered MCP servers +- write tools enabled with no policies at all + +## See also + +- `docs/agent.md` — agent configuration +- `docs/hooks.md` — the hook system policies are built on +- `docs/upstream-parity.md` — the divergences noted above, with upstream + references (historical; frozen at 0.2.0) diff --git a/docs/remaining-work.md b/docs/remaining-work.md new file mode 100644 index 0000000..03d4c30 --- /dev/null +++ b/docs/remaining-work.md @@ -0,0 +1,243 @@ +# Remaining work + +> **Historical — frozen at 0.2.0.** Every item planned here has shipped. This +> document is kept for the reasoning behind the changes, not as a status board: +> it describes what was *planned*, and in places the delivery differed or a +> decision superseded it. **`CHANGELOG.md` is the record of what shipped**, and +> the only document that tracks current state. + +Executable backlog, derived from `docs/upstream-parity.md` (the 0.1.9 migration) +and `docs/fix-plan-current-defects.md` (defects against the pinned harness). +Every row is a unit of work that can be picked up on its own once its blockers +are clear. Item IDs match the two plans — read the corresponding section there +before starting one. + +**Status as of 2026-08-02.** **Every batch in this document is complete.** All +five phases — A (connection), B (0.1.15), C (capability surface), D (0.2.0 +break), E (hooks and public API) — have landed on +`claude/antigravity-python-upstream-changes-ux2sc1`. + +Two scope decisions worth carrying forward rather than losing in the diff: +`DebugConfig` has no field in the 0.1.9 proto, so it is out of scope rather than +pending; and the explicit model list is `GeminiConfig::model_targets`, because +`models` was already the crate's shorthand form — a deliberate divergence from +upstream's naming. + +Historical note — 16 items landed at the time this status line was first +written: WI-1…WI-8 and WI-14 (merged in +#8); WP-1, the core of WP-2, the core of WP-6 and C5 (open in #9). + +Everything the paragraphs above once listed as pending has landed. The tables +below are the record; where a row's delivery differs from what was planned, the +row says so. + +--- + +## 1. Migration — `docs/upstream-parity.md` + +| ID | What | Size | Blocked by | +|---|---|---|---| +| ~~WP-6~~ | **Done** on both transports; `DebugConfig` is not in the 0.1.9 proto and is out of scope | S | — | +| ~~WP-2 tail~~ | **Done** — `session_end` handshake, `callHookRequest` exercised end to end, wasm mock uses real frames | S | — | +| ~~WP-5~~ | Turn lifecycle and idle state machine — **done**, delivered as Phase A: main-trajectory tracking (A1), the sentinel protocol (A2), `STATE_CANCELLED` and cancel support (A3), `TrajectoryStateUpdate.error` (A4) | L | WP-1, WP-2 | +| ~~WP-4~~ | Model configuration public API — **done** as C1–C3 | L | WP-1 | +| ~~WP-7~~ | Tool runner correctness — **done** as D2 (`error_message`), D4 (coercion), D5 (`ToolContext`) and B5 (structured results) | M | WP-1 | +| ~~WP-9~~ | Capability surface — **done** as C4, C5, C6, C7 | L | WP-1, WP-4 | +| ~~WP-8~~ | Harness-side hook channel — **done** as E1–E5 | XL | WP-1, WP-5, WP-6 | +| ~~WP-10~~ | **Done** across A10 (trigger narrowing), B4 and E6 | L | — | +| ~~WP-11~~ | Tooling, CI, docs, examples, skills — **done**; the drift job is the new part | M | — | + +**WP-3** (security hardening) is complete — it landed as WI-1…WI-8 in #8. + +--- + +## 2. Fix plan, release 0.1.15 — source-compatible + +Twelve items, none blocking each other except where noted. + +| ID | What | Files | Size | +|---|---|---|---| +| ~~C2~~ | **Done** — the connection starts idle, as upstream does. What closes the race is the contract, not a flag: `send()` clears idle before the prompt goes out, so send-then-receive cannot observe the gap, and subscribing before sending now yields an empty stream instead of blocking forever | `local.rs`, `wasm.rs` | S | +| ~~A5~~ | **Done** — `send` drains the previous turn into history first, but only once a turn has actually been sent: a fresh connection reports not-idle, and draining there would block on a stream with nothing to deliver | `conversation.rs`, `connection.rs` | M | +| ~~hook-dispatch~~ | **Done** — `src/hook_dispatch.rs` | `hook_dispatch.rs` (new) | XS | +| ~~H1a~~ | **Done** — `gate_turn` runs before any state is touched, so a denied turn leaves the connection untouched; a hook that errors denies, matching S2 | `hook_dispatch.rs`, both transports | S | +| ~~H12~~ | **Done** — a non-main trajectory going idle dispatches `post_tool_call` for `START_SUBAGENT`, carrying the subagent's last model text (or its trajectory id). `examples/subagents.rs` now fires | `local.rs`, `wasm.rs` | S | +| ~~N3~~ | **Done** — `src/tool_output.rs`; a hook reads an exit code or a content path instead of parsing display text | `tool_output.rs` (new), both transports | M | + +--- + +## 3. Fix plan, release 0.2.0 — breaking + +Twenty items. Per the maintainer decision recorded in the fix plan §8.3, these +batch into one release, and wire-neutral upstream API corrections are in scope. + +**Security and correctness first:** + +| ID | What | Size | +|---|---|---| +| ~~S2~~ | **Done** — `HookRunner::gate_tool_call` is the single decision point at both transports and both call sites; a hook that errors denies and the model is told the gate could not decide | S | +| ~~H4~~ | **Done** — `on_tool_error` returns `Option`: it rewords the failure the model is shown and cannot clear it | M | +| ~~T1+T9~~ | **Done** — `Agent::start` attaches a `ToolContext` built on a new `WeakConnection`, so context-aware tools work and the context does not keep the session alive | S | +| ~~A1~~ | **Done** — `stop`/`is_running`/double-start guard, and `Agent::stop` stops triggers before disconnecting | M | +| ~~A10~~ | **Done** — `TriggerContext::send` is the whole surface | S | + +**The rest:** + +| ID | What | Size | +|---|---|---| +| ~~T6~~ | **Done** — a policy predicate can now tell `github/create_issue` from a local one, and a hook can route failures without parsing prose | S | +| ~~H11~~ | **Done** — `error::ToolExecutionError`, carried on `ToolResult::exception` | XS | +| ~~tool-wire~~ | **Done** — `src/tool_wire.rs`; the six drifted `ToolResponse` sites became one | S | +| ~~T5~~ | **Done** — absent or empty `arguments_json` is an empty object, not null | XS | +| ~~W8~~ | **Done** — and `error_message` is finally set, so a failed tool no longer reaches the harness looking like a success | S | +| ~~docs-on-tool-error~~ | **Done** — `docs/hooks.md`, both skill references and the skill's hooks example | S | +| ~~H1b~~ | **Done** — dispatched at the terminal user-facing model step | S | +| ~~H1d+H16~~ | **Done** — dispatched on the compaction step, which is what the hook receives | XS | +| ~~A2~~ | **Done** — per-turn and `Option`; the session total stays on `Conversation::total_usage` | XS | +| ~~T7+T8~~ | **Done** — duplicate names error from `Agent::start()`; the registry is a `Vec`, so order is registration order | S | +| ~~T4~~ | **Done** — `src/coerce.rs`; only unambiguous conversions, so a real type error still reads as one | M | +| ~~T10~~ | **Done** — the batch joins, and the registry lock is released before any tool body runs | S | +| ~~X19~~ | **Done** — `examples/custom_tools.rs` has a session-state tool; unit tests cover the injection and the dead-session case | S | +| ~~A11~~ | **Done** — `every(interval, callback)` plus `every_notification` for the fixed-message case; both reject a zero interval | S | +| ~~finish-extractor~~ | **Done** — `FINISH` classifies as a tool call, so the one call that ends a turn is finally visible to policies and hooks | XS | + +--- + +## 4. Conflict-pass items — fix plan §9 + +Ten defects found while checking the plan against itself. All live today, none +blocked on the migration. + +| ID | What | Size | +|---|---|---| +| ~~wait-for-idle~~ | **Done** — `Connection::wait_for_idle` is watch-backed, not a poll loop; also on `Conversation` | S | +| ~~harness-crash-diagnostics~~ | **Done** — landed with A4 | S | +| ~~predicate-args-fidelity~~ | **Done**. `args` carries arguments only; the result keys a predicate saw as null before execution now arrive on the `ToolResult` | XS | +| ~~single-consumer-receive-steps~~ | **Done** — the connection hands out one live stream at a time and a second subscriber gets an error rather than half the steps. The claim is released when the stream drops, so the per-turn call still works | XS | +| ~~ask-question-builtin~~ | **Done** — `BuiltinTools::AskQuestion` (`ASK_QUESTION`), in `all_tools()`, and `user_questions.enabled` now follows it. Behaviour change: a caller passing `enabled_tools` explicitly must include it to keep the question panel, where before it was on unconditionally | XS | + +--- + +## 5. Sequencing + +Before starting anything in §2 or §3, read **fix plan §8** — seven items edit +`Agent::start`, six edit `process_tool_calls`, and the ordering rules there are +load-bearing. + +The order this was executed in, kept because the dependencies still explain the +shape of the diff: + +1. WP-6 core, then Phase A — the connection had to complete a turn first. +2. WP-2 tail, which is what made the hook channel exercisable. +3. §2, the non-breaking fixes. +4. WP-4 + WP-7 + WP-9 — the capability surface. +5. WP-8, the largest, carrying the `Hook` trait break. +6. §3 batched with WP-10, so downstream breaks once. +7. WP-11's drift-detection job. + +The standing caveat here was that CI compiled neither the wasm target nor the +docs, leaving every `src/wasm.rs` mirror unverified. That was resolved early by +pulling B7 forward: CI now builds the wasm target, the doctests and the +directory examples, and it caught a genuine wasm-only break on its first run. +Two further wasm-side drifts were found afterwards, which is the argument for +having done it first rather than last. + +--- + +## 6. Batched delivery plan + +The L and XL rows above are too large to pick up in one sitting, and two of +them (WP-5, WP-8) restructure code both transports share. This breaks them into +batches sized to **one commit, one review, tree green at the end**. Batches are +ordered; within a batch the items must land together. + +Each batch names its **done when** so it can be verified without re-reading the +plans. + +### Phase A — finish the connection (the critical path) + +| # | Batch | Items | Size | Done when | +|---|---|---|---|---| +| ~~A1~~ | ~~Main-trajectory tracking~~ — **done** | Replace `parent_idle` + `active_subagent_ids` with `main_trajectory_id` set from the first non-empty `trajectory_id`; return early for non-main trajectories; clear it in `send()` | S | A subagent going idle no longer ends the caller's turn; the `OnceLock` learning heuristic is gone | +| ~~A2~~ | Sentinel restructure — **done**. Shipped as `StepEvent::{Step, Error, Idle}`, not the planned `{Step, Idle, Close}`: the reader dropping the channel already ends the stream, so a `Close` variant would have been a second way to say the same thing, while errors genuinely needed a variant of their own | `StepEvent` enum replacing the `"IDLE_SENTINEL"` magic id; loop instead of returning on first idle; `store` not `swap`; then flip the initial `is_idle` to `true` | M | Upstream's idle → step → idle scenario yields the post-idle step; `test_wasm_connection_integration_mock` still passes | +| ~~A3~~ | Cancellation — **done**. `Conversation::cancel()` sets a `cancel_requested` flag on the connection; the reader converts the harness's plain `STATE_FULLY_IDLE` into `AntigravityError::Cancelled`, and `send()` clears the flag so it cannot leak into the next turn. Covered by `test_cancel_surfaces_cancelled_error` | S | A cancelled turn is distinguishable from a completed one | +| ~~A4~~ | Turn-level errors — **done**. The stderr reader keeps a 20-line tail; when the socket closes before idle, the stream yields `harness connection closed before the turn finished` with those lines attached. Covered by `test_harness_crash_surfaces_stderr_tail` | S | A turn that fails server-side surfaces an error instead of ending silently | +| ~~A5~~ | WP-6 remainder — **done on both transports**. The wasm half publishes the handshake reply from the reader task and `initial_history()` awaits it, since that transport shares one socket and has no split stream to read inline. `DebugConfig` is not in the 0.1.9 proto and is dropped from scope rather than invented | M | A resumed conversation starts with its history | + +**Phase A is complete.** +That is the milestone worth cutting a release around. + +### Phase B — the non-breaking release (0.1.15) — **complete** + +| # | Batch | Items | Size | +|---|---|---|---| +| ~~B1~~ | Policy ergonomics — **done** earlier in this branch (`safe_defaults`, `IntoPolicies`, `policy_groups`) | S15, N8 | XS | +| ~~B2~~ | Hook plumbing module — **done**. H1c (`session_end` from `disconnect`) and H9 (contain an erroring `on_tool_error`) already landed earlier in this branch; H9's shape changed again with H4 | `hook-dispatch`, H1c, H9 | S | +| ~~B3~~ | Turn hooks — **done** | H1a (`pre_turn` with deny semantics), H12 | S | +| ~~B4~~ | Conversation drain — **done** | A5 + `wait-for-idle` | M | +| ~~B5~~ | Structured tool results — **done** | N3 | M | +| ~~B6~~ | Small correctness — **done** | question-answer index mismatch, `single-consumer-receive-steps`, `ask-question-builtin`, `agent-input-validation`, `step-error-and-ws-limits` | S | +| ~~B7~~ | WP-2 tail — **done**. `session_end` request and its acknowledgement, the `callHookRequest` branch (E4), and the CI subset | M | + +**The CI half of B7 landed early**, after A1 shipped to `src/local.rs` only and +nothing caught the missing `src/wasm.rs` half. CI now compiles the wasm target, +the doctests and the three directory examples — it found a genuine wasm-only +break on its first run. + +### Phase C — capability surface — **complete** + +| # | Batch | Items | Size | +|---|---|---|---| +| ~~C1~~ | Model types — **done**. `ThinkingLevel` uses per-variant renames: `rename_all = "lowercase"` would have emitted `extrahigh` | `ModelTarget` / `ModelEndpoint` / `GeminiModelOptions`, `ThinkingLevel::ExtraHigh` | M | +| ~~C2~~ | Model resolution — **done**. Explicit → shorthand → defaults, deduped by model type and never by name; an explicit target without an endpoint is an error | M | +| ~~C3~~ | Model environment — **done**. `GOOGLE_GENAI_USE_VERTEXAI`/`_USE_ENTERPRISE` select Vertex, `GOOGLE_CLOUD_PROJECT`/`_LOCATION` hydrate it, and an env-only key stays off the wire | S | +| ~~C4~~ | MCP on the wire — **done**. `mcp_server(...)` was a no-op: the builder accepted servers, both strategies stored them, and nothing emitted them, so the model never saw an MCP tool | M | +| ~~C5~~ | Retry + truncation — **done**. Emitted only when populated: an all-empty message would replace the harness's own defaults with zeros. (The status header above previously credited this as landed in #9; that was a different C5 — the `StepTracker` dedup from the conflict-pass list.) | S | +| ~~C6~~ | New built-ins — **done**. `SEARCH_WEB`/`READ_URL_CONTENT` are `BuiltinTools`, gate their harness configs, and classify as tool calls so policies see them. `read_only()` gains `READ_URL_CONTENT`, matching upstream 0.1.6 | M | +| ~~C7~~ | Subagents — **done**, with all three validations: read-only default capabilities, `START_SUBAGENT` dropped with a warning, and an unregistered tool name is an error | L | + +### Phase D — the breaking release (0.2.0) — **complete** + +Batch **all** of Phase D into a single release; the audit's §6 decision 1 and the +maintainer's §8.3 decisions both assume one break, not several. + +| # | Batch | Items | Size | +|---|---|---|---| +| ~~D1~~ | Fail-closed gating — **done** | S2 | S | +| ~~D2~~ | Tool result shape — **done** | T6, H11, `tool-wire`, T5, W8 | M | +| ~~D3~~ | `on_tool_error` contract — **done** | H4 + the documents that teach the old behaviour | M | +| ~~D4~~ | Tool runner — **done** | T7+T8, T4, T10, `finish-extractor` | M | +| ~~D5~~ | `ToolContext` — **done** | T1+T9, `tool-context-state-atomicity`, X19 | M | +| ~~D6~~ | Triggers — **done** | A10, A1, A11 | M | +| ~~D7~~ | Per-turn response — **done** | A2, `chatresponse-per-turn-steps` | XS | +| ~~D8~~ | Remaining hook signatures — **done** | H1b, H1d+H16 | S | + +> **The `HookContext` question was settled by E3, not deferred.** The plan here +> was to ship D8's break and accept a second one later. E3 landed the context +> parameter in the same release instead, which is the option this note called +> preferable: downstream breaks once, and no further `Hook` break is outstanding. + +### Phase E — hooks and the rest — **complete** + +| # | Batch | Items | Size | +|---|---|---|---| +| ~~E1~~ | Hook kind registry — **done**. `HookKinds` is opt-in and covers exactly the seven `LifecycleHook` members; `on_interaction`/`on_compaction` have none, so they stay local-only | M | +| ~~E2~~ | Shared state store — **done**. `src/state.rs`; both contexts delegate. The two stores stay separate data, deliberately | M | +| ~~E3~~ | Hook context threading — **done**. Every method takes `&HookContext`; the runner owns one session-scoped store, so a hook can record in one event and read in the next | L | +| ~~E4~~ | Hook proto + router — **done**. `answer_hook_request` answers every path including the ones it does not understand; an unanswered request is a deadlock, not a no-op | L | +| ~~E5~~ | Turn on `enabled_hooks` — **done**, and only now that the router answers. The field carries exactly what registered hooks declared | S | +| ~~E6~~ | Public API surface — **done**. `Content`/`ContentPrimitive` existed and reached nothing; they now go out as `complex_user_input`, with a `SlashCommand` variant added. `Connection` gained `send_content` and `wait_for_idle`; `Conversation` gained `send_content`, `chat_content_to_completion`, `cancel` and `last_structured_output` | L | +| ~~E7~~ | Docs, examples, drift job — **done**. The drift job is the new part (`scripts/check_upstream_drift.py`, weekly + advisory on PRs, verified against the live 0.1.9 release). Docs and examples have been updated batch by batch alongside the code | WP-11 | M | + +> **E5 was last, as required.** It landed only after E4's router, because +> emitting `enabled_hooks` before one exists converts a silent no-op into a +> mid-turn deadlock — the harness blocks waiting for a `CallHookResponse` +> nothing can send. `test_harness_hook_request_is_answered` pins the guarantee. + +### Suggested cut points + +- **After Phase A** — the SDK works against a current harness. Cut `0.1.15-rc`. +- **After Phase B** — ship `0.1.15`. +- **After Phase C** — feature parity on configuration; still non-breaking. +- **After Phase D** — ship `0.2.0`, one break. +- **Phase E** — `0.3.0`, or fold D8 into it if `HookContext` is adopted. diff --git a/docs/tools.md b/docs/tools.md index 848eff3..3e28e31 100644 --- a/docs/tools.md +++ b/docs/tools.md @@ -127,7 +127,9 @@ impl Tool for CounterTool { fn needs_context(&self) -> bool { true } // Opt-in async fn call(&self, _args: Value) -> Result { - Ok(Value::Null) // Fallback when no context + // Never reached: a `needs_context` tool called without a context is an + // error result, not a silent fallback. + unreachable!() } async fn call_with_context( @@ -147,14 +149,24 @@ impl Tool for CounterTool { ```rust,no_run pub struct ToolContext { // Methods: - fn conversation_id(&self) -> &str; - fn is_idle(&self) -> bool; + fn conversation_id(&self) -> Option; + fn is_idle(&self) -> Option; async fn send(&self, message: &str) -> Result<()>; fn get_state(&self, key: &str) -> Option; fn set_state(&self, key: &str, value: T); + fn update_state(&self, key: &str, transform: F); // atomic read-modify-write } ``` +The context holds a **weak** handle to the session — the connection owns the +tool runner, so a strong one would be a cycle that never frees. The two +`Option`-returning methods are `None`, and `send` errors, once the agent has +stopped. + +`Agent::start()` attaches the context. A `needs_context` tool invoked with none +attached returns an error result rather than falling back to `call()`, which +would run the tool in a subtly different mode. + > **Note**: Tool state is independent of Hook state. They use separate stores. ## Built-in Tools @@ -173,6 +185,9 @@ The SDK provides these built-in tools (managed by the harness): | `StartSubagent` | Launch sub-agents | | `GenerateImage` | Generate images | | `Finish` | Signal task completion | +| `AskQuestion` | Put a multiple-choice question to the user | +| `SearchWeb` | Search the web (harness-side) | +| `ReadUrlContent` | Fetch and summarize a URL (harness-side) | | `GrepSearch` | Grep-based search | ### Read-Only Tools @@ -238,3 +253,59 @@ impl Tool for InventoryTool { | `ToolRunner.execute()` | `ToolRunner::execute()` | | `ToolContext` with `get_state`/`set_state` | `ToolContext` with `get_state`/`set_state` | | Sync/async auto-detection | All tools are async | + +## Names must be unique + +Registering two tools with the same name is an error, surfaced from +`Agent::start()`. Silently replacing the first — the old behaviour — meant a +collision between two modules' tools resolved to whichever registered last, and +the model called something the caller never meant to expose. + +Registration order is preserved, and it is the order the tool list reaches the +model in. + +## A batch runs concurrently + +When the model asks for several tools at once, they execute concurrently and +the batch takes as long as its slowest member rather than the sum. Results come +back in call order regardless of which finished first. Tools that share mutable +state need their own synchronisation. + +## Failures on the wire + +A tool that fails sends the harness both a payload and `error_message`. The +field was never set before, so a failed call was recorded as a success whose +output happened to mention an error. + +`ToolResult` carries the failure twice on purpose: `error` is the message the +model is shown, and `exception` is the same failure as a +`ToolExecutionError { message, tool_name, server_name }` for hooks that route +or count failures. `server_name` is `None` for built-ins and client-side Rust +tools, and set for MCP tools — the name alone is ambiguous across servers. + +## Arguments are coerced to your schema + +Models routinely send `"3"` where a schema says `integer`, or `"true"` for a +boolean. Those are converted against the tool's own +`parameters_json_schema()` before the tool sees them, including inside arrays +and nested objects, and including a whole array or object that arrived as JSON +text. + +Only unambiguous conversions are made. `"not a number"` for an `integer` is +passed through untouched, so a genuine type error still surfaces as one rather +than being papered over. + +## Named subagents + +`AgentBuilder::subagent(...)` declares a subagent the model can delegate to. +Three rules are enforced when the config is built, matching upstream: + +- Capabilities default to the **read-only** built-ins. A subagent that inherited + everything is not what "default" should mean. +- `START_SUBAGENT` is dropped with a warning: the harness does not support a + subagent spawning subagents. +- Naming a client-side tool that is not registered on the main agent is an + error, not a subagent that silently cannot call it. + +`enabled_tools` and `disabled_tools` are mutually exclusive; setting both is a +configuration error rather than a silent precedence rule. diff --git a/docs/triggers.md b/docs/triggers.md index d3c7654..e5b3704 100644 --- a/docs/triggers.md +++ b/docs/triggers.md @@ -24,22 +24,23 @@ The `Trigger` trait defines a single `run` method that receives the active connection and executes for the lifetime of the agent: ```rust,no_run -use antigravity_sdk_rust::connection::AnyConnection; +use antigravity_sdk_rust::triggers::TriggerContext; /// A trait for defining asynchronous background tasks that execute /// during a connection lifecycle. pub trait Trigger: Send + Sync { - /// Launches the trigger task with the active connection. + /// Launches the trigger task. /// - /// This method runs for the lifetime of the agent. Use the connection - /// to send notifications back to the agent. - async fn run(&self, connection: AnyConnection) -> Result<(), anyhow::Error>; + /// Runs for the lifetime of the agent, or until the runner is stopped. + async fn run(&self, context: TriggerContext) -> Result<(), anyhow::Error>; } ``` -The connection parameter gives triggers access to -`send_trigger_notification()`, which pushes a message string into the agent's -event stream. +`TriggerContext` has exactly one method — `send(message)` — which pushes a +message into the agent's event stream. Triggers used to receive the whole +`AnyConnection`, which let a background task disconnect the agent, answer a +tool confirmation, or halt a turn the user had just started. Nudging the agent +is a trigger's job, so nudging is all the context exposes. --- @@ -50,12 +51,12 @@ that wraps the async `run` method in a `BoxFuture`: ```rust,no_run use futures_util::future::BoxFuture; -use antigravity_sdk_rust::connection::AnyConnection; +use antigravity_sdk_rust::triggers::TriggerContext; /// Object-safe version of `Trigger`, automatically implemented /// via a blanket impl for any `T: Trigger`. pub trait DynTrigger: Send + Sync { - fn run(&self, connection: AnyConnection) -> BoxFuture<'_, Result<(), anyhow::Error>>; + fn run(&self, context: TriggerContext) -> BoxFuture<'_, Result<(), anyhow::Error>>; } // Blanket impl: any type implementing Trigger automatically implements DynTrigger. @@ -84,11 +85,18 @@ use std::sync::Arc; | Method | Description | |---|---| | `TriggerRunner::new(triggers)` | Creates a runner wrapping a `Vec>` | -| `runner.start(connection)` | Spawns each trigger as an independent tokio task | +| `runner.start(connection)` | Spawns each trigger as an independent task. **Errors if already running** | +| `runner.stop()` | Signals every trigger to stop. Idempotent | +| `runner.is_running()` | Whether the trigger tasks are live | When `start()` is called, each trigger is cloned (via `Arc`) and spawned into -its own `tokio::spawn` block. If a trigger's `run` method returns an error, -it is logged via `tracing::error!` but does not crash the agent. +its own task. If a trigger's `run` method returns an error, it is logged via +`tracing::error!` but does not crash the agent. + +Starting twice is refused rather than silently doubling every trigger — a +heartbeat firing at twice its configured rate is hard to diagnose from the +outside. `Agent::stop()` calls `stop()` before disconnecting, so triggers no +longer outlive the agent, parked in a sleep and holding a connection. > [!NOTE] > Triggers run independently — one trigger failing does not affect others. @@ -103,15 +111,26 @@ it is logged via `tracing::error!` but does not crash the agent. The `every()` factory function creates a trigger that fires at regular intervals, sending a message to the agent each time: +`every()` runs a **callback** on each tick, so a trigger can decide whether it +has anything to say. `every_notification()` is the fixed-message case. Both +reject a zero interval, which would spin the task at full speed. + ```rust,no_run -use antigravity_sdk_rust::trigger_helpers::every; +use antigravity_sdk_rust::trigger_helpers::{every, every_notification}; use std::time::Duration; -// Send "check_status" to the agent every 30 seconds -let heartbeat = every(Duration::from_secs(30), "check_status"); +// Decide per tick +let monitor = every(Duration::from_secs(30), |ctx| async move { + if queue_depth() > 100 { + ctx.send("the queue is backing up").await?; + } + Ok(()) +})?; -// With a custom message -let monitor = every(Duration::from_millis(500), "fast_poll"); +// Or just send the same thing every time +let heartbeat = every_notification(Duration::from_secs(30), "check_status")?; +# fn queue_depth() -> usize { 0 } +# Ok::<(), anyhow::Error>(()) ``` The returned `PeriodicTrigger` loops indefinitely: diff --git a/docs/upstream-parity.md b/docs/upstream-parity.md index d84a2cc..5c20029 100644 --- a/docs/upstream-parity.md +++ b/docs/upstream-parity.md @@ -1,6 +1,12 @@ # Upstream Parity: antigravity-sdk-rust vs `google-antigravity` 0.1.9 -**Status:** audit complete, migration not started. +> **Historical — frozen at 0.2.0.** Every item planned here has shipped. This +> document is kept for the reasoning behind the changes, not as a status board: +> it describes what was *planned*, and in places the delivery differed or a +> decision superseded it. **`CHANGELOG.md` is the record of what shipped**, and +> the only document that tracks current state. + +**Status:** audit complete; the migration shipped in 0.2.0. **Parity target:** upstream `0.1.9`. **Port baseline:** upstream `0.1.1` (+ a `ClientInfo` back-port from 0.1.2) — what this crate was written against. **Audit date:** 2026-08-01. Nine subsystem audits, each adversarially verified against the extracted wheels and the decoded harness descriptors, then the load-bearing claims reproduced against the shipped 0.1.9 harness binary (§2). 258 findings survived verification: 31 breaking, 62 high, 107 medium, 58 low. diff --git a/examples/agent_server/src/main.rs b/examples/agent_server/src/main.rs index aea7ec5..eeaf75c 100644 --- a/examples/agent_server/src/main.rs +++ b/examples/agent_server/src/main.rs @@ -89,6 +89,7 @@ impl Hook for ConfirmHook { async fn pre_tool_call<'a>( &'a self, tool_call: &'a ToolCall, + _context: &'a antigravity_sdk_rust::context::HookContext, ) -> Result { // Always approve non-write tools immediately. if !WRITE_TOOLS.contains(&tool_call.name.as_str()) { diff --git a/examples/agent_server/target/.rustc_info.json b/examples/agent_server/target/.rustc_info.json new file mode 100644 index 0000000..7709d75 --- /dev/null +++ b/examples/agent_server/target/.rustc_info.json @@ -0,0 +1 @@ +{"rustc_fingerprint":199858249302242062,"outputs":{"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/root/.rustup/toolchains/1.97.1-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_has_atomic_primitive_alignment=\"16\"\ntarget_has_atomic_primitive_alignment=\"32\"\ntarget_has_atomic_primitive_alignment=\"64\"\ntarget_has_atomic_primitive_alignment=\"8\"\ntarget_has_atomic_primitive_alignment=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""},"17607329053570456326":{"success":true,"status":"","code":0,"stdout":"rustc 1.97.1 (8bab26f4f 2026-07-14)\nbinary: rustc\ncommit-hash: 8bab26f4f68e0e26f0bb7960be334d5b520ea452\ncommit-date: 2026-07-14\nhost: x86_64-unknown-linux-gnu\nrelease: 1.97.1\nLLVM version: 22.1.6\n","stderr":""}},"successes":{}} \ No newline at end of file diff --git a/examples/agent_server/target/CACHEDIR.TAG b/examples/agent_server/target/CACHEDIR.TAG new file mode 100644 index 0000000..20d7c31 --- /dev/null +++ b/examples/agent_server/target/CACHEDIR.TAG @@ -0,0 +1,3 @@ +Signature: 8a477f597d28d172789f06886806bc55 +# This file is a cache directory tag created by cargo. +# For information about cache directory tags see https://bford.info/cachedir/ diff --git a/examples/agent_server/target/debug/.cargo-build-lock b/examples/agent_server/target/debug/.cargo-build-lock new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/.cargo-lock b/examples/agent_server/target/debug/.cargo-lock new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/.fingerprint/agent_server-0d89f2c75aedc301/bin-agent_server b/examples/agent_server/target/debug/.fingerprint/agent_server-0d89f2c75aedc301/bin-agent_server new file mode 100644 index 0000000..42f9421 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/agent_server-0d89f2c75aedc301/bin-agent_server @@ -0,0 +1 @@ +1249c2f9fa8f3c9c \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/agent_server-0d89f2c75aedc301/bin-agent_server.json b/examples/agent_server/target/debug/.fingerprint/agent_server-0d89f2c75aedc301/bin-agent_server.json new file mode 100644 index 0000000..f9fcc37 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/agent_server-0d89f2c75aedc301/bin-agent_server.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":15759104368408283827,"profile":17672942494452627365,"path":4942398508502643691,"deps":[[2145939652136225981,"tokio",false,10610117683847046353],[3405707034081185165,"dotenvy",false,9550608283633024664],[5330460842384404171,"serde_json",false,18434307630622511866],[5380358770761950913,"tracing_subscriber",false,2460904273614199944],[6557439603276904804,"serde",false,13004456102427444285],[9842033052731393846,"axum",false,12767951622775881963],[10364619138950789809,"anyhow",false,6157661727871855300],[11458589406950860683,"antigravity_sdk_rust",false,5121684905056307607],[13067342572498832805,"futures_util",false,5508768519262945063],[13456317631986937123,"tower_http",false,513184670258549991],[14757622794040968908,"tracing",false,10539387003315624142]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/agent_server-0d89f2c75aedc301/dep-bin-agent_server","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/agent_server-0d89f2c75aedc301/dep-bin-agent_server b/examples/agent_server/target/debug/.fingerprint/agent_server-0d89f2c75aedc301/dep-bin-agent_server new file mode 100644 index 0000000..5c54f74 Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/agent_server-0d89f2c75aedc301/dep-bin-agent_server differ diff --git a/examples/agent_server/target/debug/.fingerprint/agent_server-0d89f2c75aedc301/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/agent_server-0d89f2c75aedc301/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/agent_server-0d89f2c75aedc301/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/agent_server-76df8b9fe4a73c91/dep-test-bin-agent_server b/examples/agent_server/target/debug/.fingerprint/agent_server-76df8b9fe4a73c91/dep-test-bin-agent_server new file mode 100644 index 0000000..5c54f74 Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/agent_server-76df8b9fe4a73c91/dep-test-bin-agent_server differ diff --git a/examples/agent_server/target/debug/.fingerprint/agent_server-76df8b9fe4a73c91/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/agent_server-76df8b9fe4a73c91/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/agent_server-76df8b9fe4a73c91/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/agent_server-76df8b9fe4a73c91/test-bin-agent_server b/examples/agent_server/target/debug/.fingerprint/agent_server-76df8b9fe4a73c91/test-bin-agent_server new file mode 100644 index 0000000..a6f7387 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/agent_server-76df8b9fe4a73c91/test-bin-agent_server @@ -0,0 +1 @@ +657e2e2348446e52 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/agent_server-76df8b9fe4a73c91/test-bin-agent_server.json b/examples/agent_server/target/debug/.fingerprint/agent_server-76df8b9fe4a73c91/test-bin-agent_server.json new file mode 100644 index 0000000..c58c08f --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/agent_server-76df8b9fe4a73c91/test-bin-agent_server.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":15759104368408283827,"profile":3316208278650011218,"path":4942398508502643691,"deps":[[2145939652136225981,"tokio",false,10610117683847046353],[3405707034081185165,"dotenvy",false,9550608283633024664],[5330460842384404171,"serde_json",false,18434307630622511866],[5380358770761950913,"tracing_subscriber",false,2460904273614199944],[6557439603276904804,"serde",false,13004456102427444285],[9842033052731393846,"axum",false,12767951622775881963],[10364619138950789809,"anyhow",false,6157661727871855300],[11458589406950860683,"antigravity_sdk_rust",false,6458590819226829677],[13067342572498832805,"futures_util",false,5508768519262945063],[13456317631986937123,"tower_http",false,513184670258549991],[14757622794040968908,"tracing",false,10539387003315624142]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/agent_server-76df8b9fe4a73c91/dep-test-bin-agent_server","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-27f369df03bf6ad3/dep-lib-antigravity_sdk_rust b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-27f369df03bf6ad3/dep-lib-antigravity_sdk_rust new file mode 100644 index 0000000..3436f0b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-27f369df03bf6ad3/dep-lib-antigravity_sdk_rust differ diff --git a/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-27f369df03bf6ad3/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-27f369df03bf6ad3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-27f369df03bf6ad3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-27f369df03bf6ad3/lib-antigravity_sdk_rust b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-27f369df03bf6ad3/lib-antigravity_sdk_rust new file mode 100644 index 0000000..79fe97c --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-27f369df03bf6ad3/lib-antigravity_sdk_rust @@ -0,0 +1 @@ +97895c0949e11347 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-27f369df03bf6ad3/lib-antigravity_sdk_rust.json b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-27f369df03bf6ad3/lib-antigravity_sdk_rust.json new file mode 100644 index 0000000..851c47d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-27f369df03bf6ad3/lib-antigravity_sdk_rust.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":3116543444834707651,"profile":1680010706729278242,"path":2980746994005300187,"deps":[[2145939652136225981,"tokio",false,10610117683847046353],[3405707034081185165,"dotenvy",false,9550608283633024664],[5330460842384404171,"serde_json",false,18434307630622511866],[5380358770761950913,"tracing_subscriber",false,2460904273614199944],[6557439603276904804,"serde",false,13004456102427444285],[6971842703803247244,"zeroize",false,18046558578773603969],[7016560594308609179,"prost",false,8068783542819593686],[9503031448373156387,"tokio_tungstenite",false,7043888530203972224],[10364619138950789809,"anyhow",false,6157661727871855300],[10773475955367917461,"pbjson",false,3063893885590101192],[11458589406950860683,"build_script_build",false,14851137901988101235],[11742730876020405241,"thiserror",false,12495459683686074214],[13067342572498832805,"futures_util",false,5508768519262945063],[14757622794040968908,"tracing",false,10539387003315624142]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/antigravity-sdk-rust-27f369df03bf6ad3/dep-lib-antigravity_sdk_rust","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-2ed49e035e1b3834/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-2ed49e035e1b3834/build-script-build-script-build new file mode 100644 index 0000000..d1d5d1f --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-2ed49e035e1b3834/build-script-build-script-build @@ -0,0 +1 @@ +023e4a6bf67361a2 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-2ed49e035e1b3834/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-2ed49e035e1b3834/build-script-build-script-build.json new file mode 100644 index 0000000..b4ee6aa --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-2ed49e035e1b3834/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":2835126046236718539,"profile":7766537877336865161,"path":8141706762753460588,"deps":[[99783594999256520,"prost_build",false,9631033740500134239],[15839705499423778113,"pbjson_build",false,13672355852755612406]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/antigravity-sdk-rust-2ed49e035e1b3834/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-2ed49e035e1b3834/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-2ed49e035e1b3834/dep-build-script-build-script-build new file mode 100644 index 0000000..b7bf9e2 Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-2ed49e035e1b3834/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-2ed49e035e1b3834/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-2ed49e035e1b3834/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-2ed49e035e1b3834/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-ae270c151de1d5a5/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-ae270c151de1d5a5/run-build-script-build-script-build new file mode 100644 index 0000000..de41a57 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-ae270c151de1d5a5/run-build-script-build-script-build @@ -0,0 +1 @@ +733c57b63cd719ce \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-ae270c151de1d5a5/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-ae270c151de1d5a5/run-build-script-build-script-build.json new file mode 100644 index 0000000..f33ac24 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/antigravity-sdk-rust-ae270c151de1d5a5/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[11458589406950860683,"build_script_build",false,11700760809084435970]],"local":[{"Precalculated":"1785685073.115129515s (src/types.rs)"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/anyhow-30de1fe9efd21a23/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/anyhow-30de1fe9efd21a23/run-build-script-build-script-build new file mode 100644 index 0000000..78ba76c --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/anyhow-30de1fe9efd21a23/run-build-script-build-script-build @@ -0,0 +1 @@ +9d706938aa8b60f4 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/anyhow-30de1fe9efd21a23/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/anyhow-30de1fe9efd21a23/run-build-script-build-script-build.json new file mode 100644 index 0000000..5f24d4e --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/anyhow-30de1fe9efd21a23/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10364619138950789809,"build_script_build",false,6578748408056573194]],"local":[{"RerunIfChanged":{"output":"debug/build/anyhow-30de1fe9efd21a23/output","paths":["src/nightly.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/anyhow-63324738ee307b1e/dep-lib-anyhow b/examples/agent_server/target/debug/.fingerprint/anyhow-63324738ee307b1e/dep-lib-anyhow new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/anyhow-63324738ee307b1e/dep-lib-anyhow differ diff --git a/examples/agent_server/target/debug/.fingerprint/anyhow-63324738ee307b1e/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/anyhow-63324738ee307b1e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/anyhow-63324738ee307b1e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/anyhow-63324738ee307b1e/lib-anyhow b/examples/agent_server/target/debug/.fingerprint/anyhow-63324738ee307b1e/lib-anyhow new file mode 100644 index 0000000..a07ddf8 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/anyhow-63324738ee307b1e/lib-anyhow @@ -0,0 +1 @@ +c4d1984272014202 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/anyhow-63324738ee307b1e/lib-anyhow.json b/examples/agent_server/target/debug/.fingerprint/anyhow-63324738ee307b1e/lib-anyhow.json new file mode 100644 index 0000000..9ff19a5 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/anyhow-63324738ee307b1e/lib-anyhow.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":1563897884725121975,"profile":2225463790103693989,"path":8754348751465933725,"deps":[[10364619138950789809,"build_script_build",false,17609228106225774749]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/anyhow-63324738ee307b1e/dep-lib-anyhow","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/anyhow-b73a1c715f21f557/dep-lib-anyhow b/examples/agent_server/target/debug/.fingerprint/anyhow-b73a1c715f21f557/dep-lib-anyhow new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/anyhow-b73a1c715f21f557/dep-lib-anyhow differ diff --git a/examples/agent_server/target/debug/.fingerprint/anyhow-b73a1c715f21f557/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/anyhow-b73a1c715f21f557/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/anyhow-b73a1c715f21f557/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/anyhow-b73a1c715f21f557/lib-anyhow b/examples/agent_server/target/debug/.fingerprint/anyhow-b73a1c715f21f557/lib-anyhow new file mode 100644 index 0000000..c292398 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/anyhow-b73a1c715f21f557/lib-anyhow @@ -0,0 +1 @@ +c4ead180b7687455 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/anyhow-b73a1c715f21f557/lib-anyhow.json b/examples/agent_server/target/debug/.fingerprint/anyhow-b73a1c715f21f557/lib-anyhow.json new file mode 100644 index 0000000..70b62ec --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/anyhow-b73a1c715f21f557/lib-anyhow.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":1563897884725121975,"profile":2241668132362809309,"path":8754348751465933725,"deps":[[10364619138950789809,"build_script_build",false,17609228106225774749]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/anyhow-b73a1c715f21f557/dep-lib-anyhow","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/anyhow-fbd2417508b87357/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/anyhow-fbd2417508b87357/build-script-build-script-build new file mode 100644 index 0000000..74f44a8 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/anyhow-fbd2417508b87357/build-script-build-script-build @@ -0,0 +1 @@ +0aede048d2684c5b \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/anyhow-fbd2417508b87357/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/anyhow-fbd2417508b87357/build-script-build-script-build.json new file mode 100644 index 0000000..a419a8c --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/anyhow-fbd2417508b87357/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":5408242616063297496,"profile":2225463790103693989,"path":572388422385001336,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/anyhow-fbd2417508b87357/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/anyhow-fbd2417508b87357/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/anyhow-fbd2417508b87357/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/anyhow-fbd2417508b87357/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/anyhow-fbd2417508b87357/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/anyhow-fbd2417508b87357/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/anyhow-fbd2417508b87357/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/atomic-waker-d3e04e7f6d1be0ac/dep-lib-atomic_waker b/examples/agent_server/target/debug/.fingerprint/atomic-waker-d3e04e7f6d1be0ac/dep-lib-atomic_waker new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/atomic-waker-d3e04e7f6d1be0ac/dep-lib-atomic_waker differ diff --git a/examples/agent_server/target/debug/.fingerprint/atomic-waker-d3e04e7f6d1be0ac/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/atomic-waker-d3e04e7f6d1be0ac/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/atomic-waker-d3e04e7f6d1be0ac/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/atomic-waker-d3e04e7f6d1be0ac/lib-atomic_waker b/examples/agent_server/target/debug/.fingerprint/atomic-waker-d3e04e7f6d1be0ac/lib-atomic_waker new file mode 100644 index 0000000..ad20f1b --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/atomic-waker-d3e04e7f6d1be0ac/lib-atomic_waker @@ -0,0 +1 @@ +126adcb69ebf5c95 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/atomic-waker-d3e04e7f6d1be0ac/lib-atomic_waker.json b/examples/agent_server/target/debug/.fingerprint/atomic-waker-d3e04e7f6d1be0ac/lib-atomic_waker.json new file mode 100644 index 0000000..2882d50 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/atomic-waker-d3e04e7f6d1be0ac/lib-atomic_waker.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"portable-atomic\"]","target":14411119108718288063,"profile":2241668132362809309,"path":14374989505947797619,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/atomic-waker-d3e04e7f6d1be0ac/dep-lib-atomic_waker","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/axum-a9659d5a05445b29/dep-lib-axum b/examples/agent_server/target/debug/.fingerprint/axum-a9659d5a05445b29/dep-lib-axum new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/axum-a9659d5a05445b29/dep-lib-axum differ diff --git a/examples/agent_server/target/debug/.fingerprint/axum-a9659d5a05445b29/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/axum-a9659d5a05445b29/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/axum-a9659d5a05445b29/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/axum-a9659d5a05445b29/lib-axum b/examples/agent_server/target/debug/.fingerprint/axum-a9659d5a05445b29/lib-axum new file mode 100644 index 0000000..518efa1 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/axum-a9659d5a05445b29/lib-axum @@ -0,0 +1 @@ +ebc0ed785ae030b1 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/axum-a9659d5a05445b29/lib-axum.json b/examples/agent_server/target/debug/.fingerprint/axum-a9659d5a05445b29/lib-axum.json new file mode 100644 index 0000000..b3fa3f2 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/axum-a9659d5a05445b29/lib-axum.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"form\", \"http1\", \"json\", \"matched-path\", \"original-uri\", \"query\", \"tokio\", \"tower-log\", \"tracing\"]","declared_features":"[\"__private\", \"__private_docs\", \"default\", \"form\", \"http1\", \"http2\", \"json\", \"macros\", \"matched-path\", \"multipart\", \"original-uri\", \"query\", \"tokio\", \"tower-log\", \"tracing\", \"ws\"]","target":13920321295547257648,"profile":11783930406738055899,"path":3430278859657121747,"deps":[[365100156011862361,"hyper",false,15719283430731174921],[784494742817713399,"tower_service",false,4699773025642892603],[1074175012458081222,"form_urlencoded",false,1206735495900643632],[2145939652136225981,"tokio",false,10610117683847046353],[2251399859588827949,"pin_project_lite",false,4667605112942415018],[2517136641825875337,"sync_wrapper",false,16935440249354926787],[3632162862999675140,"tower",false,18273619307304397384],[5330460842384404171,"serde_json",false,18434307630622511866],[5532778797167691009,"itoa",false,728509330440049395],[6803352382179706244,"percent_encoding",false,17460257087533955988],[7712452662827335977,"tower_layer",false,14836507917333715230],[8502962237732707896,"axum_core",false,10452561362774809505],[8913795983780778928,"matchit",false,17409856902942238863],[10229185211513642314,"mime",false,1660272247297170110],[11029742160753049355,"serde_core",false,10961053545634911783],[11926622812581095017,"bytes",false,17162365318241494045],[11976082518617474977,"hyper_util",false,8669141582419587878],[12328341851100645683,"http",false,13193275052002188385],[12613788554453945248,"memchr",false,6429642936732799769],[13067342572498832805,"futures_util",false,5508768519262945063],[14502011416451863236,"http_body_util",false,6368830395496405812],[14757622794040968908,"tracing",false,10539387003315624142],[14814583949208169760,"serde_path_to_error",false,12448480728263806621],[16542808166767769916,"serde_urlencoded",false,11779232197405498129],[17905774625381964326,"http_body",false,4630935022374126707]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/axum-a9659d5a05445b29/dep-lib-axum","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/axum-core-0531e1f5e64d6718/dep-lib-axum_core b/examples/agent_server/target/debug/.fingerprint/axum-core-0531e1f5e64d6718/dep-lib-axum_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/axum-core-0531e1f5e64d6718/dep-lib-axum_core differ diff --git a/examples/agent_server/target/debug/.fingerprint/axum-core-0531e1f5e64d6718/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/axum-core-0531e1f5e64d6718/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/axum-core-0531e1f5e64d6718/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/axum-core-0531e1f5e64d6718/lib-axum_core b/examples/agent_server/target/debug/.fingerprint/axum-core-0531e1f5e64d6718/lib-axum_core new file mode 100644 index 0000000..4472d8d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/axum-core-0531e1f5e64d6718/lib-axum_core @@ -0,0 +1 @@ +a15b2aed2df50e91 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/axum-core-0531e1f5e64d6718/lib-axum_core.json b/examples/agent_server/target/debug/.fingerprint/axum-core-0531e1f5e64d6718/lib-axum_core.json new file mode 100644 index 0000000..25985bb --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/axum-core-0531e1f5e64d6718/lib-axum_core.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"tracing\"]","declared_features":"[\"__private_docs\", \"tracing\"]","target":2565713999752801252,"profile":2831228942374545503,"path":6813087299855347211,"deps":[[784494742817713399,"tower_service",false,4699773025642892603],[2251399859588827949,"pin_project_lite",false,4667605112942415018],[2517136641825875337,"sync_wrapper",false,16935440249354926787],[7712452662827335977,"tower_layer",false,14836507917333715230],[10229185211513642314,"mime",false,1660272247297170110],[11926622812581095017,"bytes",false,17162365318241494045],[12328341851100645683,"http",false,13193275052002188385],[14502011416451863236,"http_body_util",false,6368830395496405812],[14757622794040968908,"tracing",false,10539387003315624142],[15759286673077216516,"futures_core",false,17521305048918112335],[17905774625381964326,"http_body",false,4630935022374126707]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/axum-core-0531e1f5e64d6718/dep-lib-axum_core","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/base64-70e6c2f54e55a600/dep-lib-base64 b/examples/agent_server/target/debug/.fingerprint/base64-70e6c2f54e55a600/dep-lib-base64 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/base64-70e6c2f54e55a600/dep-lib-base64 differ diff --git a/examples/agent_server/target/debug/.fingerprint/base64-70e6c2f54e55a600/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/base64-70e6c2f54e55a600/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/base64-70e6c2f54e55a600/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/base64-70e6c2f54e55a600/lib-base64 b/examples/agent_server/target/debug/.fingerprint/base64-70e6c2f54e55a600/lib-base64 new file mode 100644 index 0000000..ebb4368 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/base64-70e6c2f54e55a600/lib-base64 @@ -0,0 +1 @@ +4d25974c50f59237 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/base64-70e6c2f54e55a600/lib-base64.json b/examples/agent_server/target/debug/.fingerprint/base64-70e6c2f54e55a600/lib-base64.json new file mode 100644 index 0000000..9b1dc7f --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/base64-70e6c2f54e55a600/lib-base64.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":13060062996227388079,"profile":2241668132362809309,"path":10274234490047668973,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/base64-70e6c2f54e55a600/dep-lib-base64","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/bitflags-beba4f24b0bc6a9e/dep-lib-bitflags b/examples/agent_server/target/debug/.fingerprint/bitflags-beba4f24b0bc6a9e/dep-lib-bitflags new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/bitflags-beba4f24b0bc6a9e/dep-lib-bitflags differ diff --git a/examples/agent_server/target/debug/.fingerprint/bitflags-beba4f24b0bc6a9e/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/bitflags-beba4f24b0bc6a9e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/bitflags-beba4f24b0bc6a9e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/bitflags-beba4f24b0bc6a9e/lib-bitflags b/examples/agent_server/target/debug/.fingerprint/bitflags-beba4f24b0bc6a9e/lib-bitflags new file mode 100644 index 0000000..9f921c5 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/bitflags-beba4f24b0bc6a9e/lib-bitflags @@ -0,0 +1 @@ +e82cebb7a11b23de \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/bitflags-beba4f24b0bc6a9e/lib-bitflags.json b/examples/agent_server/target/debug/.fingerprint/bitflags-beba4f24b0bc6a9e/lib-bitflags.json new file mode 100644 index 0000000..af68355 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/bitflags-beba4f24b0bc6a9e/lib-bitflags.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"std\"]","declared_features":"[\"arbitrary\", \"bytemuck\", \"example_generated\", \"serde\", \"serde_core\", \"std\"]","target":7691312148208718491,"profile":2225463790103693989,"path":10975846442840891037,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-beba4f24b0bc6a9e/dep-lib-bitflags","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/dep-lib-bitflags b/examples/agent_server/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/dep-lib-bitflags new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/dep-lib-bitflags differ diff --git a/examples/agent_server/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/lib-bitflags b/examples/agent_server/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/lib-bitflags new file mode 100644 index 0000000..8fc0f38 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/lib-bitflags @@ -0,0 +1 @@ +c2a6d78329b15cea \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/lib-bitflags.json b/examples/agent_server/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/lib-bitflags.json new file mode 100644 index 0000000..a873d25 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/lib-bitflags.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"arbitrary\", \"bytemuck\", \"example_generated\", \"serde\", \"serde_core\", \"std\"]","target":7691312148208718491,"profile":2241668132362809309,"path":10975846442840891037,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-cff3612a3afc1bc7/dep-lib-bitflags","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/block-buffer-21104cf75f366f1b/dep-lib-block_buffer b/examples/agent_server/target/debug/.fingerprint/block-buffer-21104cf75f366f1b/dep-lib-block_buffer new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/block-buffer-21104cf75f366f1b/dep-lib-block_buffer differ diff --git a/examples/agent_server/target/debug/.fingerprint/block-buffer-21104cf75f366f1b/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/block-buffer-21104cf75f366f1b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/block-buffer-21104cf75f366f1b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/block-buffer-21104cf75f366f1b/lib-block_buffer b/examples/agent_server/target/debug/.fingerprint/block-buffer-21104cf75f366f1b/lib-block_buffer new file mode 100644 index 0000000..0f9287f --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/block-buffer-21104cf75f366f1b/lib-block_buffer @@ -0,0 +1 @@ +6020d9ec4ed32ea5 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/block-buffer-21104cf75f366f1b/lib-block_buffer.json b/examples/agent_server/target/debug/.fingerprint/block-buffer-21104cf75f366f1b/lib-block_buffer.json new file mode 100644 index 0000000..1869a03 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/block-buffer-21104cf75f366f1b/lib-block_buffer.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":4098124618827574291,"profile":2241668132362809309,"path":14279399928065507674,"deps":[[10520923840501062997,"generic_array",false,2029612505367400675]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/block-buffer-21104cf75f366f1b/dep-lib-block_buffer","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/byteorder-bef59b1a1728490b/dep-lib-byteorder b/examples/agent_server/target/debug/.fingerprint/byteorder-bef59b1a1728490b/dep-lib-byteorder new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/byteorder-bef59b1a1728490b/dep-lib-byteorder differ diff --git a/examples/agent_server/target/debug/.fingerprint/byteorder-bef59b1a1728490b/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/byteorder-bef59b1a1728490b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/byteorder-bef59b1a1728490b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/byteorder-bef59b1a1728490b/lib-byteorder b/examples/agent_server/target/debug/.fingerprint/byteorder-bef59b1a1728490b/lib-byteorder new file mode 100644 index 0000000..994687b --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/byteorder-bef59b1a1728490b/lib-byteorder @@ -0,0 +1 @@ +945238b78d3e9b0d \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/byteorder-bef59b1a1728490b/lib-byteorder.json b/examples/agent_server/target/debug/.fingerprint/byteorder-bef59b1a1728490b/lib-byteorder.json new file mode 100644 index 0000000..3b758b0 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/byteorder-bef59b1a1728490b/lib-byteorder.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"i128\", \"std\"]","target":8344828840634961491,"profile":2241668132362809309,"path":5694807933815072919,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/byteorder-bef59b1a1728490b/dep-lib-byteorder","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/bytes-09a986c6ca322719/dep-lib-bytes b/examples/agent_server/target/debug/.fingerprint/bytes-09a986c6ca322719/dep-lib-bytes new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/bytes-09a986c6ca322719/dep-lib-bytes differ diff --git a/examples/agent_server/target/debug/.fingerprint/bytes-09a986c6ca322719/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/bytes-09a986c6ca322719/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/bytes-09a986c6ca322719/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/bytes-09a986c6ca322719/lib-bytes b/examples/agent_server/target/debug/.fingerprint/bytes-09a986c6ca322719/lib-bytes new file mode 100644 index 0000000..4ebc70a --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/bytes-09a986c6ca322719/lib-bytes @@ -0,0 +1 @@ +3645012b66657e62 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/bytes-09a986c6ca322719/lib-bytes.json b/examples/agent_server/target/debug/.fingerprint/bytes-09a986c6ca322719/lib-bytes.json new file mode 100644 index 0000000..0efe132 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/bytes-09a986c6ca322719/lib-bytes.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"default\", \"extra-platforms\", \"serde\", \"std\"]","target":11402411492164584411,"profile":4737434774556195440,"path":12239386155630862137,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bytes-09a986c6ca322719/dep-lib-bytes","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/bytes-c3394b0af77a15c5/dep-lib-bytes b/examples/agent_server/target/debug/.fingerprint/bytes-c3394b0af77a15c5/dep-lib-bytes new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/bytes-c3394b0af77a15c5/dep-lib-bytes differ diff --git a/examples/agent_server/target/debug/.fingerprint/bytes-c3394b0af77a15c5/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/bytes-c3394b0af77a15c5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/bytes-c3394b0af77a15c5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/bytes-c3394b0af77a15c5/lib-bytes b/examples/agent_server/target/debug/.fingerprint/bytes-c3394b0af77a15c5/lib-bytes new file mode 100644 index 0000000..4fc60f6 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/bytes-c3394b0af77a15c5/lib-bytes @@ -0,0 +1 @@ +1da444ab53f82cee \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/bytes-c3394b0af77a15c5/lib-bytes.json b/examples/agent_server/target/debug/.fingerprint/bytes-c3394b0af77a15c5/lib-bytes.json new file mode 100644 index 0000000..f55045f --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/bytes-c3394b0af77a15c5/lib-bytes.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"extra-platforms\", \"serde\", \"std\"]","target":11402411492164584411,"profile":13827760451848848284,"path":12239386155630862137,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bytes-c3394b0af77a15c5/dep-lib-bytes","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/cc-c9b1ffb908c7b429/dep-lib-cc b/examples/agent_server/target/debug/.fingerprint/cc-c9b1ffb908c7b429/dep-lib-cc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/cc-c9b1ffb908c7b429/dep-lib-cc differ diff --git a/examples/agent_server/target/debug/.fingerprint/cc-c9b1ffb908c7b429/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/cc-c9b1ffb908c7b429/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/cc-c9b1ffb908c7b429/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/cc-c9b1ffb908c7b429/lib-cc b/examples/agent_server/target/debug/.fingerprint/cc-c9b1ffb908c7b429/lib-cc new file mode 100644 index 0000000..f421be3 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/cc-c9b1ffb908c7b429/lib-cc @@ -0,0 +1 @@ +ef46f2c30939fba9 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/cc-c9b1ffb908c7b429/lib-cc.json b/examples/agent_server/target/debug/.fingerprint/cc-c9b1ffb908c7b429/lib-cc.json new file mode 100644 index 0000000..5c4493d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/cc-c9b1ffb908c7b429/lib-cc.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"jobserver\", \"parallel\"]","target":11042037588551934598,"profile":4333757155065362140,"path":17282834995303613358,"deps":[[9159843920629750842,"find_msvc_tools",false,16423338674172934288],[12678166843757613889,"shlex",false,2749814040601261262]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cc-c9b1ffb908c7b429/dep-lib-cc","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/dep-lib-cfg_if b/examples/agent_server/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/dep-lib-cfg_if new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/dep-lib-cfg_if differ diff --git a/examples/agent_server/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/lib-cfg_if b/examples/agent_server/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/lib-cfg_if new file mode 100644 index 0000000..5801f2a --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/lib-cfg_if @@ -0,0 +1 @@ +05cf99796df8210f \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/lib-cfg_if.json b/examples/agent_server/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/lib-cfg_if.json new file mode 100644 index 0000000..5d4bc7e --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/lib-cfg_if.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":2241668132362809309,"path":12502755193429384494,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-8e014ddcb785b96d/dep-lib-cfg_if","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/dep-lib-cfg_if b/examples/agent_server/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/dep-lib-cfg_if new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/dep-lib-cfg_if differ diff --git a/examples/agent_server/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/lib-cfg_if b/examples/agent_server/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/lib-cfg_if new file mode 100644 index 0000000..eb87867 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/lib-cfg_if @@ -0,0 +1 @@ +b1818d6cfa833f1a \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/lib-cfg_if.json b/examples/agent_server/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/lib-cfg_if.json new file mode 100644 index 0000000..11fd2ec --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/lib-cfg_if.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":2225463790103693989,"path":12502755193429384494,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/dep-lib-cfg_if","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/cpufeatures-61d389a9f523e928/dep-lib-cpufeatures b/examples/agent_server/target/debug/.fingerprint/cpufeatures-61d389a9f523e928/dep-lib-cpufeatures new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/cpufeatures-61d389a9f523e928/dep-lib-cpufeatures differ diff --git a/examples/agent_server/target/debug/.fingerprint/cpufeatures-61d389a9f523e928/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/cpufeatures-61d389a9f523e928/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/cpufeatures-61d389a9f523e928/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/cpufeatures-61d389a9f523e928/lib-cpufeatures b/examples/agent_server/target/debug/.fingerprint/cpufeatures-61d389a9f523e928/lib-cpufeatures new file mode 100644 index 0000000..1fae3b3 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/cpufeatures-61d389a9f523e928/lib-cpufeatures @@ -0,0 +1 @@ +04bb55ffdd4cf3c9 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/cpufeatures-61d389a9f523e928/lib-cpufeatures.json b/examples/agent_server/target/debug/.fingerprint/cpufeatures-61d389a9f523e928/lib-cpufeatures.json new file mode 100644 index 0000000..af5ceed --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/cpufeatures-61d389a9f523e928/lib-cpufeatures.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":2330704043955282025,"profile":2241668132362809309,"path":13716377211716279772,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cpufeatures-61d389a9f523e928/dep-lib-cpufeatures","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/crypto-common-951d0c7a09b050b2/dep-lib-crypto_common b/examples/agent_server/target/debug/.fingerprint/crypto-common-951d0c7a09b050b2/dep-lib-crypto_common new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/crypto-common-951d0c7a09b050b2/dep-lib-crypto_common differ diff --git a/examples/agent_server/target/debug/.fingerprint/crypto-common-951d0c7a09b050b2/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/crypto-common-951d0c7a09b050b2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/crypto-common-951d0c7a09b050b2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/crypto-common-951d0c7a09b050b2/lib-crypto_common b/examples/agent_server/target/debug/.fingerprint/crypto-common-951d0c7a09b050b2/lib-crypto_common new file mode 100644 index 0000000..d09fa9a --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/crypto-common-951d0c7a09b050b2/lib-crypto_common @@ -0,0 +1 @@ +59eecf7b49f71c0f \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/crypto-common-951d0c7a09b050b2/lib-crypto_common.json b/examples/agent_server/target/debug/.fingerprint/crypto-common-951d0c7a09b050b2/lib-crypto_common.json new file mode 100644 index 0000000..203607a --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/crypto-common-951d0c7a09b050b2/lib-crypto_common.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"std\"]","declared_features":"[\"getrandom\", \"rand_core\", \"std\"]","target":12082577455412410174,"profile":2241668132362809309,"path":7291763692715038708,"deps":[[6918147871599447195,"typenum",false,6536763228216821831],[10520923840501062997,"generic_array",false,2029612505367400675]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/crypto-common-951d0c7a09b050b2/dep-lib-crypto_common","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/data-encoding-7790b5eabc4a5b96/dep-lib-data_encoding b/examples/agent_server/target/debug/.fingerprint/data-encoding-7790b5eabc4a5b96/dep-lib-data_encoding new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/data-encoding-7790b5eabc4a5b96/dep-lib-data_encoding differ diff --git a/examples/agent_server/target/debug/.fingerprint/data-encoding-7790b5eabc4a5b96/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/data-encoding-7790b5eabc4a5b96/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/data-encoding-7790b5eabc4a5b96/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/data-encoding-7790b5eabc4a5b96/lib-data_encoding b/examples/agent_server/target/debug/.fingerprint/data-encoding-7790b5eabc4a5b96/lib-data_encoding new file mode 100644 index 0000000..b8f8177 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/data-encoding-7790b5eabc4a5b96/lib-data_encoding @@ -0,0 +1 @@ +b08d0519cc98bb80 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/data-encoding-7790b5eabc4a5b96/lib-data_encoding.json b/examples/agent_server/target/debug/.fingerprint/data-encoding-7790b5eabc4a5b96/lib-data_encoding.json new file mode 100644 index 0000000..fa53c94 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/data-encoding-7790b5eabc4a5b96/lib-data_encoding.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":11695827766092040444,"profile":14175588574914100172,"path":13090748230569241957,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/data-encoding-7790b5eabc4a5b96/dep-lib-data_encoding","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/digest-a8d93b28a2f63d11/dep-lib-digest b/examples/agent_server/target/debug/.fingerprint/digest-a8d93b28a2f63d11/dep-lib-digest new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/digest-a8d93b28a2f63d11/dep-lib-digest differ diff --git a/examples/agent_server/target/debug/.fingerprint/digest-a8d93b28a2f63d11/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/digest-a8d93b28a2f63d11/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/digest-a8d93b28a2f63d11/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/digest-a8d93b28a2f63d11/lib-digest b/examples/agent_server/target/debug/.fingerprint/digest-a8d93b28a2f63d11/lib-digest new file mode 100644 index 0000000..bb5a58f --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/digest-a8d93b28a2f63d11/lib-digest @@ -0,0 +1 @@ +96dd165558931fb1 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/digest-a8d93b28a2f63d11/lib-digest.json b/examples/agent_server/target/debug/.fingerprint/digest-a8d93b28a2f63d11/lib-digest.json new file mode 100644 index 0000000..cee72de --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/digest-a8d93b28a2f63d11/lib-digest.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"block-buffer\", \"core-api\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"blobby\", \"block-buffer\", \"const-oid\", \"core-api\", \"default\", \"dev\", \"mac\", \"oid\", \"rand_core\", \"std\", \"subtle\"]","target":7510122432137863311,"profile":2241668132362809309,"path":7748842688086968266,"deps":[[6039282458970808711,"crypto_common",false,1089017104898715225],[10626340395483396037,"block_buffer",false,11902683201121362016]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/digest-a8d93b28a2f63d11/dep-lib-digest","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/displaydoc-84cb819f9d99c54b/dep-lib-displaydoc b/examples/agent_server/target/debug/.fingerprint/displaydoc-84cb819f9d99c54b/dep-lib-displaydoc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/displaydoc-84cb819f9d99c54b/dep-lib-displaydoc differ diff --git a/examples/agent_server/target/debug/.fingerprint/displaydoc-84cb819f9d99c54b/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/displaydoc-84cb819f9d99c54b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/displaydoc-84cb819f9d99c54b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/displaydoc-84cb819f9d99c54b/lib-displaydoc b/examples/agent_server/target/debug/.fingerprint/displaydoc-84cb819f9d99c54b/lib-displaydoc new file mode 100644 index 0000000..ad5603a --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/displaydoc-84cb819f9d99c54b/lib-displaydoc @@ -0,0 +1 @@ +a1dbdae2fada3671 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/displaydoc-84cb819f9d99c54b/lib-displaydoc.json b/examples/agent_server/target/debug/.fingerprint/displaydoc-84cb819f9d99c54b/lib-displaydoc.json new file mode 100644 index 0000000..bada083 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/displaydoc-84cb819f9d99c54b/lib-displaydoc.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"default\", \"std\"]","target":12413876779241186693,"profile":2225463790103693989,"path":6334246633371072079,"deps":[[694259242500224931,"syn",false,16371964410775804325],[8949245912927223590,"quote",false,3425229716652418837],[16346726298725429545,"proc_macro2",false,16093586419399039199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/displaydoc-84cb819f9d99c54b/dep-lib-displaydoc","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/dotenvy-fe4788558d317428/dep-lib-dotenvy b/examples/agent_server/target/debug/.fingerprint/dotenvy-fe4788558d317428/dep-lib-dotenvy new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/dotenvy-fe4788558d317428/dep-lib-dotenvy differ diff --git a/examples/agent_server/target/debug/.fingerprint/dotenvy-fe4788558d317428/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/dotenvy-fe4788558d317428/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/dotenvy-fe4788558d317428/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/dotenvy-fe4788558d317428/lib-dotenvy b/examples/agent_server/target/debug/.fingerprint/dotenvy-fe4788558d317428/lib-dotenvy new file mode 100644 index 0000000..9f1fee2 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/dotenvy-fe4788558d317428/lib-dotenvy @@ -0,0 +1 @@ +987ed9f6a1938a84 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/dotenvy-fe4788558d317428/lib-dotenvy.json b/examples/agent_server/target/debug/.fingerprint/dotenvy-fe4788558d317428/lib-dotenvy.json new file mode 100644 index 0000000..00de594 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/dotenvy-fe4788558d317428/lib-dotenvy.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"clap\", \"cli\"]","target":3618754987716034752,"profile":2241668132362809309,"path":5453042158551802277,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/dotenvy-fe4788558d317428/dep-lib-dotenvy","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/either-4df26a1332d7081b/dep-lib-either b/examples/agent_server/target/debug/.fingerprint/either-4df26a1332d7081b/dep-lib-either new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/either-4df26a1332d7081b/dep-lib-either differ diff --git a/examples/agent_server/target/debug/.fingerprint/either-4df26a1332d7081b/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/either-4df26a1332d7081b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/either-4df26a1332d7081b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/either-4df26a1332d7081b/lib-either b/examples/agent_server/target/debug/.fingerprint/either-4df26a1332d7081b/lib-either new file mode 100644 index 0000000..f5c0e2f --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/either-4df26a1332d7081b/lib-either @@ -0,0 +1 @@ +792c68ca6949f14d \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/either-4df26a1332d7081b/lib-either.json b/examples/agent_server/target/debug/.fingerprint/either-4df26a1332d7081b/lib-either.json new file mode 100644 index 0000000..9350072 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/either-4df26a1332d7081b/lib-either.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"std\", \"use_std\"]","declared_features":"[\"default\", \"serde\", \"std\", \"use_std\"]","target":17124342308084364240,"profile":2225463790103693989,"path":9187943537850640418,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/either-4df26a1332d7081b/dep-lib-either","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/dep-lib-equivalent b/examples/agent_server/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/dep-lib-equivalent new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/dep-lib-equivalent differ diff --git a/examples/agent_server/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/lib-equivalent b/examples/agent_server/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/lib-equivalent new file mode 100644 index 0000000..74fcebd --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/lib-equivalent @@ -0,0 +1 @@ +84bbffab0f9052c9 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/lib-equivalent.json b/examples/agent_server/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/lib-equivalent.json new file mode 100644 index 0000000..08f42fe --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/lib-equivalent.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":1524667692659508025,"profile":2225463790103693989,"path":12089184285681878692,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/equivalent-0aada0f55b2e54f9/dep-lib-equivalent","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/errno-6f35137132c41998/dep-lib-errno b/examples/agent_server/target/debug/.fingerprint/errno-6f35137132c41998/dep-lib-errno new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/errno-6f35137132c41998/dep-lib-errno differ diff --git a/examples/agent_server/target/debug/.fingerprint/errno-6f35137132c41998/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/errno-6f35137132c41998/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/errno-6f35137132c41998/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/errno-6f35137132c41998/lib-errno b/examples/agent_server/target/debug/.fingerprint/errno-6f35137132c41998/lib-errno new file mode 100644 index 0000000..56db415 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/errno-6f35137132c41998/lib-errno @@ -0,0 +1 @@ +3920acdc9f3cb783 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/errno-6f35137132c41998/lib-errno.json b/examples/agent_server/target/debug/.fingerprint/errno-6f35137132c41998/lib-errno.json new file mode 100644 index 0000000..d7ca8a5 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/errno-6f35137132c41998/lib-errno.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":17743456753391690785,"profile":2700333317411436715,"path":16492981964113010847,"deps":[[10504718112287328430,"libc",false,2478278040054917594]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/errno-6f35137132c41998/dep-lib-errno","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/fastrand-8613cd34c2af9727/dep-lib-fastrand b/examples/agent_server/target/debug/.fingerprint/fastrand-8613cd34c2af9727/dep-lib-fastrand new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/fastrand-8613cd34c2af9727/dep-lib-fastrand differ diff --git a/examples/agent_server/target/debug/.fingerprint/fastrand-8613cd34c2af9727/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/fastrand-8613cd34c2af9727/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/fastrand-8613cd34c2af9727/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/fastrand-8613cd34c2af9727/lib-fastrand b/examples/agent_server/target/debug/.fingerprint/fastrand-8613cd34c2af9727/lib-fastrand new file mode 100644 index 0000000..3e78eec --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/fastrand-8613cd34c2af9727/lib-fastrand @@ -0,0 +1 @@ +903f60d78d3753c7 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/fastrand-8613cd34c2af9727/lib-fastrand.json b/examples/agent_server/target/debug/.fingerprint/fastrand-8613cd34c2af9727/lib-fastrand.json new file mode 100644 index 0000000..c9b1299 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/fastrand-8613cd34c2af9727/lib-fastrand.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"js\", \"std\"]","target":9543367341069791401,"profile":2225463790103693989,"path":15706178144616208334,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/fastrand-8613cd34c2af9727/dep-lib-fastrand","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/find-msvc-tools-c77a833ef3d35f6d/dep-lib-find_msvc_tools b/examples/agent_server/target/debug/.fingerprint/find-msvc-tools-c77a833ef3d35f6d/dep-lib-find_msvc_tools new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/find-msvc-tools-c77a833ef3d35f6d/dep-lib-find_msvc_tools differ diff --git a/examples/agent_server/target/debug/.fingerprint/find-msvc-tools-c77a833ef3d35f6d/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/find-msvc-tools-c77a833ef3d35f6d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/find-msvc-tools-c77a833ef3d35f6d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/find-msvc-tools-c77a833ef3d35f6d/lib-find_msvc_tools b/examples/agent_server/target/debug/.fingerprint/find-msvc-tools-c77a833ef3d35f6d/lib-find_msvc_tools new file mode 100644 index 0000000..880eb00 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/find-msvc-tools-c77a833ef3d35f6d/lib-find_msvc_tools @@ -0,0 +1 @@ +90380374826bebe3 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/find-msvc-tools-c77a833ef3d35f6d/lib-find_msvc_tools.json b/examples/agent_server/target/debug/.fingerprint/find-msvc-tools-c77a833ef3d35f6d/lib-find_msvc_tools.json new file mode 100644 index 0000000..c4c5315 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/find-msvc-tools-c77a833ef3d35f6d/lib-find_msvc_tools.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":10620166500288925791,"profile":4333757155065362140,"path":3381482399195348924,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/find-msvc-tools-c77a833ef3d35f6d/dep-lib-find_msvc_tools","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/fixedbitset-3176b62188b708a8/dep-lib-fixedbitset b/examples/agent_server/target/debug/.fingerprint/fixedbitset-3176b62188b708a8/dep-lib-fixedbitset new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/fixedbitset-3176b62188b708a8/dep-lib-fixedbitset differ diff --git a/examples/agent_server/target/debug/.fingerprint/fixedbitset-3176b62188b708a8/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/fixedbitset-3176b62188b708a8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/fixedbitset-3176b62188b708a8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/fixedbitset-3176b62188b708a8/lib-fixedbitset b/examples/agent_server/target/debug/.fingerprint/fixedbitset-3176b62188b708a8/lib-fixedbitset new file mode 100644 index 0000000..09f9697 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/fixedbitset-3176b62188b708a8/lib-fixedbitset @@ -0,0 +1 @@ +4d77de1ac7a8ad3a \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/fixedbitset-3176b62188b708a8/lib-fixedbitset.json b/examples/agent_server/target/debug/.fingerprint/fixedbitset-3176b62188b708a8/lib-fixedbitset.json new file mode 100644 index 0000000..7872741 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/fixedbitset-3176b62188b708a8/lib-fixedbitset.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"default\", \"serde\", \"std\"]","target":3590446282960028792,"profile":2225463790103693989,"path":15744689761893456928,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/fixedbitset-3176b62188b708a8/dep-lib-fixedbitset","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/form_urlencoded-06177f51e9868e5c/dep-lib-form_urlencoded b/examples/agent_server/target/debug/.fingerprint/form_urlencoded-06177f51e9868e5c/dep-lib-form_urlencoded new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/form_urlencoded-06177f51e9868e5c/dep-lib-form_urlencoded differ diff --git a/examples/agent_server/target/debug/.fingerprint/form_urlencoded-06177f51e9868e5c/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/form_urlencoded-06177f51e9868e5c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/form_urlencoded-06177f51e9868e5c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/form_urlencoded-06177f51e9868e5c/lib-form_urlencoded b/examples/agent_server/target/debug/.fingerprint/form_urlencoded-06177f51e9868e5c/lib-form_urlencoded new file mode 100644 index 0000000..a07ee4b --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/form_urlencoded-06177f51e9868e5c/lib-form_urlencoded @@ -0,0 +1 @@ +3041033b8a2fbf10 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/form_urlencoded-06177f51e9868e5c/lib-form_urlencoded.json b/examples/agent_server/target/debug/.fingerprint/form_urlencoded-06177f51e9868e5c/lib-form_urlencoded.json new file mode 100644 index 0000000..11ab614 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/form_urlencoded-06177f51e9868e5c/lib-form_urlencoded.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":6496257856677244489,"profile":2241668132362809309,"path":11338158521255556833,"deps":[[6803352382179706244,"percent_encoding",false,17460257087533955988]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/form_urlencoded-06177f51e9868e5c/dep-lib-form_urlencoded","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-channel-d2d2e368fa3571be/dep-lib-futures_channel b/examples/agent_server/target/debug/.fingerprint/futures-channel-d2d2e368fa3571be/dep-lib-futures_channel new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/futures-channel-d2d2e368fa3571be/dep-lib-futures_channel differ diff --git a/examples/agent_server/target/debug/.fingerprint/futures-channel-d2d2e368fa3571be/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/futures-channel-d2d2e368fa3571be/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-channel-d2d2e368fa3571be/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-channel-d2d2e368fa3571be/lib-futures_channel b/examples/agent_server/target/debug/.fingerprint/futures-channel-d2d2e368fa3571be/lib-futures_channel new file mode 100644 index 0000000..4c3421d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-channel-d2d2e368fa3571be/lib-futures_channel @@ -0,0 +1 @@ +ca33f8f3efcec214 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-channel-d2d2e368fa3571be/lib-futures_channel.json b/examples/agent_server/target/debug/.fingerprint/futures-channel-d2d2e368fa3571be/lib-futures_channel.json new file mode 100644 index 0000000..a77ea79 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-channel-d2d2e368fa3571be/lib-futures_channel.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"cfg-target-has-atomic\", \"default\", \"futures-sink\", \"sink\", \"std\", \"unstable\"]","target":13634065851578929263,"profile":17467636112133979524,"path":3438143352174391729,"deps":[[15759286673077216516,"futures_core",false,17521305048918112335]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-channel-d2d2e368fa3571be/dep-lib-futures_channel","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-core-77c8ed53374c713b/dep-lib-futures_core b/examples/agent_server/target/debug/.fingerprint/futures-core-77c8ed53374c713b/dep-lib-futures_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/futures-core-77c8ed53374c713b/dep-lib-futures_core differ diff --git a/examples/agent_server/target/debug/.fingerprint/futures-core-77c8ed53374c713b/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/futures-core-77c8ed53374c713b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-core-77c8ed53374c713b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-core-77c8ed53374c713b/lib-futures_core b/examples/agent_server/target/debug/.fingerprint/futures-core-77c8ed53374c713b/lib-futures_core new file mode 100644 index 0000000..13ddd9d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-core-77c8ed53374c713b/lib-futures_core @@ -0,0 +1 @@ +4fb805321c2e28f3 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-core-77c8ed53374c713b/lib-futures_core.json b/examples/agent_server/target/debug/.fingerprint/futures-core-77c8ed53374c713b/lib-futures_core.json new file mode 100644 index 0000000..311a480 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-core-77c8ed53374c713b/lib-futures_core.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"cfg-target-has-atomic\", \"default\", \"portable-atomic\", \"std\", \"unstable\"]","target":9453135960607436725,"profile":17467636112133979524,"path":4184652298164139466,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-core-77c8ed53374c713b/dep-lib-futures_core","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-macro-b5492f4e9f40dde0/dep-lib-futures_macro b/examples/agent_server/target/debug/.fingerprint/futures-macro-b5492f4e9f40dde0/dep-lib-futures_macro new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/futures-macro-b5492f4e9f40dde0/dep-lib-futures_macro differ diff --git a/examples/agent_server/target/debug/.fingerprint/futures-macro-b5492f4e9f40dde0/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/futures-macro-b5492f4e9f40dde0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-macro-b5492f4e9f40dde0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-macro-b5492f4e9f40dde0/lib-futures_macro b/examples/agent_server/target/debug/.fingerprint/futures-macro-b5492f4e9f40dde0/lib-futures_macro new file mode 100644 index 0000000..e456d06 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-macro-b5492f4e9f40dde0/lib-futures_macro @@ -0,0 +1 @@ +5c27467a05fc5e7b \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-macro-b5492f4e9f40dde0/lib-futures_macro.json b/examples/agent_server/target/debug/.fingerprint/futures-macro-b5492f4e9f40dde0/lib-futures_macro.json new file mode 100644 index 0000000..b7880ac --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-macro-b5492f4e9f40dde0/lib-futures_macro.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":10957102547526291127,"profile":8113656176662020586,"path":15132684453930985494,"deps":[[8949245912927223590,"quote",false,3425229716652418837],[10190449710562616856,"syn",false,4945112598065903290],[16346726298725429545,"proc_macro2",false,16093586419399039199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-macro-b5492f4e9f40dde0/dep-lib-futures_macro","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-sink-2ec053a2d118ef45/dep-lib-futures_sink b/examples/agent_server/target/debug/.fingerprint/futures-sink-2ec053a2d118ef45/dep-lib-futures_sink new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/futures-sink-2ec053a2d118ef45/dep-lib-futures_sink differ diff --git a/examples/agent_server/target/debug/.fingerprint/futures-sink-2ec053a2d118ef45/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/futures-sink-2ec053a2d118ef45/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-sink-2ec053a2d118ef45/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-sink-2ec053a2d118ef45/lib-futures_sink b/examples/agent_server/target/debug/.fingerprint/futures-sink-2ec053a2d118ef45/lib-futures_sink new file mode 100644 index 0000000..f143734 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-sink-2ec053a2d118ef45/lib-futures_sink @@ -0,0 +1 @@ +c2f2a2a7c34d72f7 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-sink-2ec053a2d118ef45/lib-futures_sink.json b/examples/agent_server/target/debug/.fingerprint/futures-sink-2ec053a2d118ef45/lib-futures_sink.json new file mode 100644 index 0000000..5e9c159 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-sink-2ec053a2d118ef45/lib-futures_sink.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":10827111567014737887,"profile":17467636112133979524,"path":7795704065456635841,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-sink-2ec053a2d118ef45/dep-lib-futures_sink","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/dep-lib-futures_task b/examples/agent_server/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/dep-lib-futures_task new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/dep-lib-futures_task differ diff --git a/examples/agent_server/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/lib-futures_task b/examples/agent_server/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/lib-futures_task new file mode 100644 index 0000000..de33512 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/lib-futures_task @@ -0,0 +1 @@ +e73aa178a97282aa \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/lib-futures_task.json b/examples/agent_server/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/lib-futures_task.json new file mode 100644 index 0000000..5d2d353 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/lib-futures_task.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"cfg-target-has-atomic\", \"default\", \"std\", \"unstable\"]","target":13518091470260541623,"profile":17467636112133979524,"path":17749223150432638202,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-task-b2cf2b99319e9c19/dep-lib-futures_task","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-util-68bfb4a6b29747e3/dep-lib-futures_util b/examples/agent_server/target/debug/.fingerprint/futures-util-68bfb4a6b29747e3/dep-lib-futures_util new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/futures-util-68bfb4a6b29747e3/dep-lib-futures_util differ diff --git a/examples/agent_server/target/debug/.fingerprint/futures-util-68bfb4a6b29747e3/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/futures-util-68bfb4a6b29747e3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-util-68bfb4a6b29747e3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-util-68bfb4a6b29747e3/lib-futures_util b/examples/agent_server/target/debug/.fingerprint/futures-util-68bfb4a6b29747e3/lib-futures_util new file mode 100644 index 0000000..5e82532 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-util-68bfb4a6b29747e3/lib-futures_util @@ -0,0 +1 @@ +27bf8514c813734c \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/futures-util-68bfb4a6b29747e3/lib-futures_util.json b/examples/agent_server/target/debug/.fingerprint/futures-util-68bfb4a6b29747e3/lib-futures_util.json new file mode 100644 index 0000000..57bea41 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/futures-util-68bfb4a6b29747e3/lib-futures_util.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"async-await\", \"async-await-macro\", \"default\", \"futures-macro\", \"futures-sink\", \"sink\", \"slab\", \"std\"]","declared_features":"[\"alloc\", \"async-await\", \"async-await-macro\", \"bilock\", \"cfg-target-has-atomic\", \"channel\", \"compat\", \"default\", \"futures-channel\", \"futures-io\", \"futures-macro\", \"futures-sink\", \"futures_01\", \"io\", \"io-compat\", \"libc\", \"memchr\", \"portable-atomic\", \"portable-atomic-alloc\", \"portable-atomic-util\", \"portable_atomic_crate\", \"sink\", \"slab\", \"spin\", \"std\", \"tokio-io\", \"unstable\", \"write-all-vectored\"]","target":1788798584831431502,"profile":17467636112133979524,"path":14872126922440858921,"deps":[[2251399859588827949,"pin_project_lite",false,4667605112942415018],[10769450288504473385,"futures_sink",false,17830399377439650498],[13665774383867259784,"futures_macro",false,8889819814932391772],[14895711841936801505,"slab",false,17399717836198745967],[15759286673077216516,"futures_core",false,17521305048918112335],[16544062892492636075,"futures_task",false,12286508805619006183]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-util-68bfb4a6b29747e3/dep-lib-futures_util","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/generic-array-7523bc943aaae0d9/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/generic-array-7523bc943aaae0d9/run-build-script-build-script-build new file mode 100644 index 0000000..2a29206 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/generic-array-7523bc943aaae0d9/run-build-script-build-script-build @@ -0,0 +1 @@ +5a12f02150270292 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/generic-array-7523bc943aaae0d9/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/generic-array-7523bc943aaae0d9/run-build-script-build-script-build.json new file mode 100644 index 0000000..e036127 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/generic-array-7523bc943aaae0d9/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10520923840501062997,"build_script_build",false,4742209615242949942]],"local":[{"Precalculated":"0.14.7"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/generic-array-7f343a2386109d39/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/generic-array-7f343a2386109d39/build-script-build-script-build new file mode 100644 index 0000000..59bf71e --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/generic-array-7f343a2386109d39/build-script-build-script-build @@ -0,0 +1 @@ +3675ff0e85b6cf41 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/generic-array-7f343a2386109d39/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/generic-array-7f343a2386109d39/build-script-build-script-build.json new file mode 100644 index 0000000..3c8bdbd --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/generic-array-7f343a2386109d39/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"more_lengths\"]","declared_features":"[\"more_lengths\", \"serde\", \"zeroize\"]","target":12318548087768197662,"profile":2225463790103693989,"path":13778180757357284258,"deps":[[5398981501050481332,"version_check",false,5486698861605516196]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/generic-array-7f343a2386109d39/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/generic-array-7f343a2386109d39/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/generic-array-7f343a2386109d39/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/generic-array-7f343a2386109d39/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/generic-array-7f343a2386109d39/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/generic-array-7f343a2386109d39/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/generic-array-7f343a2386109d39/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/generic-array-99fc4fee2d7bbea0/dep-lib-generic_array b/examples/agent_server/target/debug/.fingerprint/generic-array-99fc4fee2d7bbea0/dep-lib-generic_array new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/generic-array-99fc4fee2d7bbea0/dep-lib-generic_array differ diff --git a/examples/agent_server/target/debug/.fingerprint/generic-array-99fc4fee2d7bbea0/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/generic-array-99fc4fee2d7bbea0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/generic-array-99fc4fee2d7bbea0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/generic-array-99fc4fee2d7bbea0/lib-generic_array b/examples/agent_server/target/debug/.fingerprint/generic-array-99fc4fee2d7bbea0/lib-generic_array new file mode 100644 index 0000000..71181fa --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/generic-array-99fc4fee2d7bbea0/lib-generic_array @@ -0,0 +1 @@ +e3501dfed1a12a1c \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/generic-array-99fc4fee2d7bbea0/lib-generic_array.json b/examples/agent_server/target/debug/.fingerprint/generic-array-99fc4fee2d7bbea0/lib-generic_array.json new file mode 100644 index 0000000..13e4f24 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/generic-array-99fc4fee2d7bbea0/lib-generic_array.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"more_lengths\"]","declared_features":"[\"more_lengths\", \"serde\", \"zeroize\"]","target":13084005262763373425,"profile":2241668132362809309,"path":9844130611727784320,"deps":[[6918147871599447195,"typenum",false,6536763228216821831],[10520923840501062997,"build_script_build",false,10521014904611148378]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/generic-array-99fc4fee2d7bbea0/dep-lib-generic_array","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/getrandom-aecce89476706edf/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/getrandom-aecce89476706edf/build-script-build-script-build new file mode 100644 index 0000000..ee77f27 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/getrandom-aecce89476706edf/build-script-build-script-build @@ -0,0 +1 @@ +7ecb655bbe1d10cf \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/getrandom-aecce89476706edf/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/getrandom-aecce89476706edf/build-script-build-script-build.json new file mode 100644 index 0000000..345d200 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/getrandom-aecce89476706edf/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"std\", \"sys_rng\", \"wasm_js\"]","target":2835126046236718539,"profile":14646319430865968450,"path":18174624918038975568,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-aecce89476706edf/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/getrandom-aecce89476706edf/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/getrandom-aecce89476706edf/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/getrandom-aecce89476706edf/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/getrandom-aecce89476706edf/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/getrandom-aecce89476706edf/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/getrandom-aecce89476706edf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/getrandom-d35b6c2445598084/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/getrandom-d35b6c2445598084/run-build-script-build-script-build new file mode 100644 index 0000000..7778261 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/getrandom-d35b6c2445598084/run-build-script-build-script-build @@ -0,0 +1 @@ +a52bf2275ef55ba3 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/getrandom-d35b6c2445598084/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/getrandom-d35b6c2445598084/run-build-script-build-script-build.json new file mode 100644 index 0000000..13e6bae --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/getrandom-d35b6c2445598084/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[17989731678791879549,"build_script_build",false,14920458268892842878]],"local":[{"RerunIfChanged":{"output":"debug/build/getrandom-d35b6c2445598084/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/getrandom-dfea81b716c93c60/dep-lib-getrandom b/examples/agent_server/target/debug/.fingerprint/getrandom-dfea81b716c93c60/dep-lib-getrandom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/getrandom-dfea81b716c93c60/dep-lib-getrandom differ diff --git a/examples/agent_server/target/debug/.fingerprint/getrandom-dfea81b716c93c60/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/getrandom-dfea81b716c93c60/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/getrandom-dfea81b716c93c60/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/getrandom-dfea81b716c93c60/lib-getrandom b/examples/agent_server/target/debug/.fingerprint/getrandom-dfea81b716c93c60/lib-getrandom new file mode 100644 index 0000000..1129d42 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/getrandom-dfea81b716c93c60/lib-getrandom @@ -0,0 +1 @@ +584b4c3510bc0db8 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/getrandom-dfea81b716c93c60/lib-getrandom.json b/examples/agent_server/target/debug/.fingerprint/getrandom-dfea81b716c93c60/lib-getrandom.json new file mode 100644 index 0000000..df35bac --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/getrandom-dfea81b716c93c60/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"std\"]","declared_features":"[\"compiler_builtins\", \"core\", \"custom\", \"js\", \"js-sys\", \"linux_disable_fallback\", \"rdrand\", \"rustc-dep-of-std\", \"std\", \"test-in-browser\", \"wasm-bindgen\"]","target":16244099637825074703,"profile":2241668132362809309,"path":2260069407968030547,"deps":[[7667230146095136825,"cfg_if",false,1090425733875617541],[10504718112287328430,"libc",false,2478278040054917594]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-dfea81b716c93c60/dep-lib-getrandom","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/getrandom-eade8d24da07ca42/dep-lib-getrandom b/examples/agent_server/target/debug/.fingerprint/getrandom-eade8d24da07ca42/dep-lib-getrandom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/getrandom-eade8d24da07ca42/dep-lib-getrandom differ diff --git a/examples/agent_server/target/debug/.fingerprint/getrandom-eade8d24da07ca42/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/getrandom-eade8d24da07ca42/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/getrandom-eade8d24da07ca42/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/getrandom-eade8d24da07ca42/lib-getrandom b/examples/agent_server/target/debug/.fingerprint/getrandom-eade8d24da07ca42/lib-getrandom new file mode 100644 index 0000000..89459a0 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/getrandom-eade8d24da07ca42/lib-getrandom @@ -0,0 +1 @@ +a2789f3b50ce3b08 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/getrandom-eade8d24da07ca42/lib-getrandom.json b/examples/agent_server/target/debug/.fingerprint/getrandom-eade8d24da07ca42/lib-getrandom.json new file mode 100644 index 0000000..369bb08 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/getrandom-eade8d24da07ca42/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"std\", \"sys_rng\", \"wasm_js\"]","target":5479159445871601843,"profile":14646319430865968450,"path":13328598597604314923,"deps":[[7667230146095136825,"cfg_if",false,1891375480105173425],[10504718112287328430,"libc",false,11140046993721315775],[17989731678791879549,"build_script_build",false,11771271835808836517]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-eade8d24da07ca42/dep-lib-getrandom","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/hashbrown-ae4809890b874568/dep-lib-hashbrown b/examples/agent_server/target/debug/.fingerprint/hashbrown-ae4809890b874568/dep-lib-hashbrown new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/hashbrown-ae4809890b874568/dep-lib-hashbrown differ diff --git a/examples/agent_server/target/debug/.fingerprint/hashbrown-ae4809890b874568/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/hashbrown-ae4809890b874568/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/hashbrown-ae4809890b874568/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/hashbrown-ae4809890b874568/lib-hashbrown b/examples/agent_server/target/debug/.fingerprint/hashbrown-ae4809890b874568/lib-hashbrown new file mode 100644 index 0000000..68e9d88 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/hashbrown-ae4809890b874568/lib-hashbrown @@ -0,0 +1 @@ +032e623eabe5090e \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/hashbrown-ae4809890b874568/lib-hashbrown.json b/examples/agent_server/target/debug/.fingerprint/hashbrown-ae4809890b874568/lib-hashbrown.json new file mode 100644 index 0000000..003b23d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/hashbrown-ae4809890b874568/lib-hashbrown.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"alloc\", \"allocator-api2\", \"core\", \"default\", \"default-hasher\", \"equivalent\", \"inline-more\", \"nightly\", \"raw-entry\", \"rayon\", \"rustc-dep-of-std\", \"rustc-internal-api\", \"serde\"]","target":7848994504142944354,"profile":16863736780469185321,"path":7388625948292113916,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hashbrown-ae4809890b874568/dep-lib-hashbrown","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/heck-a126a121dde0434f/dep-lib-heck b/examples/agent_server/target/debug/.fingerprint/heck-a126a121dde0434f/dep-lib-heck new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/heck-a126a121dde0434f/dep-lib-heck differ diff --git a/examples/agent_server/target/debug/.fingerprint/heck-a126a121dde0434f/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/heck-a126a121dde0434f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/heck-a126a121dde0434f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/heck-a126a121dde0434f/lib-heck b/examples/agent_server/target/debug/.fingerprint/heck-a126a121dde0434f/lib-heck new file mode 100644 index 0000000..8080ab4 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/heck-a126a121dde0434f/lib-heck @@ -0,0 +1 @@ +382b5e701e76c307 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/heck-a126a121dde0434f/lib-heck.json b/examples/agent_server/target/debug/.fingerprint/heck-a126a121dde0434f/lib-heck.json new file mode 100644 index 0000000..14e93c2 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/heck-a126a121dde0434f/lib-heck.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\"]","declared_features":"[\"default\", \"unicode\", \"unicode-segmentation\"]","target":17312348249509670568,"profile":2225463790103693989,"path":7289970712442874236,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/heck-a126a121dde0434f/dep-lib-heck","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/heck-c513532ecb82790f/dep-lib-heck b/examples/agent_server/target/debug/.fingerprint/heck-c513532ecb82790f/dep-lib-heck new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/heck-c513532ecb82790f/dep-lib-heck differ diff --git a/examples/agent_server/target/debug/.fingerprint/heck-c513532ecb82790f/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/heck-c513532ecb82790f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/heck-c513532ecb82790f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/heck-c513532ecb82790f/lib-heck b/examples/agent_server/target/debug/.fingerprint/heck-c513532ecb82790f/lib-heck new file mode 100644 index 0000000..96af09d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/heck-c513532ecb82790f/lib-heck @@ -0,0 +1 @@ +13229461de166b1e \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/heck-c513532ecb82790f/lib-heck.json b/examples/agent_server/target/debug/.fingerprint/heck-c513532ecb82790f/lib-heck.json new file mode 100644 index 0000000..82d2a3d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/heck-c513532ecb82790f/lib-heck.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":17886154901722686619,"profile":2225463790103693989,"path":13388678410493929298,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/heck-c513532ecb82790f/dep-lib-heck","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/http-70f1741eb8ff2b4a/dep-lib-http b/examples/agent_server/target/debug/.fingerprint/http-70f1741eb8ff2b4a/dep-lib-http new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/http-70f1741eb8ff2b4a/dep-lib-http differ diff --git a/examples/agent_server/target/debug/.fingerprint/http-70f1741eb8ff2b4a/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/http-70f1741eb8ff2b4a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/http-70f1741eb8ff2b4a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/http-70f1741eb8ff2b4a/lib-http b/examples/agent_server/target/debug/.fingerprint/http-70f1741eb8ff2b4a/lib-http new file mode 100644 index 0000000..ac951f4 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/http-70f1741eb8ff2b4a/lib-http @@ -0,0 +1 @@ +611c9d42c2ed17b7 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/http-70f1741eb8ff2b4a/lib-http.json b/examples/agent_server/target/debug/.fingerprint/http-70f1741eb8ff2b4a/lib-http.json new file mode 100644 index 0000000..c191bfc --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/http-70f1741eb8ff2b4a/lib-http.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":4766512060560342653,"profile":2241668132362809309,"path":14928329766390979514,"deps":[[5532778797167691009,"itoa",false,728509330440049395],[11926622812581095017,"bytes",false,17162365318241494045]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/http-70f1741eb8ff2b4a/dep-lib-http","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/http-body-196ed6e5d2ed22bf/dep-lib-http_body b/examples/agent_server/target/debug/.fingerprint/http-body-196ed6e5d2ed22bf/dep-lib-http_body new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/http-body-196ed6e5d2ed22bf/dep-lib-http_body differ diff --git a/examples/agent_server/target/debug/.fingerprint/http-body-196ed6e5d2ed22bf/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/http-body-196ed6e5d2ed22bf/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/http-body-196ed6e5d2ed22bf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/http-body-196ed6e5d2ed22bf/lib-http_body b/examples/agent_server/target/debug/.fingerprint/http-body-196ed6e5d2ed22bf/lib-http_body new file mode 100644 index 0000000..28b99bd --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/http-body-196ed6e5d2ed22bf/lib-http_body @@ -0,0 +1 @@ +738486fadd624440 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/http-body-196ed6e5d2ed22bf/lib-http_body.json b/examples/agent_server/target/debug/.fingerprint/http-body-196ed6e5d2ed22bf/lib-http_body.json new file mode 100644 index 0000000..720d750 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/http-body-196ed6e5d2ed22bf/lib-http_body.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":16652076073832724591,"profile":2241668132362809309,"path":6957610284967684187,"deps":[[11926622812581095017,"bytes",false,17162365318241494045],[12328341851100645683,"http",false,13193275052002188385]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/http-body-196ed6e5d2ed22bf/dep-lib-http_body","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/http-body-util-e8e827df427d3b87/dep-lib-http_body_util b/examples/agent_server/target/debug/.fingerprint/http-body-util-e8e827df427d3b87/dep-lib-http_body_util new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/http-body-util-e8e827df427d3b87/dep-lib-http_body_util differ diff --git a/examples/agent_server/target/debug/.fingerprint/http-body-util-e8e827df427d3b87/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/http-body-util-e8e827df427d3b87/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/http-body-util-e8e827df427d3b87/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/http-body-util-e8e827df427d3b87/lib-http_body_util b/examples/agent_server/target/debug/.fingerprint/http-body-util-e8e827df427d3b87/lib-http_body_util new file mode 100644 index 0000000..fb5e466 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/http-body-util-e8e827df427d3b87/lib-http_body_util @@ -0,0 +1 @@ +341b464e80a16258 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/http-body-util-e8e827df427d3b87/lib-http_body_util.json b/examples/agent_server/target/debug/.fingerprint/http-body-util-e8e827df427d3b87/lib-http_body_util.json new file mode 100644 index 0000000..41ff397 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/http-body-util-e8e827df427d3b87/lib-http_body_util.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\"]","declared_features":"[\"channel\", \"default\", \"full\"]","target":7120517503662506348,"profile":2241668132362809309,"path":12416075815678542352,"deps":[[2251399859588827949,"pin_project_lite",false,4667605112942415018],[11926622812581095017,"bytes",false,17162365318241494045],[12328341851100645683,"http",false,13193275052002188385],[15759286673077216516,"futures_core",false,17521305048918112335],[17905774625381964326,"http_body",false,4630935022374126707]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/http-body-util-e8e827df427d3b87/dep-lib-http_body_util","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/httparse-052f35d69ef80cf8/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/httparse-052f35d69ef80cf8/build-script-build-script-build new file mode 100644 index 0000000..c0fcb5c --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/httparse-052f35d69ef80cf8/build-script-build-script-build @@ -0,0 +1 @@ +1e4ccb4b83d2c871 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/httparse-052f35d69ef80cf8/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/httparse-052f35d69ef80cf8/build-script-build-script-build.json new file mode 100644 index 0000000..2959937 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/httparse-052f35d69ef80cf8/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":17883862002600103897,"profile":16555127815671124681,"path":5661501737728264768,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/httparse-052f35d69ef80cf8/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/httparse-052f35d69ef80cf8/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/httparse-052f35d69ef80cf8/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/httparse-052f35d69ef80cf8/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/httparse-052f35d69ef80cf8/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/httparse-052f35d69ef80cf8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/httparse-052f35d69ef80cf8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/httparse-53fe1ce4676ef55c/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/httparse-53fe1ce4676ef55c/run-build-script-build-script-build new file mode 100644 index 0000000..43992d9 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/httparse-53fe1ce4676ef55c/run-build-script-build-script-build @@ -0,0 +1 @@ +056e201f068909f8 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/httparse-53fe1ce4676ef55c/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/httparse-53fe1ce4676ef55c/run-build-script-build-script-build.json new file mode 100644 index 0000000..256c803 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/httparse-53fe1ce4676ef55c/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6163892036024256188,"build_script_build",false,8199034582982151198]],"local":[{"Precalculated":"1.10.1"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/httparse-c3142aba67620658/dep-lib-httparse b/examples/agent_server/target/debug/.fingerprint/httparse-c3142aba67620658/dep-lib-httparse new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/httparse-c3142aba67620658/dep-lib-httparse differ diff --git a/examples/agent_server/target/debug/.fingerprint/httparse-c3142aba67620658/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/httparse-c3142aba67620658/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/httparse-c3142aba67620658/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/httparse-c3142aba67620658/lib-httparse b/examples/agent_server/target/debug/.fingerprint/httparse-c3142aba67620658/lib-httparse new file mode 100644 index 0000000..25ef1f8 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/httparse-c3142aba67620658/lib-httparse @@ -0,0 +1 @@ +0b6ffa4ce32315b3 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/httparse-c3142aba67620658/lib-httparse.json b/examples/agent_server/target/debug/.fingerprint/httparse-c3142aba67620658/lib-httparse.json new file mode 100644 index 0000000..01a65a1 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/httparse-c3142aba67620658/lib-httparse.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":2257539891522735522,"profile":6272744226771020950,"path":6618059293350498764,"deps":[[6163892036024256188,"build_script_build",false,17872967255581552133]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/httparse-c3142aba67620658/dep-lib-httparse","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/httpdate-aa4dc02e00e21a0f/dep-lib-httpdate b/examples/agent_server/target/debug/.fingerprint/httpdate-aa4dc02e00e21a0f/dep-lib-httpdate new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/httpdate-aa4dc02e00e21a0f/dep-lib-httpdate differ diff --git a/examples/agent_server/target/debug/.fingerprint/httpdate-aa4dc02e00e21a0f/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/httpdate-aa4dc02e00e21a0f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/httpdate-aa4dc02e00e21a0f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/httpdate-aa4dc02e00e21a0f/lib-httpdate b/examples/agent_server/target/debug/.fingerprint/httpdate-aa4dc02e00e21a0f/lib-httpdate new file mode 100644 index 0000000..b79731c --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/httpdate-aa4dc02e00e21a0f/lib-httpdate @@ -0,0 +1 @@ +d4db8b8875ba1366 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/httpdate-aa4dc02e00e21a0f/lib-httpdate.json b/examples/agent_server/target/debug/.fingerprint/httpdate-aa4dc02e00e21a0f/lib-httpdate.json new file mode 100644 index 0000000..bcd509c --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/httpdate-aa4dc02e00e21a0f/lib-httpdate.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":12509520342503990962,"profile":2241668132362809309,"path":5442725794910516246,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/httpdate-aa4dc02e00e21a0f/dep-lib-httpdate","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/hyper-4f622dcb0d866d6d/dep-lib-hyper b/examples/agent_server/target/debug/.fingerprint/hyper-4f622dcb0d866d6d/dep-lib-hyper new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/hyper-4f622dcb0d866d6d/dep-lib-hyper differ diff --git a/examples/agent_server/target/debug/.fingerprint/hyper-4f622dcb0d866d6d/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/hyper-4f622dcb0d866d6d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/hyper-4f622dcb0d866d6d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/hyper-4f622dcb0d866d6d/lib-hyper b/examples/agent_server/target/debug/.fingerprint/hyper-4f622dcb0d866d6d/lib-hyper new file mode 100644 index 0000000..067d423 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/hyper-4f622dcb0d866d6d/lib-hyper @@ -0,0 +1 @@ +09546af4fe1c26da \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/hyper-4f622dcb0d866d6d/lib-hyper.json b/examples/agent_server/target/debug/.fingerprint/hyper-4f622dcb0d866d6d/lib-hyper.json new file mode 100644 index 0000000..9d5c10a --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/hyper-4f622dcb0d866d6d/lib-hyper.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"http1\", \"server\"]","declared_features":"[\"capi\", \"client\", \"default\", \"ffi\", \"full\", \"http1\", \"http2\", \"nightly\", \"server\", \"tracing\"]","target":9574292076208557625,"profile":5562939034668037595,"path":5629724471782279601,"deps":[[1074848931188612602,"atomic_waker",false,10762687897902279186],[2145939652136225981,"tokio",false,10610117683847046353],[2251399859588827949,"pin_project_lite",false,4667605112942415018],[2295442787663447226,"smallvec",false,7862439461198811059],[5532778797167691009,"itoa",false,728509330440049395],[6163892036024256188,"httparse",false,12904259766456053515],[6304235478050270880,"httpdate",false,7355427630390959060],[11926622812581095017,"bytes",false,17162365318241494045],[12328341851100645683,"http",false,13193275052002188385],[12719145368479987149,"futures_channel",false,1495985556226061258],[15759286673077216516,"futures_core",false,17521305048918112335],[17905774625381964326,"http_body",false,4630935022374126707]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyper-4f622dcb0d866d6d/dep-lib-hyper","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/hyper-util-35e8e7cd719c5235/dep-lib-hyper_util b/examples/agent_server/target/debug/.fingerprint/hyper-util-35e8e7cd719c5235/dep-lib-hyper_util new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/hyper-util-35e8e7cd719c5235/dep-lib-hyper_util differ diff --git a/examples/agent_server/target/debug/.fingerprint/hyper-util-35e8e7cd719c5235/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/hyper-util-35e8e7cd719c5235/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/hyper-util-35e8e7cd719c5235/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/hyper-util-35e8e7cd719c5235/lib-hyper_util b/examples/agent_server/target/debug/.fingerprint/hyper-util-35e8e7cd719c5235/lib-hyper_util new file mode 100644 index 0000000..fc2309e --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/hyper-util-35e8e7cd719c5235/lib-hyper_util @@ -0,0 +1 @@ +26f3af8f56fa4e78 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/hyper-util-35e8e7cd719c5235/lib-hyper_util.json b/examples/agent_server/target/debug/.fingerprint/hyper-util-35e8e7cd719c5235/lib-hyper_util.json new file mode 100644 index 0000000..5dd5b84 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/hyper-util-35e8e7cd719c5235/lib-hyper_util.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"http1\", \"server\", \"service\", \"tokio\"]","declared_features":"[\"__internal_happy_eyeballs_tests\", \"client\", \"client-legacy\", \"client-pool\", \"client-proxy\", \"client-proxy-system\", \"default\", \"full\", \"http1\", \"http2\", \"server\", \"server-auto\", \"server-graceful\", \"service\", \"tokio\", \"tracing\"]","target":11100538814903412163,"profile":2241668132362809309,"path":14897108621776097129,"deps":[[365100156011862361,"hyper",false,15719283430731174921],[784494742817713399,"tower_service",false,4699773025642892603],[2145939652136225981,"tokio",false,10610117683847046353],[2251399859588827949,"pin_project_lite",false,4667605112942415018],[11926622812581095017,"bytes",false,17162365318241494045],[12328341851100645683,"http",false,13193275052002188385],[17905774625381964326,"http_body",false,4630935022374126707]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hyper-util-35e8e7cd719c5235/dep-lib-hyper_util","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_collections-cfd8fd6c2db6e5b6/dep-lib-icu_collections b/examples/agent_server/target/debug/.fingerprint/icu_collections-cfd8fd6c2db6e5b6/dep-lib-icu_collections new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/icu_collections-cfd8fd6c2db6e5b6/dep-lib-icu_collections differ diff --git a/examples/agent_server/target/debug/.fingerprint/icu_collections-cfd8fd6c2db6e5b6/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/icu_collections-cfd8fd6c2db6e5b6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_collections-cfd8fd6c2db6e5b6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_collections-cfd8fd6c2db6e5b6/lib-icu_collections b/examples/agent_server/target/debug/.fingerprint/icu_collections-cfd8fd6c2db6e5b6/lib-icu_collections new file mode 100644 index 0000000..9746e44 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_collections-cfd8fd6c2db6e5b6/lib-icu_collections @@ -0,0 +1 @@ +90f99217f1d32d30 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_collections-cfd8fd6c2db6e5b6/lib-icu_collections.json b/examples/agent_server/target/debug/.fingerprint/icu_collections-cfd8fd6c2db6e5b6/lib-icu_collections.json new file mode 100644 index 0000000..6d76f2d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_collections-cfd8fd6c2db6e5b6/lib-icu_collections.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"alloc\", \"databake\", \"serde\"]","target":8741949119514994751,"profile":15319846033271432293,"path":15445298705701888685,"deps":[[4367327283662589161,"yoke",false,7677630717763425777],[5078124415930854154,"utf8_iter",false,1928312879455688758],[7664967068156160197,"displaydoc",false,8157948546110905249],[9119616491714376884,"zerovec",false,8054920708844821994],[12481580349051900383,"zerofrom",false,12998051971519074897],[16987687164371150135,"potential_utf",false,12040844803020641599]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_collections-cfd8fd6c2db6e5b6/dep-lib-icu_collections","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_locale_core-ce41a0bce649e57e/dep-lib-icu_locale_core b/examples/agent_server/target/debug/.fingerprint/icu_locale_core-ce41a0bce649e57e/dep-lib-icu_locale_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/icu_locale_core-ce41a0bce649e57e/dep-lib-icu_locale_core differ diff --git a/examples/agent_server/target/debug/.fingerprint/icu_locale_core-ce41a0bce649e57e/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/icu_locale_core-ce41a0bce649e57e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_locale_core-ce41a0bce649e57e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_locale_core-ce41a0bce649e57e/lib-icu_locale_core b/examples/agent_server/target/debug/.fingerprint/icu_locale_core-ce41a0bce649e57e/lib-icu_locale_core new file mode 100644 index 0000000..b1d26a8 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_locale_core-ce41a0bce649e57e/lib-icu_locale_core @@ -0,0 +1 @@ +656049473a68bed4 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_locale_core-ce41a0bce649e57e/lib-icu_locale_core.json b/examples/agent_server/target/debug/.fingerprint/icu_locale_core-ce41a0bce649e57e/lib-icu_locale_core.json new file mode 100644 index 0000000..917eaac --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_locale_core-ce41a0bce649e57e/lib-icu_locale_core.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"serde\", \"zerovec\"]","target":7234736894702847895,"profile":15319846033271432293,"path":1983021566355154636,"deps":[[3472867876026527834,"litemap",false,4936825316213513410],[4600868325190463366,"writeable",false,9576390035156153345],[7664967068156160197,"displaydoc",false,8157948546110905249],[9119616491714376884,"zerovec",false,8054920708844821994],[11371850679357357896,"tinystr",false,15840029501759333808]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_locale_core-ce41a0bce649e57e/dep-lib-icu_locale_core","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_normalizer-1e463b8e5a6b3d10/dep-lib-icu_normalizer b/examples/agent_server/target/debug/.fingerprint/icu_normalizer-1e463b8e5a6b3d10/dep-lib-icu_normalizer new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/icu_normalizer-1e463b8e5a6b3d10/dep-lib-icu_normalizer differ diff --git a/examples/agent_server/target/debug/.fingerprint/icu_normalizer-1e463b8e5a6b3d10/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/icu_normalizer-1e463b8e5a6b3d10/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_normalizer-1e463b8e5a6b3d10/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_normalizer-1e463b8e5a6b3d10/lib-icu_normalizer b/examples/agent_server/target/debug/.fingerprint/icu_normalizer-1e463b8e5a6b3d10/lib-icu_normalizer new file mode 100644 index 0000000..71f5844 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_normalizer-1e463b8e5a6b3d10/lib-icu_normalizer @@ -0,0 +1 @@ +5ae400164bedac5f \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_normalizer-1e463b8e5a6b3d10/lib-icu_normalizer.json b/examples/agent_server/target/debug/.fingerprint/icu_normalizer-1e463b8e5a6b3d10/lib-icu_normalizer.json new file mode 100644 index 0000000..aa53e11 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_normalizer-1e463b8e5a6b3d10/lib-icu_normalizer.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"compiled_data\"]","declared_features":"[\"compiled_data\", \"datagen\", \"default\", \"harfbuzz_traits\", \"icu_properties\", \"serde\", \"utf16_iter\", \"utf8_iter\", \"write16\"]","target":4082895731217690114,"profile":15319846033271432293,"path":4188025618706677391,"deps":[[2295442787663447226,"smallvec",false,7862439461198811059],[2740396133377933779,"icu_collections",false,3471663920208607632],[6775492119671411220,"icu_provider",false,12374118982390188720],[8537256058173792506,"icu_normalizer_data",false,770368213524641427],[9119616491714376884,"zerovec",false,8054920708844821994]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_normalizer-1e463b8e5a6b3d10/dep-lib-icu_normalizer","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-8a6d3456e3f5808e/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-8a6d3456e3f5808e/run-build-script-build-script-build new file mode 100644 index 0000000..ee64f74 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-8a6d3456e3f5808e/run-build-script-build-script-build @@ -0,0 +1 @@ +e08a72b5c4f7f09c \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-8a6d3456e3f5808e/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-8a6d3456e3f5808e/run-build-script-build-script-build.json new file mode 100644 index 0000000..3d3bb7d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-8a6d3456e3f5808e/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8537256058173792506,"build_script_build",false,14909448009803402827]],"local":[{"RerunIfEnvChanged":{"var":"ICU4X_DATA_DIR","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/build-script-build-script-build new file mode 100644 index 0000000..1741153 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/build-script-build-script-build @@ -0,0 +1 @@ +4b8e7ca5f8ffe8ce \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/build-script-build-script-build.json new file mode 100644 index 0000000..d93edce --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":13574669494803281578,"path":2388789443101814796,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/dep-lib-icu_normalizer_data b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/dep-lib-icu_normalizer_data new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/dep-lib-icu_normalizer_data differ diff --git a/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/lib-icu_normalizer_data b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/lib-icu_normalizer_data new file mode 100644 index 0000000..a7b9a42 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/lib-icu_normalizer_data @@ -0,0 +1 @@ +93766301cfe5b00a \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/lib-icu_normalizer_data.json b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/lib-icu_normalizer_data.json new file mode 100644 index 0000000..24a99a4 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/lib-icu_normalizer_data.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":17980939898269686983,"profile":6379353384314970492,"path":2116740866394051898,"deps":[[8537256058173792506,"build_script_build",false,11308811088557148896]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/dep-lib-icu_normalizer_data","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_properties-4fa6fe0fbc3271c3/dep-lib-icu_properties b/examples/agent_server/target/debug/.fingerprint/icu_properties-4fa6fe0fbc3271c3/dep-lib-icu_properties new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/icu_properties-4fa6fe0fbc3271c3/dep-lib-icu_properties differ diff --git a/examples/agent_server/target/debug/.fingerprint/icu_properties-4fa6fe0fbc3271c3/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/icu_properties-4fa6fe0fbc3271c3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_properties-4fa6fe0fbc3271c3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_properties-4fa6fe0fbc3271c3/lib-icu_properties b/examples/agent_server/target/debug/.fingerprint/icu_properties-4fa6fe0fbc3271c3/lib-icu_properties new file mode 100644 index 0000000..3acc120 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_properties-4fa6fe0fbc3271c3/lib-icu_properties @@ -0,0 +1 @@ +77a2696496f05dc4 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_properties-4fa6fe0fbc3271c3/lib-icu_properties.json b/examples/agent_server/target/debug/.fingerprint/icu_properties-4fa6fe0fbc3271c3/lib-icu_properties.json new file mode 100644 index 0000000..220af1c --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_properties-4fa6fe0fbc3271c3/lib-icu_properties.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"compiled_data\"]","declared_features":"[\"alloc\", \"compiled_data\", \"datagen\", \"default\", \"harfbuzz_traits\", \"serde\", \"unicode_bidi\"]","target":12882061015678277883,"profile":15319846033271432293,"path":15816400416892695183,"deps":[[2508912448185119253,"icu_locale_core",false,15329804781129130085],[2740396133377933779,"icu_collections",false,3471663920208607632],[6765506827638725279,"icu_properties_data",false,15622861267114027469],[6775492119671411220,"icu_provider",false,12374118982390188720],[9119616491714376884,"zerovec",false,8054920708844821994],[12042051876675963596,"zerotrie",false,9097030746523638841]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_properties-4fa6fe0fbc3271c3/dep-lib-icu_properties","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/dep-lib-icu_properties_data b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/dep-lib-icu_properties_data new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/dep-lib-icu_properties_data differ diff --git a/examples/agent_server/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/lib-icu_properties_data b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/lib-icu_properties_data new file mode 100644 index 0000000..565587d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/lib-icu_properties_data @@ -0,0 +1 @@ +cd698a898c8dcfd8 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/lib-icu_properties_data.json b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/lib-icu_properties_data.json new file mode 100644 index 0000000..7d25093 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/lib-icu_properties_data.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":9037757742335137726,"profile":6379353384314970492,"path":13819747839991729774,"deps":[[6765506827638725279,"build_script_build",false,17146414567280451792]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/dep-lib-icu_properties_data","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c25c7adf66567e52/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c25c7adf66567e52/run-build-script-build-script-build new file mode 100644 index 0000000..5cb2baa --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c25c7adf66567e52/run-build-script-build-script-build @@ -0,0 +1 @@ +d0a0550e344df4ed \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c25c7adf66567e52/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c25c7adf66567e52/run-build-script-build-script-build.json new file mode 100644 index 0000000..c0460ef --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c25c7adf66567e52/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6765506827638725279,"build_script_build",false,17369204404844171019]],"local":[{"RerunIfEnvChanged":{"var":"ICU4X_DATA_DIR","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/build-script-build-script-build new file mode 100644 index 0000000..d7685e8 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/build-script-build-script-build @@ -0,0 +1 @@ +0b0fe35561cf0bf1 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/build-script-build-script-build.json new file mode 100644 index 0000000..84b88cb --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":13574669494803281578,"path":7462668307701826658,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_provider-c60991530f5e880a/dep-lib-icu_provider b/examples/agent_server/target/debug/.fingerprint/icu_provider-c60991530f5e880a/dep-lib-icu_provider new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/icu_provider-c60991530f5e880a/dep-lib-icu_provider differ diff --git a/examples/agent_server/target/debug/.fingerprint/icu_provider-c60991530f5e880a/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/icu_provider-c60991530f5e880a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_provider-c60991530f5e880a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_provider-c60991530f5e880a/lib-icu_provider b/examples/agent_server/target/debug/.fingerprint/icu_provider-c60991530f5e880a/lib-icu_provider new file mode 100644 index 0000000..a6dcb5a --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_provider-c60991530f5e880a/lib-icu_provider @@ -0,0 +1 @@ +b00ac951a7b3b9ab \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/icu_provider-c60991530f5e880a/lib-icu_provider.json b/examples/agent_server/target/debug/.fingerprint/icu_provider-c60991530f5e880a/lib-icu_provider.json new file mode 100644 index 0000000..6581631 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/icu_provider-c60991530f5e880a/lib-icu_provider.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"baked\"]","declared_features":"[\"alloc\", \"baked\", \"deserialize_bincode_1\", \"deserialize_json\", \"deserialize_postcard_1\", \"export\", \"logging\", \"serde\", \"std\", \"sync\", \"zerotrie\"]","target":8134314816311233441,"profile":15319846033271432293,"path":3175045549119858700,"deps":[[2508912448185119253,"icu_locale_core",false,15329804781129130085],[4367327283662589161,"yoke",false,7677630717763425777],[4600868325190463366,"writeable",false,9576390035156153345],[7664967068156160197,"displaydoc",false,8157948546110905249],[9119616491714376884,"zerovec",false,8054920708844821994],[12042051876675963596,"zerotrie",false,9097030746523638841],[12481580349051900383,"zerofrom",false,12998051971519074897]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_provider-c60991530f5e880a/dep-lib-icu_provider","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/idna-c2925cb4c38b6b17/dep-lib-idna b/examples/agent_server/target/debug/.fingerprint/idna-c2925cb4c38b6b17/dep-lib-idna new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/idna-c2925cb4c38b6b17/dep-lib-idna differ diff --git a/examples/agent_server/target/debug/.fingerprint/idna-c2925cb4c38b6b17/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/idna-c2925cb4c38b6b17/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/idna-c2925cb4c38b6b17/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/idna-c2925cb4c38b6b17/lib-idna b/examples/agent_server/target/debug/.fingerprint/idna-c2925cb4c38b6b17/lib-idna new file mode 100644 index 0000000..cd27f38 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/idna-c2925cb4c38b6b17/lib-idna @@ -0,0 +1 @@ +c32e4aa05c1c4675 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/idna-c2925cb4c38b6b17/lib-idna.json b/examples/agent_server/target/debug/.fingerprint/idna-c2925cb4c38b6b17/lib-idna.json new file mode 100644 index 0000000..611d2a9 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/idna-c2925cb4c38b6b17/lib-idna.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"compiled_data\", \"std\"]","declared_features":"[\"alloc\", \"compiled_data\", \"default\", \"std\"]","target":2602963282308965300,"profile":2241668132362809309,"path":16704507618414675310,"deps":[[2295442787663447226,"smallvec",false,7862439461198811059],[5078124415930854154,"utf8_iter",false,1928312879455688758],[14746133296817838026,"idna_adapter",false,16439405590489150710]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/idna-c2925cb4c38b6b17/dep-lib-idna","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/idna_adapter-a90c5f270614d61e/dep-lib-idna_adapter b/examples/agent_server/target/debug/.fingerprint/idna_adapter-a90c5f270614d61e/dep-lib-idna_adapter new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/idna_adapter-a90c5f270614d61e/dep-lib-idna_adapter differ diff --git a/examples/agent_server/target/debug/.fingerprint/idna_adapter-a90c5f270614d61e/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/idna_adapter-a90c5f270614d61e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/idna_adapter-a90c5f270614d61e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/idna_adapter-a90c5f270614d61e/lib-idna_adapter b/examples/agent_server/target/debug/.fingerprint/idna_adapter-a90c5f270614d61e/lib-idna_adapter new file mode 100644 index 0000000..6b97855 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/idna_adapter-a90c5f270614d61e/lib-idna_adapter @@ -0,0 +1 @@ +f634adeb488024e4 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/idna_adapter-a90c5f270614d61e/lib-idna_adapter.json b/examples/agent_server/target/debug/.fingerprint/idna_adapter-a90c5f270614d61e/lib-idna_adapter.json new file mode 100644 index 0000000..cc27b37 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/idna_adapter-a90c5f270614d61e/lib-idna_adapter.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"compiled_data\"]","declared_features":"[\"compiled_data\"]","target":11527116880419813357,"profile":2241668132362809309,"path":3031428562148115519,"deps":[[2309614597000388150,"icu_normalizer",false,6894146036344874074],[5565326065051315429,"icu_properties",false,14149730132988371575]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/idna_adapter-a90c5f270614d61e/dep-lib-idna_adapter","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/indexmap-7288faeefca9e398/dep-lib-indexmap b/examples/agent_server/target/debug/.fingerprint/indexmap-7288faeefca9e398/dep-lib-indexmap new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/indexmap-7288faeefca9e398/dep-lib-indexmap differ diff --git a/examples/agent_server/target/debug/.fingerprint/indexmap-7288faeefca9e398/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/indexmap-7288faeefca9e398/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/indexmap-7288faeefca9e398/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/indexmap-7288faeefca9e398/lib-indexmap b/examples/agent_server/target/debug/.fingerprint/indexmap-7288faeefca9e398/lib-indexmap new file mode 100644 index 0000000..1b50076 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/indexmap-7288faeefca9e398/lib-indexmap @@ -0,0 +1 @@ +fdf18751b73d2bff \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/indexmap-7288faeefca9e398/lib-indexmap.json b/examples/agent_server/target/debug/.fingerprint/indexmap-7288faeefca9e398/lib-indexmap.json new file mode 100644 index 0000000..303efc3 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/indexmap-7288faeefca9e398/lib-indexmap.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"arbitrary\", \"borsh\", \"default\", \"quickcheck\", \"rayon\", \"serde\", \"std\", \"sval\", \"test_debug\"]","target":15738714612577068147,"profile":11800664513218926762,"path":3547674199165799994,"deps":[[3067591776805002636,"hashbrown",false,1011592114970177027],[5230392855116717286,"equivalent",false,14506815746698361732]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/indexmap-7288faeefca9e398/dep-lib-indexmap","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/itertools-1c8620f6e4f3c891/dep-lib-itertools b/examples/agent_server/target/debug/.fingerprint/itertools-1c8620f6e4f3c891/dep-lib-itertools new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/itertools-1c8620f6e4f3c891/dep-lib-itertools differ diff --git a/examples/agent_server/target/debug/.fingerprint/itertools-1c8620f6e4f3c891/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/itertools-1c8620f6e4f3c891/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/itertools-1c8620f6e4f3c891/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/itertools-1c8620f6e4f3c891/lib-itertools b/examples/agent_server/target/debug/.fingerprint/itertools-1c8620f6e4f3c891/lib-itertools new file mode 100644 index 0000000..487c2fe --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/itertools-1c8620f6e4f3c891/lib-itertools @@ -0,0 +1 @@ +8855ef9bdd8b6996 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/itertools-1c8620f6e4f3c891/lib-itertools.json b/examples/agent_server/target/debug/.fingerprint/itertools-1c8620f6e4f3c891/lib-itertools.json new file mode 100644 index 0000000..332c327 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/itertools-1c8620f6e4f3c891/lib-itertools.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"use_alloc\"]","declared_features":"[\"default\", \"use_alloc\", \"use_std\"]","target":9541170365560449339,"profile":2225463790103693989,"path":14034346028626953722,"deps":[[13203131169721040493,"either",false,5616350929023937657]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/itertools-1c8620f6e4f3c891/dep-lib-itertools","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/itertools-f0395d884d8afb84/dep-lib-itertools b/examples/agent_server/target/debug/.fingerprint/itertools-f0395d884d8afb84/dep-lib-itertools new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/itertools-f0395d884d8afb84/dep-lib-itertools differ diff --git a/examples/agent_server/target/debug/.fingerprint/itertools-f0395d884d8afb84/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/itertools-f0395d884d8afb84/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/itertools-f0395d884d8afb84/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/itertools-f0395d884d8afb84/lib-itertools b/examples/agent_server/target/debug/.fingerprint/itertools-f0395d884d8afb84/lib-itertools new file mode 100644 index 0000000..30bfb46 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/itertools-f0395d884d8afb84/lib-itertools @@ -0,0 +1 @@ +9302c00edd9f2e47 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/itertools-f0395d884d8afb84/lib-itertools.json b/examples/agent_server/target/debug/.fingerprint/itertools-f0395d884d8afb84/lib-itertools.json new file mode 100644 index 0000000..769ea62 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/itertools-f0395d884d8afb84/lib-itertools.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"use_alloc\", \"use_std\"]","declared_features":"[\"default\", \"use_alloc\", \"use_std\"]","target":9541170365560449339,"profile":2225463790103693989,"path":2705631990753398737,"deps":[[13203131169721040493,"either",false,5616350929023937657]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/itertools-f0395d884d8afb84/dep-lib-itertools","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/dep-lib-itoa b/examples/agent_server/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/dep-lib-itoa new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/dep-lib-itoa differ diff --git a/examples/agent_server/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/lib-itoa b/examples/agent_server/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/lib-itoa new file mode 100644 index 0000000..f3a214d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/lib-itoa @@ -0,0 +1 @@ +f3d26f50602f1c0a \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/lib-itoa.json b/examples/agent_server/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/lib-itoa.json new file mode 100644 index 0000000..0b5be23 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/lib-itoa.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"no-panic\"]","target":18426369533666673425,"profile":2241668132362809309,"path":3355421602437736376,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/itoa-6ddde9f8d1eacb1c/dep-lib-itoa","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/lazy_static-ccd4043b5035ad5b/dep-lib-lazy_static b/examples/agent_server/target/debug/.fingerprint/lazy_static-ccd4043b5035ad5b/dep-lib-lazy_static new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/lazy_static-ccd4043b5035ad5b/dep-lib-lazy_static differ diff --git a/examples/agent_server/target/debug/.fingerprint/lazy_static-ccd4043b5035ad5b/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/lazy_static-ccd4043b5035ad5b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/lazy_static-ccd4043b5035ad5b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/lazy_static-ccd4043b5035ad5b/lib-lazy_static b/examples/agent_server/target/debug/.fingerprint/lazy_static-ccd4043b5035ad5b/lib-lazy_static new file mode 100644 index 0000000..9103507 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/lazy_static-ccd4043b5035ad5b/lib-lazy_static @@ -0,0 +1 @@ +e817d074acb660ad \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/lazy_static-ccd4043b5035ad5b/lib-lazy_static.json b/examples/agent_server/target/debug/.fingerprint/lazy_static-ccd4043b5035ad5b/lib-lazy_static.json new file mode 100644 index 0000000..f4a5adf --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/lazy_static-ccd4043b5035ad5b/lib-lazy_static.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"spin\", \"spin_no_std\"]","target":8659156474882058145,"profile":2241668132362809309,"path":1338641815045694079,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/lazy_static-ccd4043b5035ad5b/dep-lib-lazy_static","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/libc-19124a20af635abc/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/libc-19124a20af635abc/build-script-build-script-build new file mode 100644 index 0000000..2f7961c --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/libc-19124a20af635abc/build-script-build-script-build @@ -0,0 +1 @@ +6ef3aea22f0bb26c \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/libc-19124a20af635abc/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/libc-19124a20af635abc/build-script-build-script-build.json new file mode 100644 index 0000000..7f8c46b --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/libc-19124a20af635abc/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":5408242616063297496,"profile":169238399941425392,"path":9074226423671301960,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-19124a20af635abc/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/libc-19124a20af635abc/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/libc-19124a20af635abc/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/libc-19124a20af635abc/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/libc-19124a20af635abc/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/libc-19124a20af635abc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/libc-19124a20af635abc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/libc-421811f1f81d68b1/dep-lib-libc b/examples/agent_server/target/debug/.fingerprint/libc-421811f1f81d68b1/dep-lib-libc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/libc-421811f1f81d68b1/dep-lib-libc differ diff --git a/examples/agent_server/target/debug/.fingerprint/libc-421811f1f81d68b1/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/libc-421811f1f81d68b1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/libc-421811f1f81d68b1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/libc-421811f1f81d68b1/lib-libc b/examples/agent_server/target/debug/.fingerprint/libc-421811f1f81d68b1/lib-libc new file mode 100644 index 0000000..f9d7b0e --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/libc-421811f1f81d68b1/lib-libc @@ -0,0 +1 @@ +bfd1eae1b765999a \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/libc-421811f1f81d68b1/lib-libc.json b/examples/agent_server/target/debug/.fingerprint/libc-421811f1f81d68b1/lib-libc.json new file mode 100644 index 0000000..ce05d03 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/libc-421811f1f81d68b1/lib-libc.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":17682796336736096309,"profile":169238399941425392,"path":14882252788787501163,"deps":[[10504718112287328430,"build_script_build",false,2377549685067496203]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-421811f1f81d68b1/dep-lib-libc","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/libc-72577fe584cae775/dep-lib-libc b/examples/agent_server/target/debug/.fingerprint/libc-72577fe584cae775/dep-lib-libc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/libc-72577fe584cae775/dep-lib-libc differ diff --git a/examples/agent_server/target/debug/.fingerprint/libc-72577fe584cae775/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/libc-72577fe584cae775/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/libc-72577fe584cae775/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/libc-72577fe584cae775/lib-libc b/examples/agent_server/target/debug/.fingerprint/libc-72577fe584cae775/lib-libc new file mode 100644 index 0000000..2c469b8 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/libc-72577fe584cae775/lib-libc @@ -0,0 +1 @@ +dae91f38bf9c6422 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/libc-72577fe584cae775/lib-libc.json b/examples/agent_server/target/debug/.fingerprint/libc-72577fe584cae775/lib-libc.json new file mode 100644 index 0000000..ec51ad3 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/libc-72577fe584cae775/lib-libc.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":17682796336736096309,"profile":11682762369583304692,"path":14882252788787501163,"deps":[[10504718112287328430,"build_script_build",false,4111949868565664924]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-72577fe584cae775/dep-lib-libc","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/libc-a0156fe49325159f/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/libc-a0156fe49325159f/run-build-script-build-script-build new file mode 100644 index 0000000..22ec0bd --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/libc-a0156fe49325159f/run-build-script-build-script-build @@ -0,0 +1 @@ +0b3b4a7ed7c0fe20 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/libc-a0156fe49325159f/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/libc-a0156fe49325159f/run-build-script-build-script-build.json new file mode 100644 index 0000000..ac89ee3 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/libc-a0156fe49325159f/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10504718112287328430,"build_script_build",false,13210863313174559838]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-a0156fe49325159f/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"LIBC_BUILD_VERBOSE","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/libc-a72ef1f50d94be8f/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/libc-a72ef1f50d94be8f/run-build-script-build-script-build new file mode 100644 index 0000000..bec2786 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/libc-a72ef1f50d94be8f/run-build-script-build-script-build @@ -0,0 +1 @@ +9c1412929e941039 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/libc-a72ef1f50d94be8f/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/libc-a72ef1f50d94be8f/run-build-script-build-script-build.json new file mode 100644 index 0000000..e39f010 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/libc-a72ef1f50d94be8f/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10504718112287328430,"build_script_build",false,7832335001171456878]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-a72ef1f50d94be8f/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"LIBC_BUILD_VERBOSE","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/build-script-build-script-build new file mode 100644 index 0000000..8cdcdf1 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/build-script-build-script-build @@ -0,0 +1 @@ +5e7c026e306a56b7 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/build-script-build-script-build.json new file mode 100644 index 0000000..b0c2a02 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":5408242616063297496,"profile":169238399941425392,"path":9074226423671301960,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-fdafe8ebaf5b42a4/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/linux-raw-sys-6cf3763f4a99043c/dep-lib-linux_raw_sys b/examples/agent_server/target/debug/.fingerprint/linux-raw-sys-6cf3763f4a99043c/dep-lib-linux_raw_sys new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/linux-raw-sys-6cf3763f4a99043c/dep-lib-linux_raw_sys differ diff --git a/examples/agent_server/target/debug/.fingerprint/linux-raw-sys-6cf3763f4a99043c/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/linux-raw-sys-6cf3763f4a99043c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/linux-raw-sys-6cf3763f4a99043c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/linux-raw-sys-6cf3763f4a99043c/lib-linux_raw_sys b/examples/agent_server/target/debug/.fingerprint/linux-raw-sys-6cf3763f4a99043c/lib-linux_raw_sys new file mode 100644 index 0000000..5c7bc13 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/linux-raw-sys-6cf3763f4a99043c/lib-linux_raw_sys @@ -0,0 +1 @@ +b95bd81d6198f1f6 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/linux-raw-sys-6cf3763f4a99043c/lib-linux_raw_sys.json b/examples/agent_server/target/debug/.fingerprint/linux-raw-sys-6cf3763f4a99043c/lib-linux_raw_sys.json new file mode 100644 index 0000000..dce0e00 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/linux-raw-sys-6cf3763f4a99043c/lib-linux_raw_sys.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"auxvec\", \"elf\", \"errno\", \"general\", \"ioctl\", \"no_std\"]","declared_features":"[\"auxvec\", \"bootparam\", \"btrfs\", \"core\", \"default\", \"elf\", \"elf_uapi\", \"errno\", \"general\", \"if_arp\", \"if_ether\", \"if_packet\", \"if_tun\", \"image\", \"io_uring\", \"ioctl\", \"landlock\", \"loop_device\", \"mempolicy\", \"net\", \"netlink\", \"no_std\", \"prctl\", \"ptrace\", \"rustc-dep-of-std\", \"std\", \"system\", \"vm_sockets\", \"xdp\"]","target":5772965225213482929,"profile":13516139174137952896,"path":10221760926077255504,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/linux-raw-sys-6cf3763f4a99043c/dep-lib-linux_raw_sys","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/litemap-29b9b43b848af24e/dep-lib-litemap b/examples/agent_server/target/debug/.fingerprint/litemap-29b9b43b848af24e/dep-lib-litemap new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/litemap-29b9b43b848af24e/dep-lib-litemap differ diff --git a/examples/agent_server/target/debug/.fingerprint/litemap-29b9b43b848af24e/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/litemap-29b9b43b848af24e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/litemap-29b9b43b848af24e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/litemap-29b9b43b848af24e/lib-litemap b/examples/agent_server/target/debug/.fingerprint/litemap-29b9b43b848af24e/lib-litemap new file mode 100644 index 0000000..3e63c45 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/litemap-29b9b43b848af24e/lib-litemap @@ -0,0 +1 @@ +c2dc0ffb77208344 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/litemap-29b9b43b848af24e/lib-litemap.json b/examples/agent_server/target/debug/.fingerprint/litemap-29b9b43b848af24e/lib-litemap.json new file mode 100644 index 0000000..ce70438 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/litemap-29b9b43b848af24e/lib-litemap.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"alloc\", \"databake\", \"default\", \"serde\", \"testing\", \"yoke\"]","target":6548088149557820361,"profile":15319846033271432293,"path":13657394272148396016,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/litemap-29b9b43b848af24e/dep-lib-litemap","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/lock_api-a725f8519c91f1ca/dep-lib-lock_api b/examples/agent_server/target/debug/.fingerprint/lock_api-a725f8519c91f1ca/dep-lib-lock_api new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/lock_api-a725f8519c91f1ca/dep-lib-lock_api differ diff --git a/examples/agent_server/target/debug/.fingerprint/lock_api-a725f8519c91f1ca/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/lock_api-a725f8519c91f1ca/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/lock_api-a725f8519c91f1ca/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/lock_api-a725f8519c91f1ca/lib-lock_api b/examples/agent_server/target/debug/.fingerprint/lock_api-a725f8519c91f1ca/lib-lock_api new file mode 100644 index 0000000..12edc2a --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/lock_api-a725f8519c91f1ca/lib-lock_api @@ -0,0 +1 @@ +c02f110617e44806 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/lock_api-a725f8519c91f1ca/lib-lock_api.json b/examples/agent_server/target/debug/.fingerprint/lock_api-a725f8519c91f1ca/lib-lock_api.json new file mode 100644 index 0000000..aebd3df --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/lock_api-a725f8519c91f1ca/lib-lock_api.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"atomic_usize\", \"default\"]","declared_features":"[\"arc_lock\", \"atomic_usize\", \"default\", \"nightly\", \"owning_ref\", \"serde\"]","target":16157403318809843794,"profile":2241668132362809309,"path":9313236861016858490,"deps":[[15358414700195712381,"scopeguard",false,974308501039130457]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/lock_api-a725f8519c91f1ca/dep-lib-lock_api","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/log-2027d81fa82bec74/dep-lib-log b/examples/agent_server/target/debug/.fingerprint/log-2027d81fa82bec74/dep-lib-log new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/log-2027d81fa82bec74/dep-lib-log differ diff --git a/examples/agent_server/target/debug/.fingerprint/log-2027d81fa82bec74/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/log-2027d81fa82bec74/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/log-2027d81fa82bec74/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/log-2027d81fa82bec74/lib-log b/examples/agent_server/target/debug/.fingerprint/log-2027d81fa82bec74/lib-log new file mode 100644 index 0000000..36ad6c8 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/log-2027d81fa82bec74/lib-log @@ -0,0 +1 @@ +1e49b7d6231581ee \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/log-2027d81fa82bec74/lib-log.json b/examples/agent_server/target/debug/.fingerprint/log-2027d81fa82bec74/lib-log.json new file mode 100644 index 0000000..32d92ed --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/log-2027d81fa82bec74/lib-log.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"std\"]","declared_features":"[\"kv\", \"kv_serde\", \"kv_std\", \"kv_sval\", \"kv_unstable\", \"kv_unstable_serde\", \"kv_unstable_std\", \"kv_unstable_sval\", \"max_level_debug\", \"max_level_error\", \"max_level_info\", \"max_level_off\", \"max_level_trace\", \"max_level_warn\", \"release_max_level_debug\", \"release_max_level_error\", \"release_max_level_info\", \"release_max_level_off\", \"release_max_level_trace\", \"release_max_level_warn\", \"serde\", \"serde_core\", \"std\", \"sval\", \"sval_ref\", \"value-bag\"]","target":6550155848337067049,"profile":2241668132362809309,"path":2852985962814894249,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/log-2027d81fa82bec74/dep-lib-log","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/log-68baa8cffa5eefa5/dep-lib-log b/examples/agent_server/target/debug/.fingerprint/log-68baa8cffa5eefa5/dep-lib-log new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/log-68baa8cffa5eefa5/dep-lib-log differ diff --git a/examples/agent_server/target/debug/.fingerprint/log-68baa8cffa5eefa5/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/log-68baa8cffa5eefa5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/log-68baa8cffa5eefa5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/log-68baa8cffa5eefa5/lib-log b/examples/agent_server/target/debug/.fingerprint/log-68baa8cffa5eefa5/lib-log new file mode 100644 index 0000000..e6458c7 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/log-68baa8cffa5eefa5/lib-log @@ -0,0 +1 @@ +596f715f8587d5a7 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/log-68baa8cffa5eefa5/lib-log.json b/examples/agent_server/target/debug/.fingerprint/log-68baa8cffa5eefa5/lib-log.json new file mode 100644 index 0000000..061f6f4 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/log-68baa8cffa5eefa5/lib-log.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"kv\", \"kv_serde\", \"kv_std\", \"kv_sval\", \"kv_unstable\", \"kv_unstable_serde\", \"kv_unstable_std\", \"kv_unstable_sval\", \"max_level_debug\", \"max_level_error\", \"max_level_info\", \"max_level_off\", \"max_level_trace\", \"max_level_warn\", \"release_max_level_debug\", \"release_max_level_error\", \"release_max_level_info\", \"release_max_level_off\", \"release_max_level_trace\", \"release_max_level_warn\", \"serde\", \"serde_core\", \"std\", \"sval\", \"sval_ref\", \"value-bag\"]","target":6550155848337067049,"profile":2225463790103693989,"path":2852985962814894249,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/log-68baa8cffa5eefa5/dep-lib-log","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/matchers-9a37edcfb3e45198/dep-lib-matchers b/examples/agent_server/target/debug/.fingerprint/matchers-9a37edcfb3e45198/dep-lib-matchers new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/matchers-9a37edcfb3e45198/dep-lib-matchers differ diff --git a/examples/agent_server/target/debug/.fingerprint/matchers-9a37edcfb3e45198/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/matchers-9a37edcfb3e45198/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/matchers-9a37edcfb3e45198/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/matchers-9a37edcfb3e45198/lib-matchers b/examples/agent_server/target/debug/.fingerprint/matchers-9a37edcfb3e45198/lib-matchers new file mode 100644 index 0000000..8ca1af7 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/matchers-9a37edcfb3e45198/lib-matchers @@ -0,0 +1 @@ +a8e5d2a8c6704334 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/matchers-9a37edcfb3e45198/lib-matchers.json b/examples/agent_server/target/debug/.fingerprint/matchers-9a37edcfb3e45198/lib-matchers.json new file mode 100644 index 0000000..699d7ba --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/matchers-9a37edcfb3e45198/lib-matchers.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"unicode\"]","target":3435209789245483737,"profile":2241668132362809309,"path":1153263201872451706,"deps":[[1731763078628082640,"regex_automata",false,18151721268034804921]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/matchers-9a37edcfb3e45198/dep-lib-matchers","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/matchit-e87d71d9f3d16f7f/dep-lib-matchit b/examples/agent_server/target/debug/.fingerprint/matchit-e87d71d9f3d16f7f/dep-lib-matchit new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/matchit-e87d71d9f3d16f7f/dep-lib-matchit differ diff --git a/examples/agent_server/target/debug/.fingerprint/matchit-e87d71d9f3d16f7f/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/matchit-e87d71d9f3d16f7f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/matchit-e87d71d9f3d16f7f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/matchit-e87d71d9f3d16f7f/lib-matchit b/examples/agent_server/target/debug/.fingerprint/matchit-e87d71d9f3d16f7f/lib-matchit new file mode 100644 index 0000000..6af9776 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/matchit-e87d71d9f3d16f7f/lib-matchit @@ -0,0 +1 @@ +8f2841a29c3c9cf1 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/matchit-e87d71d9f3d16f7f/lib-matchit.json b/examples/agent_server/target/debug/.fingerprint/matchit-e87d71d9f3d16f7f/lib-matchit.json new file mode 100644 index 0000000..189c485 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/matchit-e87d71d9f3d16f7f/lib-matchit.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\"]","declared_features":"[\"__test_helpers\", \"default\"]","target":16629958156185568198,"profile":2241668132362809309,"path":10822995081526019661,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/matchit-e87d71d9f3d16f7f/dep-lib-matchit","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/dep-lib-memchr b/examples/agent_server/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/dep-lib-memchr new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/dep-lib-memchr differ diff --git a/examples/agent_server/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/lib-memchr b/examples/agent_server/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/lib-memchr new file mode 100644 index 0000000..7d5ac50 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/lib-memchr @@ -0,0 +1 @@ +19d38e6c2fae3a59 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/lib-memchr.json b/examples/agent_server/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/lib-memchr.json new file mode 100644 index 0000000..5c9cb85 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/lib-memchr.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"core\", \"default\", \"libc\", \"logging\", \"rustc-dep-of-std\", \"std\", \"use_std\"]","target":11745930252914242013,"profile":2241668132362809309,"path":11512394480622317980,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memchr-a34ee5341fb0ce7e/dep-lib-memchr","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/mime-2398f3503d3d8c77/dep-lib-mime b/examples/agent_server/target/debug/.fingerprint/mime-2398f3503d3d8c77/dep-lib-mime new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/mime-2398f3503d3d8c77/dep-lib-mime differ diff --git a/examples/agent_server/target/debug/.fingerprint/mime-2398f3503d3d8c77/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/mime-2398f3503d3d8c77/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/mime-2398f3503d3d8c77/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/mime-2398f3503d3d8c77/lib-mime b/examples/agent_server/target/debug/.fingerprint/mime-2398f3503d3d8c77/lib-mime new file mode 100644 index 0000000..743c862 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/mime-2398f3503d3d8c77/lib-mime @@ -0,0 +1 @@ +be5a96facf780a17 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/mime-2398f3503d3d8c77/lib-mime.json b/examples/agent_server/target/debug/.fingerprint/mime-2398f3503d3d8c77/lib-mime.json new file mode 100644 index 0000000..830f5c3 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/mime-2398f3503d3d8c77/lib-mime.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":2764086469773243511,"profile":2241668132362809309,"path":14401015990327476775,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/mime-2398f3503d3d8c77/dep-lib-mime","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/mio-a72c91040297509c/dep-lib-mio b/examples/agent_server/target/debug/.fingerprint/mio-a72c91040297509c/dep-lib-mio new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/mio-a72c91040297509c/dep-lib-mio differ diff --git a/examples/agent_server/target/debug/.fingerprint/mio-a72c91040297509c/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/mio-a72c91040297509c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/mio-a72c91040297509c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/mio-a72c91040297509c/lib-mio b/examples/agent_server/target/debug/.fingerprint/mio-a72c91040297509c/lib-mio new file mode 100644 index 0000000..9f5a820 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/mio-a72c91040297509c/lib-mio @@ -0,0 +1 @@ +3f7fdd2f95274c30 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/mio-a72c91040297509c/lib-mio.json b/examples/agent_server/target/debug/.fingerprint/mio-a72c91040297509c/lib-mio.json new file mode 100644 index 0000000..555426d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/mio-a72c91040297509c/lib-mio.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"net\", \"os-ext\", \"os-poll\"]","declared_features":"[\"default\", \"log\", \"net\", \"os-ext\", \"os-poll\"]","target":5157902839847266895,"profile":9936639502610548555,"path":13189952978349354652,"deps":[[10504718112287328430,"libc",false,2478278040054917594]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/mio-a72c91040297509c/dep-lib-mio","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/multimap-63b766be0b42012c/dep-lib-multimap b/examples/agent_server/target/debug/.fingerprint/multimap-63b766be0b42012c/dep-lib-multimap new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/multimap-63b766be0b42012c/dep-lib-multimap differ diff --git a/examples/agent_server/target/debug/.fingerprint/multimap-63b766be0b42012c/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/multimap-63b766be0b42012c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/multimap-63b766be0b42012c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/multimap-63b766be0b42012c/lib-multimap b/examples/agent_server/target/debug/.fingerprint/multimap-63b766be0b42012c/lib-multimap new file mode 100644 index 0000000..ab42670 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/multimap-63b766be0b42012c/lib-multimap @@ -0,0 +1 @@ +2514cd9693c468d3 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/multimap-63b766be0b42012c/lib-multimap.json b/examples/agent_server/target/debug/.fingerprint/multimap-63b766be0b42012c/lib-multimap.json new file mode 100644 index 0000000..d6ccd5e --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/multimap-63b766be0b42012c/lib-multimap.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"default\", \"serde\", \"serde_impl\"]","target":6301476055332553994,"profile":2225463790103693989,"path":14271565198091631524,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/multimap-63b766be0b42012c/dep-lib-multimap","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/nu-ansi-term-87fa4f1fcc6f3846/dep-lib-nu_ansi_term b/examples/agent_server/target/debug/.fingerprint/nu-ansi-term-87fa4f1fcc6f3846/dep-lib-nu_ansi_term new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/nu-ansi-term-87fa4f1fcc6f3846/dep-lib-nu_ansi_term differ diff --git a/examples/agent_server/target/debug/.fingerprint/nu-ansi-term-87fa4f1fcc6f3846/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/nu-ansi-term-87fa4f1fcc6f3846/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/nu-ansi-term-87fa4f1fcc6f3846/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/nu-ansi-term-87fa4f1fcc6f3846/lib-nu_ansi_term b/examples/agent_server/target/debug/.fingerprint/nu-ansi-term-87fa4f1fcc6f3846/lib-nu_ansi_term new file mode 100644 index 0000000..d73e607 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/nu-ansi-term-87fa4f1fcc6f3846/lib-nu_ansi_term @@ -0,0 +1 @@ +48dd3358cbedc5bb \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/nu-ansi-term-87fa4f1fcc6f3846/lib-nu_ansi_term.json b/examples/agent_server/target/debug/.fingerprint/nu-ansi-term-87fa4f1fcc6f3846/lib-nu_ansi_term.json new file mode 100644 index 0000000..1a83b23 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/nu-ansi-term-87fa4f1fcc6f3846/lib-nu_ansi_term.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"derive_serde_style\", \"gnu_legacy\", \"serde\", \"std\"]","target":5239985456149308223,"profile":2241668132362809309,"path":5929609172418439185,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/nu-ansi-term-87fa4f1fcc6f3846/dep-lib-nu_ansi_term","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/once_cell-b3948b4f78ab9f74/dep-lib-once_cell b/examples/agent_server/target/debug/.fingerprint/once_cell-b3948b4f78ab9f74/dep-lib-once_cell new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/once_cell-b3948b4f78ab9f74/dep-lib-once_cell differ diff --git a/examples/agent_server/target/debug/.fingerprint/once_cell-b3948b4f78ab9f74/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/once_cell-b3948b4f78ab9f74/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/once_cell-b3948b4f78ab9f74/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/once_cell-b3948b4f78ab9f74/lib-once_cell b/examples/agent_server/target/debug/.fingerprint/once_cell-b3948b4f78ab9f74/lib-once_cell new file mode 100644 index 0000000..6647d50 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/once_cell-b3948b4f78ab9f74/lib-once_cell @@ -0,0 +1 @@ +00ef30f4e10b2bfa \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/once_cell-b3948b4f78ab9f74/lib-once_cell.json b/examples/agent_server/target/debug/.fingerprint/once_cell-b3948b4f78ab9f74/lib-once_cell.json new file mode 100644 index 0000000..7d302e2 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/once_cell-b3948b4f78ab9f74/lib-once_cell.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"race\", \"std\"]","declared_features":"[\"alloc\", \"atomic-polyfill\", \"critical-section\", \"default\", \"parking_lot\", \"portable-atomic\", \"race\", \"std\", \"unstable\"]","target":17524666916136250164,"profile":2225463790103693989,"path":775117667730570460,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/once_cell-b3948b4f78ab9f74/dep-lib-once_cell","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/once_cell-c455c5f2ae07f315/dep-lib-once_cell b/examples/agent_server/target/debug/.fingerprint/once_cell-c455c5f2ae07f315/dep-lib-once_cell new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/once_cell-c455c5f2ae07f315/dep-lib-once_cell differ diff --git a/examples/agent_server/target/debug/.fingerprint/once_cell-c455c5f2ae07f315/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/once_cell-c455c5f2ae07f315/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/once_cell-c455c5f2ae07f315/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/once_cell-c455c5f2ae07f315/lib-once_cell b/examples/agent_server/target/debug/.fingerprint/once_cell-c455c5f2ae07f315/lib-once_cell new file mode 100644 index 0000000..381c402 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/once_cell-c455c5f2ae07f315/lib-once_cell @@ -0,0 +1 @@ +43ffca392f919e69 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/once_cell-c455c5f2ae07f315/lib-once_cell.json b/examples/agent_server/target/debug/.fingerprint/once_cell-c455c5f2ae07f315/lib-once_cell.json new file mode 100644 index 0000000..ad2e36c --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/once_cell-c455c5f2ae07f315/lib-once_cell.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"race\", \"std\"]","declared_features":"[\"alloc\", \"atomic-polyfill\", \"critical-section\", \"default\", \"parking_lot\", \"portable-atomic\", \"race\", \"std\", \"unstable\"]","target":17524666916136250164,"profile":2241668132362809309,"path":775117667730570460,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/once_cell-c455c5f2ae07f315/dep-lib-once_cell","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/parking_lot-3048f291a672a787/dep-lib-parking_lot b/examples/agent_server/target/debug/.fingerprint/parking_lot-3048f291a672a787/dep-lib-parking_lot new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/parking_lot-3048f291a672a787/dep-lib-parking_lot differ diff --git a/examples/agent_server/target/debug/.fingerprint/parking_lot-3048f291a672a787/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/parking_lot-3048f291a672a787/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/parking_lot-3048f291a672a787/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/parking_lot-3048f291a672a787/lib-parking_lot b/examples/agent_server/target/debug/.fingerprint/parking_lot-3048f291a672a787/lib-parking_lot new file mode 100644 index 0000000..074d55d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/parking_lot-3048f291a672a787/lib-parking_lot @@ -0,0 +1 @@ +812d923ac1cfe84b \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/parking_lot-3048f291a672a787/lib-parking_lot.json b/examples/agent_server/target/debug/.fingerprint/parking_lot-3048f291a672a787/lib-parking_lot.json new file mode 100644 index 0000000..7f7aef1 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/parking_lot-3048f291a672a787/lib-parking_lot.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\"]","declared_features":"[\"arc_lock\", \"deadlock_detection\", \"default\", \"hardware-lock-elision\", \"nightly\", \"owning_ref\", \"send_guard\", \"serde\"]","target":9887373948397848517,"profile":2241668132362809309,"path":14109308180679738012,"deps":[[2555121257709722468,"lock_api",false,452862550087905216],[6545091685033313457,"parking_lot_core",false,7996024708387275319]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot-3048f291a672a787/dep-lib-parking_lot","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/parking_lot_core-315b61289a7d8da2/dep-lib-parking_lot_core b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-315b61289a7d8da2/dep-lib-parking_lot_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-315b61289a7d8da2/dep-lib-parking_lot_core differ diff --git a/examples/agent_server/target/debug/.fingerprint/parking_lot_core-315b61289a7d8da2/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-315b61289a7d8da2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-315b61289a7d8da2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/parking_lot_core-315b61289a7d8da2/lib-parking_lot_core b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-315b61289a7d8da2/lib-parking_lot_core new file mode 100644 index 0000000..2e418b5 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-315b61289a7d8da2/lib-parking_lot_core @@ -0,0 +1 @@ +3782ab861b96f76e \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/parking_lot_core-315b61289a7d8da2/lib-parking_lot_core.json b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-315b61289a7d8da2/lib-parking_lot_core.json new file mode 100644 index 0000000..64710f3 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-315b61289a7d8da2/lib-parking_lot_core.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"backtrace\", \"deadlock_detection\", \"nightly\", \"petgraph\"]","target":12558056885032795287,"profile":2241668132362809309,"path":4902165365725271259,"deps":[[2295442787663447226,"smallvec",false,7862439461198811059],[6545091685033313457,"build_script_build",false,8264241594720203387],[7667230146095136825,"cfg_if",false,1090425733875617541],[10504718112287328430,"libc",false,2478278040054917594]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot_core-315b61289a7d8da2/dep-lib-parking_lot_core","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/parking_lot_core-52063db600f06e4d/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-52063db600f06e4d/build-script-build-script-build new file mode 100644 index 0000000..b331b84 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-52063db600f06e4d/build-script-build-script-build @@ -0,0 +1 @@ +25439c478cf18a04 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/parking_lot_core-52063db600f06e4d/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-52063db600f06e4d/build-script-build-script-build.json new file mode 100644 index 0000000..f84bf2e --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-52063db600f06e4d/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"backtrace\", \"deadlock_detection\", \"nightly\", \"petgraph\"]","target":5408242616063297496,"profile":2225463790103693989,"path":6613219654586509988,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking_lot_core-52063db600f06e4d/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/parking_lot_core-52063db600f06e4d/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-52063db600f06e4d/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-52063db600f06e4d/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/parking_lot_core-52063db600f06e4d/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-52063db600f06e4d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-52063db600f06e4d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/parking_lot_core-7278ab506aa01ffc/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-7278ab506aa01ffc/run-build-script-build-script-build new file mode 100644 index 0000000..a58e0fb --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-7278ab506aa01ffc/run-build-script-build-script-build @@ -0,0 +1 @@ +7b324ecff17bb072 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/parking_lot_core-7278ab506aa01ffc/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-7278ab506aa01ffc/run-build-script-build-script-build.json new file mode 100644 index 0000000..76336de --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/parking_lot_core-7278ab506aa01ffc/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6545091685033313457,"build_script_build",false,327339507736920869]],"local":[{"RerunIfChanged":{"output":"debug/build/parking_lot_core-7278ab506aa01ffc/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/pbjson-9fefd2802d9615fa/dep-lib-pbjson b/examples/agent_server/target/debug/.fingerprint/pbjson-9fefd2802d9615fa/dep-lib-pbjson new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/pbjson-9fefd2802d9615fa/dep-lib-pbjson differ diff --git a/examples/agent_server/target/debug/.fingerprint/pbjson-9fefd2802d9615fa/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/pbjson-9fefd2802d9615fa/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/pbjson-9fefd2802d9615fa/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/pbjson-9fefd2802d9615fa/lib-pbjson b/examples/agent_server/target/debug/.fingerprint/pbjson-9fefd2802d9615fa/lib-pbjson new file mode 100644 index 0000000..87bdf5e --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/pbjson-9fefd2802d9615fa/lib-pbjson @@ -0,0 +1 @@ +c8dc16784123852a \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/pbjson-9fefd2802d9615fa/lib-pbjson.json b/examples/agent_server/target/debug/.fingerprint/pbjson-9fefd2802d9615fa/lib-pbjson.json new file mode 100644 index 0000000..df3ba2b --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/pbjson-9fefd2802d9615fa/lib-pbjson.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":11738824851411008032,"profile":2241668132362809309,"path":7184009401656928608,"deps":[[6557439603276904804,"serde",false,13004456102427444285],[18066890886671768183,"base64",false,4004532743916954957]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pbjson-9fefd2802d9615fa/dep-lib-pbjson","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/pbjson-build-a5201bf0a53d43b5/dep-lib-pbjson_build b/examples/agent_server/target/debug/.fingerprint/pbjson-build-a5201bf0a53d43b5/dep-lib-pbjson_build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/pbjson-build-a5201bf0a53d43b5/dep-lib-pbjson_build differ diff --git a/examples/agent_server/target/debug/.fingerprint/pbjson-build-a5201bf0a53d43b5/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/pbjson-build-a5201bf0a53d43b5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/pbjson-build-a5201bf0a53d43b5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/pbjson-build-a5201bf0a53d43b5/lib-pbjson_build b/examples/agent_server/target/debug/.fingerprint/pbjson-build-a5201bf0a53d43b5/lib-pbjson_build new file mode 100644 index 0000000..5a38156 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/pbjson-build-a5201bf0a53d43b5/lib-pbjson_build @@ -0,0 +1 @@ +f6323b7635f7bdbd \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/pbjson-build-a5201bf0a53d43b5/lib-pbjson_build.json b/examples/agent_server/target/debug/.fingerprint/pbjson-build-a5201bf0a53d43b5/lib-pbjson_build.json new file mode 100644 index 0000000..c73b624 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/pbjson-build-a5201bf0a53d43b5/lib-pbjson_build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":16055122647635831195,"profile":2225463790103693989,"path":3760686153295968050,"deps":[[7016560594308609179,"prost",false,2552104850442732493],[8045585743974080694,"heck",false,559420651830389560],[15190275674338974840,"itertools",false,5129212797405627027],[18156568664791550917,"prost_types",false,8296049516519056118]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pbjson-build-a5201bf0a53d43b5/dep-lib-pbjson_build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/dep-lib-percent_encoding b/examples/agent_server/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/dep-lib-percent_encoding new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/dep-lib-percent_encoding differ diff --git a/examples/agent_server/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/lib-percent_encoding b/examples/agent_server/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/lib-percent_encoding new file mode 100644 index 0000000..fe3e6a5 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/lib-percent_encoding @@ -0,0 +1 @@ +943b750d504b4ff2 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/lib-percent_encoding.json b/examples/agent_server/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/lib-percent_encoding.json new file mode 100644 index 0000000..db57bc7 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/lib-percent_encoding.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":6219969305134610909,"profile":2241668132362809309,"path":13410472828908927545,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/percent-encoding-fdfc253f68ee3774/dep-lib-percent_encoding","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/petgraph-9a69bd5e024ad0e2/dep-lib-petgraph b/examples/agent_server/target/debug/.fingerprint/petgraph-9a69bd5e024ad0e2/dep-lib-petgraph new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/petgraph-9a69bd5e024ad0e2/dep-lib-petgraph differ diff --git a/examples/agent_server/target/debug/.fingerprint/petgraph-9a69bd5e024ad0e2/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/petgraph-9a69bd5e024ad0e2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/petgraph-9a69bd5e024ad0e2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/petgraph-9a69bd5e024ad0e2/lib-petgraph b/examples/agent_server/target/debug/.fingerprint/petgraph-9a69bd5e024ad0e2/lib-petgraph new file mode 100644 index 0000000..459d3c9 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/petgraph-9a69bd5e024ad0e2/lib-petgraph @@ -0,0 +1 @@ +17504079c8b7dd95 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/petgraph-9a69bd5e024ad0e2/lib-petgraph.json b/examples/agent_server/target/debug/.fingerprint/petgraph-9a69bd5e024ad0e2/lib-petgraph.json new file mode 100644 index 0000000..389c578 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/petgraph-9a69bd5e024ad0e2/lib-petgraph.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"all\", \"default\", \"generate\", \"graphmap\", \"matrix_graph\", \"quickcheck\", \"rayon\", \"serde\", \"serde-1\", \"serde_derive\", \"stable_graph\", \"unstable\"]","target":16670801973687532141,"profile":2225463790103693989,"path":5466858657964039294,"deps":[[8826707145280285270,"indexmap",false,18386857761226355197],[18312645897321731715,"fixedbitset",false,4228221198273509197]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/petgraph-9a69bd5e024ad0e2/dep-lib-petgraph","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/dep-lib-pin_project_lite b/examples/agent_server/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/dep-lib-pin_project_lite new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/dep-lib-pin_project_lite differ diff --git a/examples/agent_server/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/lib-pin_project_lite b/examples/agent_server/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/lib-pin_project_lite new file mode 100644 index 0000000..875af25 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/lib-pin_project_lite @@ -0,0 +1 @@ +aaccbac41eaac640 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/lib-pin_project_lite.json b/examples/agent_server/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/lib-pin_project_lite.json new file mode 100644 index 0000000..b297eaa --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/lib-pin_project_lite.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":7529200858990304138,"profile":17997933717712007536,"path":5646862324104712435,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/dep-lib-pin_project_lite","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/potential_utf-715037261d1e1bef/dep-lib-potential_utf b/examples/agent_server/target/debug/.fingerprint/potential_utf-715037261d1e1bef/dep-lib-potential_utf new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/potential_utf-715037261d1e1bef/dep-lib-potential_utf differ diff --git a/examples/agent_server/target/debug/.fingerprint/potential_utf-715037261d1e1bef/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/potential_utf-715037261d1e1bef/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/potential_utf-715037261d1e1bef/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/potential_utf-715037261d1e1bef/lib-potential_utf b/examples/agent_server/target/debug/.fingerprint/potential_utf-715037261d1e1bef/lib-potential_utf new file mode 100644 index 0000000..c14c980 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/potential_utf-715037261d1e1bef/lib-potential_utf @@ -0,0 +1 @@ +3f55a79f8dac19a7 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/potential_utf-715037261d1e1bef/lib-potential_utf.json b/examples/agent_server/target/debug/.fingerprint/potential_utf-715037261d1e1bef/lib-potential_utf.json new file mode 100644 index 0000000..4cb14ef --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/potential_utf-715037261d1e1bef/lib-potential_utf.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"serde\", \"writeable\", \"zerovec\"]","target":16089386906944150126,"profile":15319846033271432293,"path":17881548224756515226,"deps":[[9119616491714376884,"zerovec",false,8054920708844821994]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/potential_utf-715037261d1e1bef/dep-lib-potential_utf","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/ppv-lite86-5575b5f1b4abe208/dep-lib-ppv_lite86 b/examples/agent_server/target/debug/.fingerprint/ppv-lite86-5575b5f1b4abe208/dep-lib-ppv_lite86 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/ppv-lite86-5575b5f1b4abe208/dep-lib-ppv_lite86 differ diff --git a/examples/agent_server/target/debug/.fingerprint/ppv-lite86-5575b5f1b4abe208/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/ppv-lite86-5575b5f1b4abe208/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/ppv-lite86-5575b5f1b4abe208/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/ppv-lite86-5575b5f1b4abe208/lib-ppv_lite86 b/examples/agent_server/target/debug/.fingerprint/ppv-lite86-5575b5f1b4abe208/lib-ppv_lite86 new file mode 100644 index 0000000..e969484 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/ppv-lite86-5575b5f1b4abe208/lib-ppv_lite86 @@ -0,0 +1 @@ +6852bace873fe9b9 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/ppv-lite86-5575b5f1b4abe208/lib-ppv_lite86.json b/examples/agent_server/target/debug/.fingerprint/ppv-lite86-5575b5f1b4abe208/lib-ppv_lite86.json new file mode 100644 index 0000000..4306309 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/ppv-lite86-5575b5f1b4abe208/lib-ppv_lite86.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"simd\", \"std\"]","declared_features":"[\"default\", \"no_simd\", \"simd\", \"std\"]","target":2607852365283500179,"profile":2241668132362809309,"path":5412048658143928043,"deps":[[7068267936014523539,"zerocopy",false,7110675491130740625]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ppv-lite86-5575b5f1b4abe208/dep-lib-ppv_lite86","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prettyplease-313503e4931fbd32/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/prettyplease-313503e4931fbd32/run-build-script-build-script-build new file mode 100644 index 0000000..e5110a7 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prettyplease-313503e4931fbd32/run-build-script-build-script-build @@ -0,0 +1 @@ +150e34ab20caab6e \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prettyplease-313503e4931fbd32/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/prettyplease-313503e4931fbd32/run-build-script-build-script-build.json new file mode 100644 index 0000000..e98077b --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prettyplease-313503e4931fbd32/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[9423015880379144908,"build_script_build",false,2010928352283792007]],"local":[{"RerunIfChanged":{"output":"debug/build/prettyplease-313503e4931fbd32/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prettyplease-4e660e93577719bd/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/prettyplease-4e660e93577719bd/build-script-build-script-build new file mode 100644 index 0000000..b40664b --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prettyplease-4e660e93577719bd/build-script-build-script-build @@ -0,0 +1 @@ +8712a39aae40e81b \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prettyplease-4e660e93577719bd/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/prettyplease-4e660e93577719bd/build-script-build-script-build.json new file mode 100644 index 0000000..22ba4d9 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prettyplease-4e660e93577719bd/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"verbatim\"]","target":5408242616063297496,"profile":2225463790103693989,"path":17968814751863994312,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/prettyplease-4e660e93577719bd/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prettyplease-4e660e93577719bd/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/prettyplease-4e660e93577719bd/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/prettyplease-4e660e93577719bd/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/prettyplease-4e660e93577719bd/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/prettyplease-4e660e93577719bd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prettyplease-4e660e93577719bd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prettyplease-91f00f811302e360/dep-lib-prettyplease b/examples/agent_server/target/debug/.fingerprint/prettyplease-91f00f811302e360/dep-lib-prettyplease new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/prettyplease-91f00f811302e360/dep-lib-prettyplease differ diff --git a/examples/agent_server/target/debug/.fingerprint/prettyplease-91f00f811302e360/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/prettyplease-91f00f811302e360/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prettyplease-91f00f811302e360/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prettyplease-91f00f811302e360/lib-prettyplease b/examples/agent_server/target/debug/.fingerprint/prettyplease-91f00f811302e360/lib-prettyplease new file mode 100644 index 0000000..ef4b154 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prettyplease-91f00f811302e360/lib-prettyplease @@ -0,0 +1 @@ +2492ae3cc1bbe6ba \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prettyplease-91f00f811302e360/lib-prettyplease.json b/examples/agent_server/target/debug/.fingerprint/prettyplease-91f00f811302e360/lib-prettyplease.json new file mode 100644 index 0000000..494c92d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prettyplease-91f00f811302e360/lib-prettyplease.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"verbatim\"]","target":18426667244755495939,"profile":2225463790103693989,"path":168803154995863260,"deps":[[9423015880379144908,"build_script_build",false,7974689806849674773],[10190449710562616856,"syn",false,4945112598065903290],[16346726298725429545,"proc_macro2",false,16093586419399039199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/prettyplease-91f00f811302e360/dep-lib-prettyplease","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/proc-macro2-1075039a6f7f989d/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/proc-macro2-1075039a6f7f989d/run-build-script-build-script-build new file mode 100644 index 0000000..3a275f3 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/proc-macro2-1075039a6f7f989d/run-build-script-build-script-build @@ -0,0 +1 @@ +b0662fd8d4e64a28 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/proc-macro2-1075039a6f7f989d/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/proc-macro2-1075039a6f7f989d/run-build-script-build-script-build.json new file mode 100644 index 0000000..733c911 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/proc-macro2-1075039a6f7f989d/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[16346726298725429545,"build_script_build",false,9331078830183679391]],"local":[{"RerunIfChanged":{"output":"debug/build/proc-macro2-1075039a6f7f989d/output","paths":["src/probe/proc_macro_span.rs","src/probe/proc_macro_span_location.rs","src/probe/proc_macro_span_file.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/proc-macro2-16bdc4cfed7c29c3/dep-lib-proc_macro2 b/examples/agent_server/target/debug/.fingerprint/proc-macro2-16bdc4cfed7c29c3/dep-lib-proc_macro2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/proc-macro2-16bdc4cfed7c29c3/dep-lib-proc_macro2 differ diff --git a/examples/agent_server/target/debug/.fingerprint/proc-macro2-16bdc4cfed7c29c3/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/proc-macro2-16bdc4cfed7c29c3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/proc-macro2-16bdc4cfed7c29c3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/proc-macro2-16bdc4cfed7c29c3/lib-proc_macro2 b/examples/agent_server/target/debug/.fingerprint/proc-macro2-16bdc4cfed7c29c3/lib-proc_macro2 new file mode 100644 index 0000000..85667a5 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/proc-macro2-16bdc4cfed7c29c3/lib-proc_macro2 @@ -0,0 +1 @@ +df9854ba94e757df \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/proc-macro2-16bdc4cfed7c29c3/lib-proc_macro2.json b/examples/agent_server/target/debug/.fingerprint/proc-macro2-16bdc4cfed7c29c3/lib-proc_macro2.json new file mode 100644 index 0000000..717ab16 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/proc-macro2-16bdc4cfed7c29c3/lib-proc_macro2.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":369203346396300798,"profile":2225463790103693989,"path":9341277498285328923,"deps":[[8901712065508858692,"unicode_ident",false,10098889171189812418],[16346726298725429545,"build_script_build",false,2903386711628146352]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-16bdc4cfed7c29c3/dep-lib-proc_macro2","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/proc-macro2-7d0ed4e509752a35/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/proc-macro2-7d0ed4e509752a35/build-script-build-script-build new file mode 100644 index 0000000..e715acf --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/proc-macro2-7d0ed4e509752a35/build-script-build-script-build @@ -0,0 +1 @@ +9f054404c2a67e81 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/proc-macro2-7d0ed4e509752a35/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/proc-macro2-7d0ed4e509752a35/build-script-build-script-build.json new file mode 100644 index 0000000..f8e58fe --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/proc-macro2-7d0ed4e509752a35/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":5408242616063297496,"profile":2225463790103693989,"path":7845090571473629411,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-7d0ed4e509752a35/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/proc-macro2-7d0ed4e509752a35/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/proc-macro2-7d0ed4e509752a35/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/proc-macro2-7d0ed4e509752a35/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/proc-macro2-7d0ed4e509752a35/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/proc-macro2-7d0ed4e509752a35/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/proc-macro2-7d0ed4e509752a35/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prost-03584005866e1df0/dep-lib-prost b/examples/agent_server/target/debug/.fingerprint/prost-03584005866e1df0/dep-lib-prost new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/prost-03584005866e1df0/dep-lib-prost differ diff --git a/examples/agent_server/target/debug/.fingerprint/prost-03584005866e1df0/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/prost-03584005866e1df0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prost-03584005866e1df0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prost-03584005866e1df0/lib-prost b/examples/agent_server/target/debug/.fingerprint/prost-03584005866e1df0/lib-prost new file mode 100644 index 0000000..0ae6dc5 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prost-03584005866e1df0/lib-prost @@ -0,0 +1 @@ +cdc33000d7e56a23 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prost-03584005866e1df0/lib-prost.json b/examples/agent_server/target/debug/.fingerprint/prost-03584005866e1df0/lib-prost.json new file mode 100644 index 0000000..b49342b --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prost-03584005866e1df0/lib-prost.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"derive\", \"prost-derive\", \"std\"]","declared_features":"[\"default\", \"derive\", \"no-recursion-limit\", \"prost-derive\", \"std\"]","target":11120345844330190324,"profile":2225463790103693989,"path":11325228240278125990,"deps":[[11926622812581095017,"bytes",false,7097221552265053494],[12597396490863292969,"prost_derive",false,14110510120042736332]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/prost-03584005866e1df0/dep-lib-prost","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prost-68904d0e6ab51728/dep-lib-prost b/examples/agent_server/target/debug/.fingerprint/prost-68904d0e6ab51728/dep-lib-prost new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/prost-68904d0e6ab51728/dep-lib-prost differ diff --git a/examples/agent_server/target/debug/.fingerprint/prost-68904d0e6ab51728/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/prost-68904d0e6ab51728/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prost-68904d0e6ab51728/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prost-68904d0e6ab51728/lib-prost b/examples/agent_server/target/debug/.fingerprint/prost-68904d0e6ab51728/lib-prost new file mode 100644 index 0000000..4039a19 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prost-68904d0e6ab51728/lib-prost @@ -0,0 +1 @@ +d69d47c7e113fa6f \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prost-68904d0e6ab51728/lib-prost.json b/examples/agent_server/target/debug/.fingerprint/prost-68904d0e6ab51728/lib-prost.json new file mode 100644 index 0000000..c37c6fc --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prost-68904d0e6ab51728/lib-prost.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"derive\", \"std\"]","declared_features":"[\"default\", \"derive\", \"no-recursion-limit\", \"prost-derive\", \"std\"]","target":11120345844330190324,"profile":2241668132362809309,"path":11325228240278125990,"deps":[[11926622812581095017,"bytes",false,17162365318241494045],[12597396490863292969,"prost_derive",false,14110510120042736332]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/prost-68904d0e6ab51728/dep-lib-prost","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prost-build-7ab0b7681c194edc/dep-lib-prost_build b/examples/agent_server/target/debug/.fingerprint/prost-build-7ab0b7681c194edc/dep-lib-prost_build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/prost-build-7ab0b7681c194edc/dep-lib-prost_build differ diff --git a/examples/agent_server/target/debug/.fingerprint/prost-build-7ab0b7681c194edc/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/prost-build-7ab0b7681c194edc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prost-build-7ab0b7681c194edc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prost-build-7ab0b7681c194edc/lib-prost_build b/examples/agent_server/target/debug/.fingerprint/prost-build-7ab0b7681c194edc/lib-prost_build new file mode 100644 index 0000000..d69fd1b --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prost-build-7ab0b7681c194edc/lib-prost_build @@ -0,0 +1 @@ +5fe94fda284ea885 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prost-build-7ab0b7681c194edc/lib-prost_build.json b/examples/agent_server/target/debug/.fingerprint/prost-build-7ab0b7681c194edc/lib-prost_build.json new file mode 100644 index 0000000..c86adc4 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prost-build-7ab0b7681c194edc/lib-prost_build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"format\"]","declared_features":"[\"cleanup-markdown\", \"default\", \"format\"]","target":5767990241175469825,"profile":2225463790103693989,"path":4422847474759558532,"deps":[[310359321821557790,"regex",false,3305955631033222230],[5855319743879205494,"once_cell",false,18026514998572936960],[7016560594308609179,"prost",false,2552104850442732493],[9423015880379144908,"prettyplease",false,13467658174319202852],[9723370144619655183,"tempfile",false,4962779103825730955],[10190449710562616856,"syn",false,4945112598065903290],[11926622812581095017,"bytes",false,7097221552265053494],[13077543566650298139,"heck",false,2191870788021527059],[13250530278168366607,"multimap",false,15233641877749961765],[14931062873021150766,"itertools",false,10838347762163996040],[16532555906320553198,"petgraph",false,10798989553159917591],[17353235279385985750,"log",false,12093721381275004761],[18156568664791550917,"prost_types",false,8296049516519056118]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/prost-build-7ab0b7681c194edc/dep-lib-prost_build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prost-derive-b546e6bd398a34d2/dep-lib-prost_derive b/examples/agent_server/target/debug/.fingerprint/prost-derive-b546e6bd398a34d2/dep-lib-prost_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/prost-derive-b546e6bd398a34d2/dep-lib-prost_derive differ diff --git a/examples/agent_server/target/debug/.fingerprint/prost-derive-b546e6bd398a34d2/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/prost-derive-b546e6bd398a34d2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prost-derive-b546e6bd398a34d2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prost-derive-b546e6bd398a34d2/lib-prost_derive b/examples/agent_server/target/debug/.fingerprint/prost-derive-b546e6bd398a34d2/lib-prost_derive new file mode 100644 index 0000000..1f030a3 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prost-derive-b546e6bd398a34d2/lib-prost_derive @@ -0,0 +1 @@ +ccaab388319ad2c3 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prost-derive-b546e6bd398a34d2/lib-prost_derive.json b/examples/agent_server/target/debug/.fingerprint/prost-derive-b546e6bd398a34d2/lib-prost_derive.json new file mode 100644 index 0000000..b86369d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prost-derive-b546e6bd398a34d2/lib-prost_derive.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":15271409881757698411,"profile":2225463790103693989,"path":6532634012172774261,"deps":[[8949245912927223590,"quote",false,3425229716652418837],[10190449710562616856,"syn",false,4945112598065903290],[10364619138950789809,"anyhow",false,162694126793970116],[14931062873021150766,"itertools",false,10838347762163996040],[16346726298725429545,"proc_macro2",false,16093586419399039199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/prost-derive-b546e6bd398a34d2/dep-lib-prost_derive","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prost-types-90edbfdaeac7f16a/dep-lib-prost_types b/examples/agent_server/target/debug/.fingerprint/prost-types-90edbfdaeac7f16a/dep-lib-prost_types new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/prost-types-90edbfdaeac7f16a/dep-lib-prost_types differ diff --git a/examples/agent_server/target/debug/.fingerprint/prost-types-90edbfdaeac7f16a/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/prost-types-90edbfdaeac7f16a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prost-types-90edbfdaeac7f16a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prost-types-90edbfdaeac7f16a/lib-prost_types b/examples/agent_server/target/debug/.fingerprint/prost-types-90edbfdaeac7f16a/lib-prost_types new file mode 100644 index 0000000..1825d7f --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prost-types-90edbfdaeac7f16a/lib-prost_types @@ -0,0 +1 @@ +f6622bb7147d2173 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/prost-types-90edbfdaeac7f16a/lib-prost_types.json b/examples/agent_server/target/debug/.fingerprint/prost-types-90edbfdaeac7f16a/lib-prost_types.json new file mode 100644 index 0000000..2f46675 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/prost-types-90edbfdaeac7f16a/lib-prost_types.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":11234155201055646058,"profile":2225463790103693989,"path":5849091830292602937,"deps":[[7016560594308609179,"prost",false,2552104850442732493]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/prost-types-90edbfdaeac7f16a/dep-lib-prost_types","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/quote-6dff9724e4e81362/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/quote-6dff9724e4e81362/build-script-build-script-build new file mode 100644 index 0000000..e277cb6 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/quote-6dff9724e4e81362/build-script-build-script-build @@ -0,0 +1 @@ +082a9e51a4eec6d9 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/quote-6dff9724e4e81362/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/quote-6dff9724e4e81362/build-script-build-script-build.json new file mode 100644 index 0000000..0576483 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/quote-6dff9724e4e81362/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":5408242616063297496,"profile":2225463790103693989,"path":9113615545337472969,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-6dff9724e4e81362/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/quote-6dff9724e4e81362/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/quote-6dff9724e4e81362/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/quote-6dff9724e4e81362/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/quote-6dff9724e4e81362/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/quote-6dff9724e4e81362/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/quote-6dff9724e4e81362/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/quote-dadf5ecac53f25b4/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/quote-dadf5ecac53f25b4/run-build-script-build-script-build new file mode 100644 index 0000000..b011886 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/quote-dadf5ecac53f25b4/run-build-script-build-script-build @@ -0,0 +1 @@ +75086955f5748b83 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/quote-dadf5ecac53f25b4/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/quote-dadf5ecac53f25b4/run-build-script-build-script-build.json new file mode 100644 index 0000000..af03344 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/quote-dadf5ecac53f25b4/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8949245912927223590,"build_script_build",false,15692492341130439176]],"local":[{"RerunIfChanged":{"output":"debug/build/quote-dadf5ecac53f25b4/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/quote-e96822e57ba4e32c/dep-lib-quote b/examples/agent_server/target/debug/.fingerprint/quote-e96822e57ba4e32c/dep-lib-quote new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/quote-e96822e57ba4e32c/dep-lib-quote differ diff --git a/examples/agent_server/target/debug/.fingerprint/quote-e96822e57ba4e32c/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/quote-e96822e57ba4e32c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/quote-e96822e57ba4e32c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/quote-e96822e57ba4e32c/lib-quote b/examples/agent_server/target/debug/.fingerprint/quote-e96822e57ba4e32c/lib-quote new file mode 100644 index 0000000..fd5b6bf --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/quote-e96822e57ba4e32c/lib-quote @@ -0,0 +1 @@ +15e72d9747dc882f \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/quote-e96822e57ba4e32c/lib-quote.json b/examples/agent_server/target/debug/.fingerprint/quote-e96822e57ba4e32c/lib-quote.json new file mode 100644 index 0000000..c7407c5 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/quote-e96822e57ba4e32c/lib-quote.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":8313845041260779044,"profile":2225463790103693989,"path":4374323683521019497,"deps":[[8949245912927223590,"build_script_build",false,9478798437780097141],[16346726298725429545,"proc_macro2",false,16093586419399039199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-e96822e57ba4e32c/dep-lib-quote","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rand-38aec8bdc7aa18cf/dep-lib-rand b/examples/agent_server/target/debug/.fingerprint/rand-38aec8bdc7aa18cf/dep-lib-rand new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/rand-38aec8bdc7aa18cf/dep-lib-rand differ diff --git a/examples/agent_server/target/debug/.fingerprint/rand-38aec8bdc7aa18cf/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/rand-38aec8bdc7aa18cf/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rand-38aec8bdc7aa18cf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rand-38aec8bdc7aa18cf/lib-rand b/examples/agent_server/target/debug/.fingerprint/rand-38aec8bdc7aa18cf/lib-rand new file mode 100644 index 0000000..d602635 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rand-38aec8bdc7aa18cf/lib-rand @@ -0,0 +1 @@ +8977360756232cfc \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rand-38aec8bdc7aa18cf/lib-rand.json b/examples/agent_server/target/debug/.fingerprint/rand-38aec8bdc7aa18cf/lib-rand.json new file mode 100644 index 0000000..c6a36ae --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rand-38aec8bdc7aa18cf/lib-rand.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"rand_chacha\", \"std\", \"std_rng\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"log\", \"min_const_gen\", \"nightly\", \"rand_chacha\", \"serde\", \"serde1\", \"small_rng\", \"std\", \"std_rng\"]","target":471952389660477126,"profile":2241668132362809309,"path":14488425171214960117,"deps":[[1573238666360410412,"rand_chacha",false,11082421492584443986],[10504718112287328430,"libc",false,2478278040054917594],[18130209639506977569,"rand_core",false,5420134992027055311]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand-38aec8bdc7aa18cf/dep-lib-rand","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rand_chacha-41c62a271b0b02ee/dep-lib-rand_chacha b/examples/agent_server/target/debug/.fingerprint/rand_chacha-41c62a271b0b02ee/dep-lib-rand_chacha new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/rand_chacha-41c62a271b0b02ee/dep-lib-rand_chacha differ diff --git a/examples/agent_server/target/debug/.fingerprint/rand_chacha-41c62a271b0b02ee/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/rand_chacha-41c62a271b0b02ee/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rand_chacha-41c62a271b0b02ee/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rand_chacha-41c62a271b0b02ee/lib-rand_chacha b/examples/agent_server/target/debug/.fingerprint/rand_chacha-41c62a271b0b02ee/lib-rand_chacha new file mode 100644 index 0000000..97ad4f9 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rand_chacha-41c62a271b0b02ee/lib-rand_chacha @@ -0,0 +1 @@ +5270a65ca1abcc99 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rand_chacha-41c62a271b0b02ee/lib-rand_chacha.json b/examples/agent_server/target/debug/.fingerprint/rand_chacha-41c62a271b0b02ee/lib-rand_chacha.json new file mode 100644 index 0000000..45a3d1b --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rand_chacha-41c62a271b0b02ee/lib-rand_chacha.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"std\"]","declared_features":"[\"default\", \"serde\", \"serde1\", \"simd\", \"std\"]","target":15766068575093147603,"profile":2241668132362809309,"path":12724202607452927742,"deps":[[12919011715531272606,"ppv_lite86",false,13396308419111703144],[18130209639506977569,"rand_core",false,5420134992027055311]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_chacha-41c62a271b0b02ee/dep-lib-rand_chacha","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rand_core-ecc3d53c9aa0ff81/dep-lib-rand_core b/examples/agent_server/target/debug/.fingerprint/rand_core-ecc3d53c9aa0ff81/dep-lib-rand_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/rand_core-ecc3d53c9aa0ff81/dep-lib-rand_core differ diff --git a/examples/agent_server/target/debug/.fingerprint/rand_core-ecc3d53c9aa0ff81/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/rand_core-ecc3d53c9aa0ff81/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rand_core-ecc3d53c9aa0ff81/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rand_core-ecc3d53c9aa0ff81/lib-rand_core b/examples/agent_server/target/debug/.fingerprint/rand_core-ecc3d53c9aa0ff81/lib-rand_core new file mode 100644 index 0000000..a5056c6 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rand_core-ecc3d53c9aa0ff81/lib-rand_core @@ -0,0 +1 @@ +cff46fe20e30384b \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rand_core-ecc3d53c9aa0ff81/lib-rand_core.json b/examples/agent_server/target/debug/.fingerprint/rand_core-ecc3d53c9aa0ff81/lib-rand_core.json new file mode 100644 index 0000000..4149b93 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rand_core-ecc3d53c9aa0ff81/lib-rand_core.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"getrandom\", \"std\"]","declared_features":"[\"alloc\", \"getrandom\", \"serde\", \"serde1\", \"std\"]","target":13770603672348587087,"profile":2241668132362809309,"path":11522332321693764964,"deps":[[11023519408959114924,"getrandom",false,13262463255475669848]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rand_core-ecc3d53c9aa0ff81/dep-lib-rand_core","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/regex-20a220d85c43336c/dep-lib-regex b/examples/agent_server/target/debug/.fingerprint/regex-20a220d85c43336c/dep-lib-regex new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/regex-20a220d85c43336c/dep-lib-regex differ diff --git a/examples/agent_server/target/debug/.fingerprint/regex-20a220d85c43336c/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/regex-20a220d85c43336c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/regex-20a220d85c43336c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/regex-20a220d85c43336c/lib-regex b/examples/agent_server/target/debug/.fingerprint/regex-20a220d85c43336c/lib-regex new file mode 100644 index 0000000..51bbb75 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/regex-20a220d85c43336c/lib-regex @@ -0,0 +1 @@ +5604f076211de12d \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/regex-20a220d85c43336c/lib-regex.json b/examples/agent_server/target/debug/.fingerprint/regex-20a220d85c43336c/lib-regex.json new file mode 100644 index 0000000..c425deb --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/regex-20a220d85c43336c/lib-regex.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"std\", \"unicode-bool\"]","declared_features":"[\"default\", \"logging\", \"pattern\", \"perf\", \"perf-backtrack\", \"perf-cache\", \"perf-dfa\", \"perf-dfa-full\", \"perf-inline\", \"perf-literal\", \"perf-onepass\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unstable\", \"use_std\"]","target":5796931310894148030,"profile":1599524294556100640,"path":8779565663571126209,"deps":[[1731763078628082640,"regex_automata",false,6143330226510038470],[1853952367769002784,"regex_syntax",false,595450239762448144]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-20a220d85c43336c/dep-lib-regex","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/regex-automata-93cb0ba6abb0ad72/dep-lib-regex_automata b/examples/agent_server/target/debug/.fingerprint/regex-automata-93cb0ba6abb0ad72/dep-lib-regex_automata new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/regex-automata-93cb0ba6abb0ad72/dep-lib-regex_automata differ diff --git a/examples/agent_server/target/debug/.fingerprint/regex-automata-93cb0ba6abb0ad72/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/regex-automata-93cb0ba6abb0ad72/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/regex-automata-93cb0ba6abb0ad72/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/regex-automata-93cb0ba6abb0ad72/lib-regex_automata b/examples/agent_server/target/debug/.fingerprint/regex-automata-93cb0ba6abb0ad72/lib-regex_automata new file mode 100644 index 0000000..50b4ef7 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/regex-automata-93cb0ba6abb0ad72/lib-regex_automata @@ -0,0 +1 @@ +c6050dd14a7e4155 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/regex-automata-93cb0ba6abb0ad72/lib-regex_automata.json b/examples/agent_server/target/debug/.fingerprint/regex-automata-93cb0ba6abb0ad72/lib-regex_automata.json new file mode 100644 index 0000000..9376111 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/regex-automata-93cb0ba6abb0ad72/lib-regex_automata.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"meta\", \"nfa-pikevm\", \"nfa-thompson\", \"std\", \"syntax\", \"unicode-bool\"]","declared_features":"[\"alloc\", \"default\", \"dfa\", \"dfa-build\", \"dfa-onepass\", \"dfa-search\", \"hybrid\", \"internal-instrument\", \"internal-instrument-pikevm\", \"logging\", \"meta\", \"nfa\", \"nfa-backtrack\", \"nfa-pikevm\", \"nfa-thompson\", \"perf\", \"perf-inline\", \"perf-literal\", \"perf-literal-multisubstring\", \"perf-literal-substring\", \"std\", \"syntax\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unicode-word-boundary\"]","target":4726246767843925232,"profile":1599524294556100640,"path":11430431302939492796,"deps":[[1853952367769002784,"regex_syntax",false,595450239762448144]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-automata-93cb0ba6abb0ad72/dep-lib-regex_automata","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/regex-automata-cdbc55204d852f13/dep-lib-regex_automata b/examples/agent_server/target/debug/.fingerprint/regex-automata-cdbc55204d852f13/dep-lib-regex_automata new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/regex-automata-cdbc55204d852f13/dep-lib-regex_automata differ diff --git a/examples/agent_server/target/debug/.fingerprint/regex-automata-cdbc55204d852f13/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/regex-automata-cdbc55204d852f13/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/regex-automata-cdbc55204d852f13/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/regex-automata-cdbc55204d852f13/lib-regex_automata b/examples/agent_server/target/debug/.fingerprint/regex-automata-cdbc55204d852f13/lib-regex_automata new file mode 100644 index 0000000..caec454 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/regex-automata-cdbc55204d852f13/lib-regex_automata @@ -0,0 +1 @@ +b91c1e4352dee7fb \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/regex-automata-cdbc55204d852f13/lib-regex_automata.json b/examples/agent_server/target/debug/.fingerprint/regex-automata-cdbc55204d852f13/lib-regex_automata.json new file mode 100644 index 0000000..270c6c2 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/regex-automata-cdbc55204d852f13/lib-regex_automata.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"dfa-build\", \"dfa-search\", \"nfa-thompson\", \"std\", \"syntax\"]","declared_features":"[\"alloc\", \"default\", \"dfa\", \"dfa-build\", \"dfa-onepass\", \"dfa-search\", \"hybrid\", \"internal-instrument\", \"internal-instrument-pikevm\", \"logging\", \"meta\", \"nfa\", \"nfa-backtrack\", \"nfa-pikevm\", \"nfa-thompson\", \"perf\", \"perf-inline\", \"perf-literal\", \"perf-literal-multisubstring\", \"perf-literal-substring\", \"std\", \"syntax\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unicode-word-boundary\"]","target":4726246767843925232,"profile":10712413002018579216,"path":11430431302939492796,"deps":[[1853952367769002784,"regex_syntax",false,12000970121569823828]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-automata-cdbc55204d852f13/dep-lib-regex_automata","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/regex-syntax-84d0a9d008d8d4a0/dep-lib-regex_syntax b/examples/agent_server/target/debug/.fingerprint/regex-syntax-84d0a9d008d8d4a0/dep-lib-regex_syntax new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/regex-syntax-84d0a9d008d8d4a0/dep-lib-regex_syntax differ diff --git a/examples/agent_server/target/debug/.fingerprint/regex-syntax-84d0a9d008d8d4a0/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/regex-syntax-84d0a9d008d8d4a0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/regex-syntax-84d0a9d008d8d4a0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/regex-syntax-84d0a9d008d8d4a0/lib-regex_syntax b/examples/agent_server/target/debug/.fingerprint/regex-syntax-84d0a9d008d8d4a0/lib-regex_syntax new file mode 100644 index 0000000..b649803 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/regex-syntax-84d0a9d008d8d4a0/lib-regex_syntax @@ -0,0 +1 @@ +103f7696d6764308 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/regex-syntax-84d0a9d008d8d4a0/lib-regex_syntax.json b/examples/agent_server/target/debug/.fingerprint/regex-syntax-84d0a9d008d8d4a0/lib-regex_syntax.json new file mode 100644 index 0000000..c4d63d5 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/regex-syntax-84d0a9d008d8d4a0/lib-regex_syntax.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"std\", \"unicode-bool\"]","declared_features":"[\"arbitrary\", \"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","target":742186494246220192,"profile":1599524294556100640,"path":1620906117567836149,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-syntax-84d0a9d008d8d4a0/dep-lib-regex_syntax","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/regex-syntax-d33dbdaf9239f0f0/dep-lib-regex_syntax b/examples/agent_server/target/debug/.fingerprint/regex-syntax-d33dbdaf9239f0f0/dep-lib-regex_syntax new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/regex-syntax-d33dbdaf9239f0f0/dep-lib-regex_syntax differ diff --git a/examples/agent_server/target/debug/.fingerprint/regex-syntax-d33dbdaf9239f0f0/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/regex-syntax-d33dbdaf9239f0f0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/regex-syntax-d33dbdaf9239f0f0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/regex-syntax-d33dbdaf9239f0f0/lib-regex_syntax b/examples/agent_server/target/debug/.fingerprint/regex-syntax-d33dbdaf9239f0f0/lib-regex_syntax new file mode 100644 index 0000000..deee75b --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/regex-syntax-d33dbdaf9239f0f0/lib-regex_syntax @@ -0,0 +1 @@ +54ec3ee0bd028ca6 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/regex-syntax-d33dbdaf9239f0f0/lib-regex_syntax.json b/examples/agent_server/target/debug/.fingerprint/regex-syntax-d33dbdaf9239f0f0/lib-regex_syntax.json new file mode 100644 index 0000000..ed50950 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/regex-syntax-d33dbdaf9239f0f0/lib-regex_syntax.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"std\"]","declared_features":"[\"arbitrary\", \"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","target":742186494246220192,"profile":10712413002018579216,"path":1620906117567836149,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-syntax-d33dbdaf9239f0f0/dep-lib-regex_syntax","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/ring-09e0913fe4ae7a97/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/ring-09e0913fe4ae7a97/run-build-script-build-script-build new file mode 100644 index 0000000..28a8906 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/ring-09e0913fe4ae7a97/run-build-script-build-script-build @@ -0,0 +1 @@ +dbdd5b07c99a247a \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/ring-09e0913fe4ae7a97/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/ring-09e0913fe4ae7a97/run-build-script-build-script-build.json new file mode 100644 index 0000000..dddf31e --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/ring-09e0913fe4ae7a97/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[5491919304041016563,"build_script_build",false,8945567724232566379]],"local":[{"RerunIfChanged":{"output":"debug/build/ring-09e0913fe4ae7a97/output","paths":["crypto/poly1305/poly1305.c","crypto/poly1305/poly1305_arm.c","crypto/poly1305/poly1305_arm_asm.S","crypto/cipher/asm/chacha20_poly1305_armv8.pl","crypto/cipher/asm/chacha20_poly1305_x86_64.pl","crypto/cpu_intel.c","crypto/chacha/asm/chacha-x86_64.pl","crypto/chacha/asm/chacha-armv4.pl","crypto/chacha/asm/chacha-armv8.pl","crypto/chacha/asm/chacha-x86.pl","crypto/curve25519/curve25519.c","crypto/curve25519/curve25519_tables.h","crypto/curve25519/asm/x25519-asm-arm.S","crypto/curve25519/curve25519_64_adx.c","crypto/curve25519/internal.h","crypto/crypto.c","crypto/constant_time_test.c","crypto/fipsmodule/aes/asm/ghash-neon-armv8.pl","crypto/fipsmodule/aes/asm/aesv8-armx.pl","crypto/fipsmodule/aes/asm/bsaes-armv7.pl","crypto/fipsmodule/aes/asm/vpaes-x86.pl","crypto/fipsmodule/aes/asm/aesni-x86.pl","crypto/fipsmodule/aes/asm/vpaes-x86_64.pl","crypto/fipsmodule/aes/asm/ghash-x86.pl","crypto/fipsmodule/aes/asm/aesni-gcm-x86_64.pl","crypto/fipsmodule/aes/asm/vpaes-armv8.pl","crypto/fipsmodule/aes/asm/aesv8-gcm-armv8.pl","crypto/fipsmodule/aes/asm/aes-gcm-avx2-x86_64.pl","crypto/fipsmodule/aes/asm/aesni-x86_64.pl","crypto/fipsmodule/aes/asm/ghash-armv4.pl","crypto/fipsmodule/aes/asm/vpaes-armv7.pl","crypto/fipsmodule/aes/asm/ghash-x86_64.pl","crypto/fipsmodule/aes/asm/ghashv8-armx.pl","crypto/fipsmodule/aes/aes_nohw.c","crypto/fipsmodule/bn/montgomery_inv.c","crypto/fipsmodule/bn/asm/x86_64-mont5.pl","crypto/fipsmodule/bn/asm/armv8-mont.pl","crypto/fipsmodule/bn/asm/armv4-mont.pl","crypto/fipsmodule/bn/asm/x86-mont.pl","crypto/fipsmodule/bn/asm/x86_64-mont.pl","crypto/fipsmodule/bn/montgomery.c","crypto/fipsmodule/bn/internal.h","crypto/fipsmodule/ec/ecp_nistz384.inl","crypto/fipsmodule/ec/p256-nistz-table.h","crypto/fipsmodule/ec/util.h","crypto/fipsmodule/ec/p256-nistz.c","crypto/fipsmodule/ec/p256_shared.h","crypto/fipsmodule/ec/ecp_nistz.c","crypto/fipsmodule/ec/gfp_p256.c","crypto/fipsmodule/ec/p256_table.h","crypto/fipsmodule/ec/p256-nistz.h","crypto/fipsmodule/ec/asm/p256-x86_64-asm.pl","crypto/fipsmodule/ec/asm/p256-armv8-asm.pl","crypto/fipsmodule/ec/ecp_nistz384.h","crypto/fipsmodule/ec/gfp_p384.c","crypto/fipsmodule/ec/p256.c","crypto/fipsmodule/ec/ecp_nistz.h","crypto/fipsmodule/sha/asm/sha256-armv4.pl","crypto/fipsmodule/sha/asm/sha512-x86_64.pl","crypto/fipsmodule/sha/asm/sha512-armv8.pl","crypto/fipsmodule/sha/asm/sha512-armv4.pl","crypto/perlasm/x86asm.pl","crypto/perlasm/arm-xlate.pl","crypto/perlasm/x86nasm.pl","crypto/perlasm/x86_64-xlate.pl","crypto/perlasm/x86gas.pl","crypto/mem.c","crypto/limbs/limbs.h","crypto/limbs/limbs.c","crypto/limbs/limbs.inl","crypto/internal.h","include/ring-core/base.h","include/ring-core/type_check.h","include/ring-core/target.h","include/ring-core/mem.h","include/ring-core/asm_base.h","include/ring-core/aes.h","include/ring-core/check.h","third_party/fiat/curve25519_64_adx.h","third_party/fiat/curve25519_64.h","third_party/fiat/curve25519_32.h","third_party/fiat/p256_64.h","third_party/fiat/p256_64_msvc.h","third_party/fiat/LICENSE","third_party/fiat/curve25519_64_msvc.h","third_party/fiat/asm/fiat_curve25519_adx_mul.S","third_party/fiat/asm/fiat_curve25519_adx_square.S","third_party/fiat/p256_32.h"]}},{"RerunIfEnvChanged":{"var":"CARGO_MANIFEST_DIR","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_PKG_NAME","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_PKG_VERSION_MAJOR","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_PKG_VERSION_MINOR","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_PKG_VERSION_PATCH","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_PKG_VERSION_PRE","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_MANIFEST_LINKS","val":null}},{"RerunIfEnvChanged":{"var":"RING_PREGENERATE_ASM","val":null}},{"RerunIfEnvChanged":{"var":"OUT_DIR","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_CFG_TARGET_ARCH","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_CFG_TARGET_OS","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_CFG_TARGET_ENV","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_CFG_TARGET_ENDIAN","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CC_ENABLE_DEBUG_OUTPUT","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64-unknown-linux-gnu","val":null}},{"RerunIfEnvChanged":{"var":"CC_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CC","val":null}},{"RerunIfEnvChanged":{"var":"CC","val":null}},{"RerunIfEnvChanged":{"var":"CC_ENABLE_DEBUG_OUTPUT","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64_unknown_linux_gnu","val":null}},{"RerunIfEnvChanged":{"var":"CFLAGS_x86_64-unknown-linux-gnu","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/ring-62399fc5a14562d8/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/ring-62399fc5a14562d8/build-script-build-script-build new file mode 100644 index 0000000..ddab735 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/ring-62399fc5a14562d8/build-script-build-script-build @@ -0,0 +1 @@ +6be61415730a257c \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/ring-62399fc5a14562d8/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/ring-62399fc5a14562d8/build-script-build-script-build.json new file mode 100644 index 0000000..d0fc588 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/ring-62399fc5a14562d8/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"dev_urandom_fallback\"]","declared_features":"[\"alloc\", \"default\", \"dev_urandom_fallback\", \"less-safe-getrandom-custom-or-rdrand\", \"less-safe-getrandom-espidf\", \"slow_tests\", \"std\", \"test_logging\", \"unstable-testing-arm-no-hw\", \"unstable-testing-arm-no-neon\", \"wasm32_unknown_unknown_js\"]","target":5408242616063297496,"profile":2225463790103693989,"path":6359618956665179620,"deps":[[2330706707916462002,"cc",false,12248446325669119727]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ring-62399fc5a14562d8/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/ring-62399fc5a14562d8/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/ring-62399fc5a14562d8/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/ring-62399fc5a14562d8/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/ring-62399fc5a14562d8/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/ring-62399fc5a14562d8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/ring-62399fc5a14562d8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/ring-cb927418caf7d5b2/dep-lib-ring b/examples/agent_server/target/debug/.fingerprint/ring-cb927418caf7d5b2/dep-lib-ring new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/ring-cb927418caf7d5b2/dep-lib-ring differ diff --git a/examples/agent_server/target/debug/.fingerprint/ring-cb927418caf7d5b2/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/ring-cb927418caf7d5b2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/ring-cb927418caf7d5b2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/ring-cb927418caf7d5b2/lib-ring b/examples/agent_server/target/debug/.fingerprint/ring-cb927418caf7d5b2/lib-ring new file mode 100644 index 0000000..57e0c7e --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/ring-cb927418caf7d5b2/lib-ring @@ -0,0 +1 @@ +6da76c064265df29 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/ring-cb927418caf7d5b2/lib-ring.json b/examples/agent_server/target/debug/.fingerprint/ring-cb927418caf7d5b2/lib-ring.json new file mode 100644 index 0000000..e7e150a --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/ring-cb927418caf7d5b2/lib-ring.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"dev_urandom_fallback\"]","declared_features":"[\"alloc\", \"default\", \"dev_urandom_fallback\", \"less-safe-getrandom-custom-or-rdrand\", \"less-safe-getrandom-espidf\", \"slow_tests\", \"std\", \"test_logging\", \"unstable-testing-arm-no-hw\", \"unstable-testing-arm-no-neon\", \"wasm32_unknown_unknown_js\"]","target":13947150742743679355,"profile":2241668132362809309,"path":6926717436266054018,"deps":[[5491919304041016563,"build_script_build",false,8801329759991356891],[7667230146095136825,"cfg_if",false,1090425733875617541],[8995469080876806959,"untrusted",false,5889143542368175753],[11023519408959114924,"getrandom",false,13262463255475669848]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ring-cb927418caf7d5b2/dep-lib-ring","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustix-0b94ba85310e386f/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/rustix-0b94ba85310e386f/run-build-script-build-script-build new file mode 100644 index 0000000..22fc0be --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustix-0b94ba85310e386f/run-build-script-build-script-build @@ -0,0 +1 @@ +dc89986515c5b107 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustix-0b94ba85310e386f/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/rustix-0b94ba85310e386f/run-build-script-build-script-build.json new file mode 100644 index 0000000..89b72d6 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustix-0b94ba85310e386f/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[18407532691439737072,"build_script_build",false,7036838926041312897]],"local":[{"RerunIfChanged":{"output":"debug/build/rustix-0b94ba85310e386f/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_CFG_RUSTIX_USE_LIBC","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_FEATURE_USE_LIBC","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_FEATURE_RUSTC_DEP_OF_STD","val":null}},{"RerunIfEnvChanged":{"var":"CARGO_CFG_MIRI","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustix-12abc008e3af5a98/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/rustix-12abc008e3af5a98/build-script-build-script-build new file mode 100644 index 0000000..f035be8 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustix-12abc008e3af5a98/build-script-build-script-build @@ -0,0 +1 @@ +816e5570b8dfa761 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustix-12abc008e3af5a98/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/rustix-12abc008e3af5a98/build-script-build-script-build.json new file mode 100644 index 0000000..7978895 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustix-12abc008e3af5a98/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"fs\", \"std\"]","declared_features":"[\"all-apis\", \"alloc\", \"core\", \"default\", \"event\", \"fs\", \"io_uring\", \"libc\", \"libc_errno\", \"linux_4_11\", \"linux_5_1\", \"linux_5_11\", \"linux_latest\", \"mm\", \"mount\", \"net\", \"param\", \"pipe\", \"process\", \"pty\", \"rand\", \"runtime\", \"rustc-dep-of-std\", \"rustc-std-workspace-alloc\", \"shm\", \"std\", \"stdio\", \"system\", \"termios\", \"thread\", \"time\", \"try_close\", \"use-explicitly-provided-auxv\", \"use-libc\", \"use-libc-auxv\"]","target":5408242616063297496,"profile":4328159526104585339,"path":1119433835103640200,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rustix-12abc008e3af5a98/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustix-12abc008e3af5a98/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/rustix-12abc008e3af5a98/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/rustix-12abc008e3af5a98/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/rustix-12abc008e3af5a98/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/rustix-12abc008e3af5a98/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustix-12abc008e3af5a98/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustix-3c830ab66266c07c/dep-lib-rustix b/examples/agent_server/target/debug/.fingerprint/rustix-3c830ab66266c07c/dep-lib-rustix new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/rustix-3c830ab66266c07c/dep-lib-rustix differ diff --git a/examples/agent_server/target/debug/.fingerprint/rustix-3c830ab66266c07c/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/rustix-3c830ab66266c07c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustix-3c830ab66266c07c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustix-3c830ab66266c07c/lib-rustix b/examples/agent_server/target/debug/.fingerprint/rustix-3c830ab66266c07c/lib-rustix new file mode 100644 index 0000000..aaa262f --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustix-3c830ab66266c07c/lib-rustix @@ -0,0 +1 @@ +ef58ff829527c7ab \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustix-3c830ab66266c07c/lib-rustix.json b/examples/agent_server/target/debug/.fingerprint/rustix-3c830ab66266c07c/lib-rustix.json new file mode 100644 index 0000000..7390d69 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustix-3c830ab66266c07c/lib-rustix.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"fs\", \"std\"]","declared_features":"[\"all-apis\", \"alloc\", \"core\", \"default\", \"event\", \"fs\", \"io_uring\", \"libc\", \"libc_errno\", \"linux_4_11\", \"linux_5_1\", \"linux_5_11\", \"linux_latest\", \"mm\", \"mount\", \"net\", \"param\", \"pipe\", \"process\", \"pty\", \"rand\", \"runtime\", \"rustc-dep-of-std\", \"rustc-std-workspace-alloc\", \"shm\", \"std\", \"stdio\", \"system\", \"termios\", \"thread\", \"time\", \"try_close\", \"use-explicitly-provided-auxv\", \"use-libc\", \"use-libc-auxv\"]","target":16221545317719767766,"profile":4328159526104585339,"path":1928913794166448437,"deps":[[1494862380562376909,"linux_raw_sys",false,17794171145597508537],[5127344325563758221,"bitflags",false,16006667881994202344],[18407532691439737072,"build_script_build",false,554440924832762332]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rustix-3c830ab66266c07c/dep-lib-rustix","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-3666a0c897a5836f/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/rustls-3666a0c897a5836f/run-build-script-build-script-build new file mode 100644 index 0000000..487a85d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustls-3666a0c897a5836f/run-build-script-build-script-build @@ -0,0 +1 @@ +d8d65476dc2181a2 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-3666a0c897a5836f/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/rustls-3666a0c897a5836f/run-build-script-build-script-build.json new file mode 100644 index 0000000..19612e4 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustls-3666a0c897a5836f/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[5491919304041016563,"build_script_build",false,8801329759991356891],[17020669599254637850,"build_script_build",false,12676600900308607715]],"local":[{"Precalculated":"0.22.4"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-92851e6ae256ebdb/dep-lib-rustls b/examples/agent_server/target/debug/.fingerprint/rustls-92851e6ae256ebdb/dep-lib-rustls new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/rustls-92851e6ae256ebdb/dep-lib-rustls differ diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-92851e6ae256ebdb/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/rustls-92851e6ae256ebdb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustls-92851e6ae256ebdb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-92851e6ae256ebdb/lib-rustls b/examples/agent_server/target/debug/.fingerprint/rustls-92851e6ae256ebdb/lib-rustls new file mode 100644 index 0000000..9300303 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustls-92851e6ae256ebdb/lib-rustls @@ -0,0 +1 @@ +5084f7d539c041d0 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-92851e6ae256ebdb/lib-rustls.json b/examples/agent_server/target/debug/.fingerprint/rustls-92851e6ae256ebdb/lib-rustls.json new file mode 100644 index 0000000..b0d0342 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustls-92851e6ae256ebdb/lib-rustls.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"log\", \"logging\", \"ring\", \"tls12\"]","declared_features":"[\"aws_lc_rs\", \"default\", \"log\", \"logging\", \"read_buf\", \"ring\", \"rustversion\", \"tls12\"]","target":4244986261372225136,"profile":2241668132362809309,"path":17292038967979858181,"deps":[[5491919304041016563,"ring",false,3017241609611552621],[6971842703803247244,"zeroize",false,18046558578773603969],[7413599186401546189,"pki_types",false,11378963077967121345],[12989347533245466967,"webpki",false,15826158817107772426],[17003143334332120809,"subtle",false,770394119222279151],[17020669599254637850,"build_script_build",false,11709677736901793496],[17353235279385985750,"log",false,17186040896692898078]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rustls-92851e6ae256ebdb/dep-lib-rustls","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-fb47f5810de6553f/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/rustls-fb47f5810de6553f/build-script-build-script-build new file mode 100644 index 0000000..e60fc39 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustls-fb47f5810de6553f/build-script-build-script-build @@ -0,0 +1 @@ +e3a24af65a55ecaf \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-fb47f5810de6553f/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/rustls-fb47f5810de6553f/build-script-build-script-build.json new file mode 100644 index 0000000..b762bc0 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustls-fb47f5810de6553f/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"log\", \"logging\", \"ring\", \"tls12\"]","declared_features":"[\"aws_lc_rs\", \"default\", \"log\", \"logging\", \"read_buf\", \"ring\", \"rustversion\", \"tls12\"]","target":5408242616063297496,"profile":2225463790103693989,"path":5230622464342102325,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rustls-fb47f5810de6553f/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-fb47f5810de6553f/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/rustls-fb47f5810de6553f/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/rustls-fb47f5810de6553f/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-fb47f5810de6553f/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/rustls-fb47f5810de6553f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustls-fb47f5810de6553f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-pki-types-bfead8a00baeb2a5/dep-lib-rustls_pki_types b/examples/agent_server/target/debug/.fingerprint/rustls-pki-types-bfead8a00baeb2a5/dep-lib-rustls_pki_types new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/rustls-pki-types-bfead8a00baeb2a5/dep-lib-rustls_pki_types differ diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-pki-types-bfead8a00baeb2a5/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/rustls-pki-types-bfead8a00baeb2a5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustls-pki-types-bfead8a00baeb2a5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-pki-types-bfead8a00baeb2a5/lib-rustls_pki_types b/examples/agent_server/target/debug/.fingerprint/rustls-pki-types-bfead8a00baeb2a5/lib-rustls_pki_types new file mode 100644 index 0000000..0129fb0 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustls-pki-types-bfead8a00baeb2a5/lib-rustls_pki_types @@ -0,0 +1 @@ +c10b848ea132ea9d \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-pki-types-bfead8a00baeb2a5/lib-rustls_pki_types.json b/examples/agent_server/target/debug/.fingerprint/rustls-pki-types-bfead8a00baeb2a5/lib-rustls_pki_types.json new file mode 100644 index 0000000..e3fde72 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustls-pki-types-bfead8a00baeb2a5/lib-rustls_pki_types.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\", \"web\", \"web-time\"]","target":10881799483833257506,"profile":12413679189504964935,"path":17790786447657399250,"deps":[[6971842703803247244,"zeroize",false,18046558578773603969]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rustls-pki-types-bfead8a00baeb2a5/dep-lib-rustls_pki_types","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-webpki-52cdf20fac36380a/dep-lib-webpki b/examples/agent_server/target/debug/.fingerprint/rustls-webpki-52cdf20fac36380a/dep-lib-webpki new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/rustls-webpki-52cdf20fac36380a/dep-lib-webpki differ diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-webpki-52cdf20fac36380a/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/rustls-webpki-52cdf20fac36380a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustls-webpki-52cdf20fac36380a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-webpki-52cdf20fac36380a/lib-webpki b/examples/agent_server/target/debug/.fingerprint/rustls-webpki-52cdf20fac36380a/lib-webpki new file mode 100644 index 0000000..f9b9f97 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustls-webpki-52cdf20fac36380a/lib-webpki @@ -0,0 +1 @@ +0a04a0f497cfa1db \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/rustls-webpki-52cdf20fac36380a/lib-webpki.json b/examples/agent_server/target/debug/.fingerprint/rustls-webpki-52cdf20fac36380a/lib-webpki.json new file mode 100644 index 0000000..417a15a --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/rustls-webpki-52cdf20fac36380a/lib-webpki.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"ring\", \"std\"]","declared_features":"[\"alloc\", \"aws_lc_rs\", \"default\", \"ring\", \"std\"]","target":5054897795206437336,"profile":2241668132362809309,"path":8413739000054586022,"deps":[[5491919304041016563,"ring",false,3017241609611552621],[7413599186401546189,"pki_types",false,11378963077967121345],[8995469080876806959,"untrusted",false,5889143542368175753]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rustls-webpki-52cdf20fac36380a/dep-lib-webpki","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/ryu-1f4bd1732b57412d/dep-lib-ryu b/examples/agent_server/target/debug/.fingerprint/ryu-1f4bd1732b57412d/dep-lib-ryu new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/ryu-1f4bd1732b57412d/dep-lib-ryu differ diff --git a/examples/agent_server/target/debug/.fingerprint/ryu-1f4bd1732b57412d/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/ryu-1f4bd1732b57412d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/ryu-1f4bd1732b57412d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/ryu-1f4bd1732b57412d/lib-ryu b/examples/agent_server/target/debug/.fingerprint/ryu-1f4bd1732b57412d/lib-ryu new file mode 100644 index 0000000..88c8e69 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/ryu-1f4bd1732b57412d/lib-ryu @@ -0,0 +1 @@ +18a91c3a9f5896ee \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/ryu-1f4bd1732b57412d/lib-ryu.json b/examples/agent_server/target/debug/.fingerprint/ryu-1f4bd1732b57412d/lib-ryu.json new file mode 100644 index 0000000..07a737f --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/ryu-1f4bd1732b57412d/lib-ryu.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"no-panic\", \"small\"]","target":13763186580977333631,"profile":2241668132362809309,"path":7143723424407844900,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/ryu-1f4bd1732b57412d/dep-lib-ryu","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/scopeguard-9231b86801b00f36/dep-lib-scopeguard b/examples/agent_server/target/debug/.fingerprint/scopeguard-9231b86801b00f36/dep-lib-scopeguard new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/scopeguard-9231b86801b00f36/dep-lib-scopeguard differ diff --git a/examples/agent_server/target/debug/.fingerprint/scopeguard-9231b86801b00f36/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/scopeguard-9231b86801b00f36/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/scopeguard-9231b86801b00f36/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/scopeguard-9231b86801b00f36/lib-scopeguard b/examples/agent_server/target/debug/.fingerprint/scopeguard-9231b86801b00f36/lib-scopeguard new file mode 100644 index 0000000..fa65721 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/scopeguard-9231b86801b00f36/lib-scopeguard @@ -0,0 +1 @@ +59a7146a6b70850d \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/scopeguard-9231b86801b00f36/lib-scopeguard.json b/examples/agent_server/target/debug/.fingerprint/scopeguard-9231b86801b00f36/lib-scopeguard.json new file mode 100644 index 0000000..98cb95c --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/scopeguard-9231b86801b00f36/lib-scopeguard.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"default\", \"use_std\"]","target":3556356971060988614,"profile":2241668132362809309,"path":15505004454396245588,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/scopeguard-9231b86801b00f36/dep-lib-scopeguard","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde-047fb28ec31c7b7d/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/serde-047fb28ec31c7b7d/build-script-build-script-build new file mode 100644 index 0000000..c7b3785 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde-047fb28ec31c7b7d/build-script-build-script-build @@ -0,0 +1 @@ +5e4bc60bf995a849 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde-047fb28ec31c7b7d/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/serde-047fb28ec31c7b7d/build-script-build-script-build.json new file mode 100644 index 0000000..4c088c1 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde-047fb28ec31c7b7d/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"derive\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":2225463790103693989,"path":6848595033107205214,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-047fb28ec31c7b7d/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde-047fb28ec31c7b7d/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/serde-047fb28ec31c7b7d/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/serde-047fb28ec31c7b7d/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/serde-047fb28ec31c7b7d/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/serde-047fb28ec31c7b7d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde-047fb28ec31c7b7d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde-2b916ae5b6dcb334/dep-lib-serde b/examples/agent_server/target/debug/.fingerprint/serde-2b916ae5b6dcb334/dep-lib-serde new file mode 100644 index 0000000..40f7671 Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/serde-2b916ae5b6dcb334/dep-lib-serde differ diff --git a/examples/agent_server/target/debug/.fingerprint/serde-2b916ae5b6dcb334/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/serde-2b916ae5b6dcb334/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde-2b916ae5b6dcb334/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde-2b916ae5b6dcb334/lib-serde b/examples/agent_server/target/debug/.fingerprint/serde-2b916ae5b6dcb334/lib-serde new file mode 100644 index 0000000..481ee05 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde-2b916ae5b6dcb334/lib-serde @@ -0,0 +1 @@ +3d4459b2ec1b79b4 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde-2b916ae5b6dcb334/lib-serde.json b/examples/agent_server/target/debug/.fingerprint/serde-2b916ae5b6dcb334/lib-serde.json new file mode 100644 index 0000000..4ec3b4b --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde-2b916ae5b6dcb334/lib-serde.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"derive\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":11327258112168116673,"profile":2241668132362809309,"path":13370965331263541452,"deps":[[6557439603276904804,"build_script_build",false,13282628646622384334],[11029742160753049355,"serde_core",false,10961053545634911783],[13312204359551525516,"serde_derive",false,15386235384544760052]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-2b916ae5b6dcb334/dep-lib-serde","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde-46367230ef002103/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/serde-46367230ef002103/run-build-script-build-script-build new file mode 100644 index 0000000..823aff1 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde-46367230ef002103/run-build-script-build-script-build @@ -0,0 +1 @@ +ced05a35616055b8 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde-46367230ef002103/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/serde-46367230ef002103/run-build-script-build-script-build.json new file mode 100644 index 0000000..24a6cc3 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde-46367230ef002103/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6557439603276904804,"build_script_build",false,5307657057733069662]],"local":[{"RerunIfChanged":{"output":"debug/build/serde-46367230ef002103/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_core-bbbf2ec4bd875055/dep-lib-serde_core b/examples/agent_server/target/debug/.fingerprint/serde_core-bbbf2ec4bd875055/dep-lib-serde_core new file mode 100644 index 0000000..b0f0561 Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/serde_core-bbbf2ec4bd875055/dep-lib-serde_core differ diff --git a/examples/agent_server/target/debug/.fingerprint/serde_core-bbbf2ec4bd875055/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/serde_core-bbbf2ec4bd875055/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_core-bbbf2ec4bd875055/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_core-bbbf2ec4bd875055/lib-serde_core b/examples/agent_server/target/debug/.fingerprint/serde_core-bbbf2ec4bd875055/lib-serde_core new file mode 100644 index 0000000..4159d82 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_core-bbbf2ec4bd875055/lib-serde_core @@ -0,0 +1 @@ +27d69a27207c1d98 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_core-bbbf2ec4bd875055/lib-serde_core.json b/examples/agent_server/target/debug/.fingerprint/serde_core-bbbf2ec4bd875055/lib-serde_core.json new file mode 100644 index 0000000..297569b --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_core-bbbf2ec4bd875055/lib-serde_core.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":6810695588070812737,"profile":2241668132362809309,"path":14498267722440875556,"deps":[[11029742160753049355,"build_script_build",false,2928530516488461517]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_core-bbbf2ec4bd875055/dep-lib-serde_core","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_core-cbe2b4be7c517a18/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/serde_core-cbe2b4be7c517a18/run-build-script-build-script-build new file mode 100644 index 0000000..165d8b4 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_core-cbe2b4be7c517a18/run-build-script-build-script-build @@ -0,0 +1 @@ +cd9c2f1dfd3aa428 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_core-cbe2b4be7c517a18/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/serde_core-cbe2b4be7c517a18/run-build-script-build-script-build.json new file mode 100644 index 0000000..345fdc5 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_core-cbe2b4be7c517a18/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[11029742160753049355,"build_script_build",false,6068821977768070130]],"local":[{"RerunIfChanged":{"output":"debug/build/serde_core-cbe2b4be7c517a18/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_core-e613c711ddfe8493/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/serde_core-e613c711ddfe8493/build-script-build-script-build new file mode 100644 index 0000000..0d72554 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_core-e613c711ddfe8493/build-script-build-script-build @@ -0,0 +1 @@ +f20bf34d6fc93854 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_core-e613c711ddfe8493/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/serde_core-e613c711ddfe8493/build-script-build-script-build.json new file mode 100644 index 0000000..822863a --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_core-e613c711ddfe8493/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":2225463790103693989,"path":9660380766025721039,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_core-e613c711ddfe8493/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_core-e613c711ddfe8493/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/serde_core-e613c711ddfe8493/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/serde_core-e613c711ddfe8493/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/serde_core-e613c711ddfe8493/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/serde_core-e613c711ddfe8493/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_core-e613c711ddfe8493/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_derive-237a5c301882bb62/dep-lib-serde_derive b/examples/agent_server/target/debug/.fingerprint/serde_derive-237a5c301882bb62/dep-lib-serde_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/serde_derive-237a5c301882bb62/dep-lib-serde_derive differ diff --git a/examples/agent_server/target/debug/.fingerprint/serde_derive-237a5c301882bb62/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/serde_derive-237a5c301882bb62/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_derive-237a5c301882bb62/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_derive-237a5c301882bb62/lib-serde_derive b/examples/agent_server/target/debug/.fingerprint/serde_derive-237a5c301882bb62/lib-serde_derive new file mode 100644 index 0000000..050e126 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_derive-237a5c301882bb62/lib-serde_derive @@ -0,0 +1 @@ +f41056fe8fe386d5 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_derive-237a5c301882bb62/lib-serde_derive.json b/examples/agent_server/target/debug/.fingerprint/serde_derive-237a5c301882bb62/lib-serde_derive.json new file mode 100644 index 0000000..191f7cb --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_derive-237a5c301882bb62/lib-serde_derive.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\"]","declared_features":"[\"default\", \"deserialize_in_place\"]","target":13076129734743110817,"profile":2225463790103693989,"path":2446871888254218447,"deps":[[694259242500224931,"syn",false,16371964410775804325],[8949245912927223590,"quote",false,3425229716652418837],[16346726298725429545,"proc_macro2",false,16093586419399039199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_derive-237a5c301882bb62/dep-lib-serde_derive","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_json-b49918a39c7fb8c8/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/serde_json-b49918a39c7fb8c8/run-build-script-build-script-build new file mode 100644 index 0000000..e78c76a --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_json-b49918a39c7fb8c8/run-build-script-build-script-build @@ -0,0 +1 @@ +7d040a39600eeddd \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_json-b49918a39c7fb8c8/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/serde_json-b49918a39c7fb8c8/run-build-script-build-script-build.json new file mode 100644 index 0000000..fe3df0c --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_json-b49918a39c7fb8c8/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[5330460842384404171,"build_script_build",false,13782922913680335397]],"local":[{"RerunIfChanged":{"output":"debug/build/serde_json-b49918a39c7fb8c8/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_json-e1451d259db2ba72/dep-lib-serde_json b/examples/agent_server/target/debug/.fingerprint/serde_json-e1451d259db2ba72/dep-lib-serde_json new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/serde_json-e1451d259db2ba72/dep-lib-serde_json differ diff --git a/examples/agent_server/target/debug/.fingerprint/serde_json-e1451d259db2ba72/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/serde_json-e1451d259db2ba72/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_json-e1451d259db2ba72/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_json-e1451d259db2ba72/lib-serde_json b/examples/agent_server/target/debug/.fingerprint/serde_json-e1451d259db2ba72/lib-serde_json new file mode 100644 index 0000000..8afd529 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_json-e1451d259db2ba72/lib-serde_json @@ -0,0 +1 @@ +fa1287f31ed1d3ff \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_json-e1451d259db2ba72/lib-serde_json.json b/examples/agent_server/target/debug/.fingerprint/serde_json-e1451d259db2ba72/lib-serde_json.json new file mode 100644 index 0000000..0f5f42d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_json-e1451d259db2ba72/lib-serde_json.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"raw_value\", \"std\"]","declared_features":"[\"alloc\", \"arbitrary_precision\", \"default\", \"float_roundtrip\", \"indexmap\", \"preserve_order\", \"raw_value\", \"std\", \"unbounded_depth\"]","target":9592559880233824070,"profile":2241668132362809309,"path":2504783595860532033,"deps":[[5330460842384404171,"build_script_build",false,15991453658299106429],[5532778797167691009,"itoa",false,728509330440049395],[11029742160753049355,"serde_core",false,10961053545634911783],[12613788554453945248,"memchr",false,6429642936732799769],[16226529040278277557,"zmij",false,7168824113197197184]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_json-e1451d259db2ba72/dep-lib-serde_json","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_json-e8bad665682f3bb4/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/serde_json-e8bad665682f3bb4/build-script-build-script-build new file mode 100644 index 0000000..34f9407 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_json-e8bad665682f3bb4/build-script-build-script-build @@ -0,0 +1 @@ +2522826c5dc746bf \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_json-e8bad665682f3bb4/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/serde_json-e8bad665682f3bb4/build-script-build-script-build.json new file mode 100644 index 0000000..975eee2 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_json-e8bad665682f3bb4/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"raw_value\", \"std\"]","declared_features":"[\"alloc\", \"arbitrary_precision\", \"default\", \"float_roundtrip\", \"indexmap\", \"preserve_order\", \"raw_value\", \"std\", \"unbounded_depth\"]","target":5408242616063297496,"profile":2225463790103693989,"path":4250517711140805704,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_json-e8bad665682f3bb4/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_json-e8bad665682f3bb4/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/serde_json-e8bad665682f3bb4/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/serde_json-e8bad665682f3bb4/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/serde_json-e8bad665682f3bb4/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/serde_json-e8bad665682f3bb4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_json-e8bad665682f3bb4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_path_to_error-f063d3c09cee7598/dep-lib-serde_path_to_error b/examples/agent_server/target/debug/.fingerprint/serde_path_to_error-f063d3c09cee7598/dep-lib-serde_path_to_error new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/serde_path_to_error-f063d3c09cee7598/dep-lib-serde_path_to_error differ diff --git a/examples/agent_server/target/debug/.fingerprint/serde_path_to_error-f063d3c09cee7598/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/serde_path_to_error-f063d3c09cee7598/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_path_to_error-f063d3c09cee7598/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_path_to_error-f063d3c09cee7598/lib-serde_path_to_error b/examples/agent_server/target/debug/.fingerprint/serde_path_to_error-f063d3c09cee7598/lib-serde_path_to_error new file mode 100644 index 0000000..00bec2a --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_path_to_error-f063d3c09cee7598/lib-serde_path_to_error @@ -0,0 +1 @@ +9dce757944e3c1ac \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_path_to_error-f063d3c09cee7598/lib-serde_path_to_error.json b/examples/agent_server/target/debug/.fingerprint/serde_path_to_error-f063d3c09cee7598/lib-serde_path_to_error.json new file mode 100644 index 0000000..9dc2b80 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_path_to_error-f063d3c09cee7598/lib-serde_path_to_error.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":6835353179077751532,"profile":2241668132362809309,"path":16735328004652757340,"deps":[[5532778797167691009,"itoa",false,728509330440049395],[11029742160753049355,"serde_core",false,10961053545634911783]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_path_to_error-f063d3c09cee7598/dep-lib-serde_path_to_error","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_urlencoded-33aacb420464b1dd/dep-lib-serde_urlencoded b/examples/agent_server/target/debug/.fingerprint/serde_urlencoded-33aacb420464b1dd/dep-lib-serde_urlencoded new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/serde_urlencoded-33aacb420464b1dd/dep-lib-serde_urlencoded differ diff --git a/examples/agent_server/target/debug/.fingerprint/serde_urlencoded-33aacb420464b1dd/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/serde_urlencoded-33aacb420464b1dd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_urlencoded-33aacb420464b1dd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_urlencoded-33aacb420464b1dd/lib-serde_urlencoded b/examples/agent_server/target/debug/.fingerprint/serde_urlencoded-33aacb420464b1dd/lib-serde_urlencoded new file mode 100644 index 0000000..3bb9f72 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_urlencoded-33aacb420464b1dd/lib-serde_urlencoded @@ -0,0 +1 @@ +11db3245463d78a3 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/serde_urlencoded-33aacb420464b1dd/lib-serde_urlencoded.json b/examples/agent_server/target/debug/.fingerprint/serde_urlencoded-33aacb420464b1dd/lib-serde_urlencoded.json new file mode 100644 index 0000000..363ff13 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/serde_urlencoded-33aacb420464b1dd/lib-serde_urlencoded.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":13961612944102757082,"profile":2241668132362809309,"path":3266932894466547575,"deps":[[1074175012458081222,"form_urlencoded",false,1206735495900643632],[5532778797167691009,"itoa",false,728509330440049395],[6400797066282925533,"ryu",false,17192026068431448344],[6557439603276904804,"serde",false,13004456102427444285]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_urlencoded-33aacb420464b1dd/dep-lib-serde_urlencoded","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/sha1-6da5225bc108ed93/dep-lib-sha1 b/examples/agent_server/target/debug/.fingerprint/sha1-6da5225bc108ed93/dep-lib-sha1 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/sha1-6da5225bc108ed93/dep-lib-sha1 differ diff --git a/examples/agent_server/target/debug/.fingerprint/sha1-6da5225bc108ed93/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/sha1-6da5225bc108ed93/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/sha1-6da5225bc108ed93/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/sha1-6da5225bc108ed93/lib-sha1 b/examples/agent_server/target/debug/.fingerprint/sha1-6da5225bc108ed93/lib-sha1 new file mode 100644 index 0000000..8576aa7 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/sha1-6da5225bc108ed93/lib-sha1 @@ -0,0 +1 @@ +c7b24a8bfac99922 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/sha1-6da5225bc108ed93/lib-sha1.json b/examples/agent_server/target/debug/.fingerprint/sha1-6da5225bc108ed93/lib-sha1.json new file mode 100644 index 0000000..5bb9334 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/sha1-6da5225bc108ed93/lib-sha1.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"asm\", \"compress\", \"default\", \"force-soft\", \"loongarch64_asm\", \"oid\", \"std\"]","target":6432184950612605207,"profile":2241668132362809309,"path":2545443786841052284,"deps":[[7667230146095136825,"cfg_if",false,1090425733875617541],[17475753849556516473,"digest",false,12763081876585242006],[17620084158052398167,"cpufeatures",false,14552059337319496452]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/sha1-6da5225bc108ed93/dep-lib-sha1","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/sharded-slab-47d20ae27c42e343/dep-lib-sharded_slab b/examples/agent_server/target/debug/.fingerprint/sharded-slab-47d20ae27c42e343/dep-lib-sharded_slab new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/sharded-slab-47d20ae27c42e343/dep-lib-sharded_slab differ diff --git a/examples/agent_server/target/debug/.fingerprint/sharded-slab-47d20ae27c42e343/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/sharded-slab-47d20ae27c42e343/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/sharded-slab-47d20ae27c42e343/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/sharded-slab-47d20ae27c42e343/lib-sharded_slab b/examples/agent_server/target/debug/.fingerprint/sharded-slab-47d20ae27c42e343/lib-sharded_slab new file mode 100644 index 0000000..68bd36e --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/sharded-slab-47d20ae27c42e343/lib-sharded_slab @@ -0,0 +1 @@ +3057a0e4aa54a3d9 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/sharded-slab-47d20ae27c42e343/lib-sharded_slab.json b/examples/agent_server/target/debug/.fingerprint/sharded-slab-47d20ae27c42e343/lib-sharded_slab.json new file mode 100644 index 0000000..e81f7b4 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/sharded-slab-47d20ae27c42e343/lib-sharded_slab.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"loom\"]","target":12629115416767553567,"profile":2241668132362809309,"path":13511649544187472814,"deps":[[17917672826516349275,"lazy_static",false,12493186218136180712]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/sharded-slab-47d20ae27c42e343/dep-lib-sharded_slab","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/shlex-7b06ff0077903996/dep-lib-shlex b/examples/agent_server/target/debug/.fingerprint/shlex-7b06ff0077903996/dep-lib-shlex new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/shlex-7b06ff0077903996/dep-lib-shlex differ diff --git a/examples/agent_server/target/debug/.fingerprint/shlex-7b06ff0077903996/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/shlex-7b06ff0077903996/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/shlex-7b06ff0077903996/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/shlex-7b06ff0077903996/lib-shlex b/examples/agent_server/target/debug/.fingerprint/shlex-7b06ff0077903996/lib-shlex new file mode 100644 index 0000000..d10ee18 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/shlex-7b06ff0077903996/lib-shlex @@ -0,0 +1 @@ +ce746b004d4d2926 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/shlex-7b06ff0077903996/lib-shlex.json b/examples/agent_server/target/debug/.fingerprint/shlex-7b06ff0077903996/lib-shlex.json new file mode 100644 index 0000000..3b88574 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/shlex-7b06ff0077903996/lib-shlex.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":16275069620850966956,"profile":11995204835630852991,"path":1971411994961478025,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/shlex-7b06ff0077903996/dep-lib-shlex","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/signal-hook-registry-ca61398a9ca98351/dep-lib-signal_hook_registry b/examples/agent_server/target/debug/.fingerprint/signal-hook-registry-ca61398a9ca98351/dep-lib-signal_hook_registry new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/signal-hook-registry-ca61398a9ca98351/dep-lib-signal_hook_registry differ diff --git a/examples/agent_server/target/debug/.fingerprint/signal-hook-registry-ca61398a9ca98351/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/signal-hook-registry-ca61398a9ca98351/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/signal-hook-registry-ca61398a9ca98351/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/signal-hook-registry-ca61398a9ca98351/lib-signal_hook_registry b/examples/agent_server/target/debug/.fingerprint/signal-hook-registry-ca61398a9ca98351/lib-signal_hook_registry new file mode 100644 index 0000000..18dfee3 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/signal-hook-registry-ca61398a9ca98351/lib-signal_hook_registry @@ -0,0 +1 @@ +36c5a39116025be4 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/signal-hook-registry-ca61398a9ca98351/lib-signal_hook_registry.json b/examples/agent_server/target/debug/.fingerprint/signal-hook-registry-ca61398a9ca98351/lib-signal_hook_registry.json new file mode 100644 index 0000000..f46a842 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/signal-hook-registry-ca61398a9ca98351/lib-signal_hook_registry.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":17877812014956321412,"profile":10024706962467689494,"path":7450432942610274904,"deps":[[3666973139609465052,"errno",false,9491121397006344249],[10504718112287328430,"libc",false,2478278040054917594]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/signal-hook-registry-ca61398a9ca98351/dep-lib-signal_hook_registry","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/slab-5ad27fdb4344ece1/dep-lib-slab b/examples/agent_server/target/debug/.fingerprint/slab-5ad27fdb4344ece1/dep-lib-slab new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/slab-5ad27fdb4344ece1/dep-lib-slab differ diff --git a/examples/agent_server/target/debug/.fingerprint/slab-5ad27fdb4344ece1/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/slab-5ad27fdb4344ece1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/slab-5ad27fdb4344ece1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/slab-5ad27fdb4344ece1/lib-slab b/examples/agent_server/target/debug/.fingerprint/slab-5ad27fdb4344ece1/lib-slab new file mode 100644 index 0000000..edaac21 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/slab-5ad27fdb4344ece1/lib-slab @@ -0,0 +1 @@ +6f97a7322f3778f1 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/slab-5ad27fdb4344ece1/lib-slab.json b/examples/agent_server/target/debug/.fingerprint/slab-5ad27fdb4344ece1/lib-slab.json new file mode 100644 index 0000000..468e93f --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/slab-5ad27fdb4344ece1/lib-slab.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"std\"]","declared_features":"[\"default\", \"serde\", \"std\"]","target":7798044754532116308,"profile":2241668132362809309,"path":8687845115591291947,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/slab-5ad27fdb4344ece1/dep-lib-slab","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/smallvec-0f6a4b8729e45700/dep-lib-smallvec b/examples/agent_server/target/debug/.fingerprint/smallvec-0f6a4b8729e45700/dep-lib-smallvec new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/smallvec-0f6a4b8729e45700/dep-lib-smallvec differ diff --git a/examples/agent_server/target/debug/.fingerprint/smallvec-0f6a4b8729e45700/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/smallvec-0f6a4b8729e45700/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/smallvec-0f6a4b8729e45700/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/smallvec-0f6a4b8729e45700/lib-smallvec b/examples/agent_server/target/debug/.fingerprint/smallvec-0f6a4b8729e45700/lib-smallvec new file mode 100644 index 0000000..be17e1d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/smallvec-0f6a4b8729e45700/lib-smallvec @@ -0,0 +1 @@ +b3cfc47008ff1c6d \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/smallvec-0f6a4b8729e45700/lib-smallvec.json b/examples/agent_server/target/debug/.fingerprint/smallvec-0f6a4b8729e45700/lib-smallvec.json new file mode 100644 index 0000000..dde165a --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/smallvec-0f6a4b8729e45700/lib-smallvec.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"const_generics\", \"const_new\"]","declared_features":"[\"arbitrary\", \"bincode\", \"const_generics\", \"const_new\", \"debugger_visualizer\", \"drain_filter\", \"drain_keep_rest\", \"impl_bincode\", \"malloc_size_of\", \"may_dangle\", \"serde\", \"specialization\", \"union\", \"unty\", \"write\"]","target":9091769176333489034,"profile":2241668132362809309,"path":12856006852973296512,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/smallvec-0f6a4b8729e45700/dep-lib-smallvec","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/socket2-f13486a30239ac18/dep-lib-socket2 b/examples/agent_server/target/debug/.fingerprint/socket2-f13486a30239ac18/dep-lib-socket2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/socket2-f13486a30239ac18/dep-lib-socket2 differ diff --git a/examples/agent_server/target/debug/.fingerprint/socket2-f13486a30239ac18/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/socket2-f13486a30239ac18/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/socket2-f13486a30239ac18/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/socket2-f13486a30239ac18/lib-socket2 b/examples/agent_server/target/debug/.fingerprint/socket2-f13486a30239ac18/lib-socket2 new file mode 100644 index 0000000..7641600 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/socket2-f13486a30239ac18/lib-socket2 @@ -0,0 +1 @@ +fb9073e79071bd50 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/socket2-f13486a30239ac18/lib-socket2.json b/examples/agent_server/target/debug/.fingerprint/socket2-f13486a30239ac18/lib-socket2.json new file mode 100644 index 0000000..d95cab0 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/socket2-f13486a30239ac18/lib-socket2.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"all\"]","declared_features":"[\"all\"]","target":2270514485357617025,"profile":2241668132362809309,"path":4259369681070339238,"deps":[[10504718112287328430,"libc",false,2478278040054917594]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/socket2-f13486a30239ac18/dep-lib-socket2","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/dep-lib-stable_deref_trait b/examples/agent_server/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/dep-lib-stable_deref_trait new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/dep-lib-stable_deref_trait differ diff --git a/examples/agent_server/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/lib-stable_deref_trait b/examples/agent_server/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/lib-stable_deref_trait new file mode 100644 index 0000000..f60283c --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/lib-stable_deref_trait @@ -0,0 +1 @@ +13e4067c7ea01460 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/lib-stable_deref_trait.json b/examples/agent_server/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/lib-stable_deref_trait.json new file mode 100644 index 0000000..f5384d3 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/lib-stable_deref_trait.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":5616890217583455155,"profile":2241668132362809309,"path":2364997651327876457,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/stable_deref_trait-22158042bda71a4d/dep-lib-stable_deref_trait","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/subtle-684c7bd4fb8861f7/dep-lib-subtle b/examples/agent_server/target/debug/.fingerprint/subtle-684c7bd4fb8861f7/dep-lib-subtle new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/subtle-684c7bd4fb8861f7/dep-lib-subtle differ diff --git a/examples/agent_server/target/debug/.fingerprint/subtle-684c7bd4fb8861f7/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/subtle-684c7bd4fb8861f7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/subtle-684c7bd4fb8861f7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/subtle-684c7bd4fb8861f7/lib-subtle b/examples/agent_server/target/debug/.fingerprint/subtle-684c7bd4fb8861f7/lib-subtle new file mode 100644 index 0000000..ed6698a --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/subtle-684c7bd4fb8861f7/lib-subtle @@ -0,0 +1 @@ +ef3b4ba55efdb00a \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/subtle-684c7bd4fb8861f7/lib-subtle.json b/examples/agent_server/target/debug/.fingerprint/subtle-684c7bd4fb8861f7/lib-subtle.json new file mode 100644 index 0000000..2be3a28 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/subtle-684c7bd4fb8861f7/lib-subtle.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"const-generics\", \"core_hint_black_box\", \"default\", \"i128\", \"nightly\", \"std\"]","target":13005322332938347306,"profile":2241668132362809309,"path":3128947527859212364,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/subtle-684c7bd4fb8861f7/dep-lib-subtle","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/syn-4e45116c709dc0d0/dep-lib-syn b/examples/agent_server/target/debug/.fingerprint/syn-4e45116c709dc0d0/dep-lib-syn new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/syn-4e45116c709dc0d0/dep-lib-syn differ diff --git a/examples/agent_server/target/debug/.fingerprint/syn-4e45116c709dc0d0/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/syn-4e45116c709dc0d0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/syn-4e45116c709dc0d0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/syn-4e45116c709dc0d0/lib-syn b/examples/agent_server/target/debug/.fingerprint/syn-4e45116c709dc0d0/lib-syn new file mode 100644 index 0000000..df219e5 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/syn-4e45116c709dc0d0/lib-syn @@ -0,0 +1 @@ +baf60626b591a044 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/syn-4e45116c709dc0d0/lib-syn.json b/examples/agent_server/target/debug/.fingerprint/syn-4e45116c709dc0d0/lib-syn.json new file mode 100644 index 0000000..d97b0f3 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/syn-4e45116c709dc0d0/lib-syn.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"visit\", \"visit-mut\"]","declared_features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"test\", \"visit\", \"visit-mut\"]","target":9442126953582868550,"profile":2225463790103693989,"path":12117757996614384639,"deps":[[8901712065508858692,"unicode_ident",false,10098889171189812418],[8949245912927223590,"quote",false,3425229716652418837],[16346726298725429545,"proc_macro2",false,16093586419399039199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/syn-4e45116c709dc0d0/dep-lib-syn","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/syn-641c960597529d4f/dep-lib-syn b/examples/agent_server/target/debug/.fingerprint/syn-641c960597529d4f/dep-lib-syn new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/syn-641c960597529d4f/dep-lib-syn differ diff --git a/examples/agent_server/target/debug/.fingerprint/syn-641c960597529d4f/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/syn-641c960597529d4f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/syn-641c960597529d4f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/syn-641c960597529d4f/lib-syn b/examples/agent_server/target/debug/.fingerprint/syn-641c960597529d4f/lib-syn new file mode 100644 index 0000000..e6abcff --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/syn-641c960597529d4f/lib-syn @@ -0,0 +1 @@ +a519a1a3e3e634e3 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/syn-641c960597529d4f/lib-syn.json b/examples/agent_server/target/debug/.fingerprint/syn-641c960597529d4f/lib-syn.json new file mode 100644 index 0000000..259c574 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/syn-641c960597529d4f/lib-syn.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"clone-impls\", \"default\", \"derive\", \"full\", \"parsing\", \"printing\", \"proc-macro\"]","declared_features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"test\", \"visit\", \"visit-mut\"]","target":9442126953582868550,"profile":2225463790103693989,"path":18220783575121479265,"deps":[[8901712065508858692,"unicode_ident",false,10098889171189812418],[8949245912927223590,"quote",false,3425229716652418837],[16346726298725429545,"proc_macro2",false,16093586419399039199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/syn-641c960597529d4f/dep-lib-syn","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/sync_wrapper-0c3d1a23b3d6f802/dep-lib-sync_wrapper b/examples/agent_server/target/debug/.fingerprint/sync_wrapper-0c3d1a23b3d6f802/dep-lib-sync_wrapper new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/sync_wrapper-0c3d1a23b3d6f802/dep-lib-sync_wrapper differ diff --git a/examples/agent_server/target/debug/.fingerprint/sync_wrapper-0c3d1a23b3d6f802/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/sync_wrapper-0c3d1a23b3d6f802/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/sync_wrapper-0c3d1a23b3d6f802/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/sync_wrapper-0c3d1a23b3d6f802/lib-sync_wrapper b/examples/agent_server/target/debug/.fingerprint/sync_wrapper-0c3d1a23b3d6f802/lib-sync_wrapper new file mode 100644 index 0000000..49c6ee4 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/sync_wrapper-0c3d1a23b3d6f802/lib-sync_wrapper @@ -0,0 +1 @@ +c33aa7d12dc506eb \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/sync_wrapper-0c3d1a23b3d6f802/lib-sync_wrapper.json b/examples/agent_server/target/debug/.fingerprint/sync_wrapper-0c3d1a23b3d6f802/lib-sync_wrapper.json new file mode 100644 index 0000000..09f8786 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/sync_wrapper-0c3d1a23b3d6f802/lib-sync_wrapper.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"futures\", \"futures-core\"]","target":4931834116445848126,"profile":2241668132362809309,"path":5534631561794148333,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/sync_wrapper-0c3d1a23b3d6f802/dep-lib-sync_wrapper","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/synstructure-388c3c6b693bfc93/dep-lib-synstructure b/examples/agent_server/target/debug/.fingerprint/synstructure-388c3c6b693bfc93/dep-lib-synstructure new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/synstructure-388c3c6b693bfc93/dep-lib-synstructure differ diff --git a/examples/agent_server/target/debug/.fingerprint/synstructure-388c3c6b693bfc93/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/synstructure-388c3c6b693bfc93/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/synstructure-388c3c6b693bfc93/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/synstructure-388c3c6b693bfc93/lib-synstructure b/examples/agent_server/target/debug/.fingerprint/synstructure-388c3c6b693bfc93/lib-synstructure new file mode 100644 index 0000000..7fbfbe4 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/synstructure-388c3c6b693bfc93/lib-synstructure @@ -0,0 +1 @@ +76d2e7eb3cb2297e \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/synstructure-388c3c6b693bfc93/lib-synstructure.json b/examples/agent_server/target/debug/.fingerprint/synstructure-388c3c6b693bfc93/lib-synstructure.json new file mode 100644 index 0000000..6a4faf1 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/synstructure-388c3c6b693bfc93/lib-synstructure.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":14291004384071580589,"profile":2225463790103693989,"path":2807523148691316326,"deps":[[8949245912927223590,"quote",false,3425229716652418837],[10190449710562616856,"syn",false,4945112598065903290],[16346726298725429545,"proc_macro2",false,16093586419399039199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/synstructure-388c3c6b693bfc93/dep-lib-synstructure","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tempfile-3acfc3754cdd2eb8/dep-lib-tempfile b/examples/agent_server/target/debug/.fingerprint/tempfile-3acfc3754cdd2eb8/dep-lib-tempfile new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/tempfile-3acfc3754cdd2eb8/dep-lib-tempfile differ diff --git a/examples/agent_server/target/debug/.fingerprint/tempfile-3acfc3754cdd2eb8/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/tempfile-3acfc3754cdd2eb8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tempfile-3acfc3754cdd2eb8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tempfile-3acfc3754cdd2eb8/lib-tempfile b/examples/agent_server/target/debug/.fingerprint/tempfile-3acfc3754cdd2eb8/lib-tempfile new file mode 100644 index 0000000..9a1e349 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tempfile-3acfc3754cdd2eb8/lib-tempfile @@ -0,0 +1 @@ +8b9d430e4d55df44 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tempfile-3acfc3754cdd2eb8/lib-tempfile.json b/examples/agent_server/target/debug/.fingerprint/tempfile-3acfc3754cdd2eb8/lib-tempfile.json new file mode 100644 index 0000000..2968923 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tempfile-3acfc3754cdd2eb8/lib-tempfile.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"getrandom\"]","declared_features":"[\"default\", \"getrandom\", \"nightly\"]","target":44311651032485388,"profile":2225463790103693989,"path":17635309498592846592,"deps":[[332082171437474983,"fastrand",false,14362884718957969296],[5855319743879205494,"once_cell",false,18026514998572936960],[17989731678791879549,"getrandom",false,593294619922364578],[18407532691439737072,"rustix",false,12377905623952480495]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tempfile-3acfc3754cdd2eb8/dep-lib-tempfile","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-065d38539fa57520/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/thiserror-065d38539fa57520/run-build-script-build-script-build new file mode 100644 index 0000000..8fa37a3 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-065d38539fa57520/run-build-script-build-script-build @@ -0,0 +1 @@ +fd0b9a755ef9de5f \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-065d38539fa57520/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/thiserror-065d38539fa57520/run-build-script-build-script-build.json new file mode 100644 index 0000000..f9f3c14 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-065d38539fa57520/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[11742730876020405241,"build_script_build",false,3469189465487430518]],"local":[{"RerunIfChanged":{"output":"debug/build/thiserror-065d38539fa57520/output","paths":["build/probe.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-0ffc10629a337cf8/dep-lib-thiserror b/examples/agent_server/target/debug/.fingerprint/thiserror-0ffc10629a337cf8/dep-lib-thiserror new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/thiserror-0ffc10629a337cf8/dep-lib-thiserror differ diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-0ffc10629a337cf8/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/thiserror-0ffc10629a337cf8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-0ffc10629a337cf8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-0ffc10629a337cf8/lib-thiserror b/examples/agent_server/target/debug/.fingerprint/thiserror-0ffc10629a337cf8/lib-thiserror new file mode 100644 index 0000000..96466bf --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-0ffc10629a337cf8/lib-thiserror @@ -0,0 +1 @@ +5986020ad8084ed1 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-0ffc10629a337cf8/lib-thiserror.json b/examples/agent_server/target/debug/.fingerprint/thiserror-0ffc10629a337cf8/lib-thiserror.json new file mode 100644 index 0000000..c41dc19 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-0ffc10629a337cf8/lib-thiserror.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":13586076721141200315,"profile":2241668132362809309,"path":8516131268530562986,"deps":[[8008191657135824715,"build_script_build",false,10841225204310094817],[15291996789830541733,"thiserror_impl",false,12727913290009513061]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-0ffc10629a337cf8/dep-lib-thiserror","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-2c86f3aea4f39327/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/thiserror-2c86f3aea4f39327/run-build-script-build-script-build new file mode 100644 index 0000000..28ef7af --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-2c86f3aea4f39327/run-build-script-build-script-build @@ -0,0 +1 @@ +e133ea50e2c47396 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-2c86f3aea4f39327/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/thiserror-2c86f3aea4f39327/run-build-script-build-script-build.json new file mode 100644 index 0000000..6186d31 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-2c86f3aea4f39327/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8008191657135824715,"build_script_build",false,8978710329759122902]],"local":[{"RerunIfChanged":{"output":"debug/build/thiserror-2c86f3aea4f39327/output","paths":["build/probe.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-529e636cb807cb66/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/thiserror-529e636cb807cb66/build-script-build-script-build new file mode 100644 index 0000000..c3e7621 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-529e636cb807cb66/build-script-build-script-build @@ -0,0 +1 @@ +76d3e73470092530 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-529e636cb807cb66/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/thiserror-529e636cb807cb66/build-script-build-script-build.json new file mode 100644 index 0000000..7c147a2 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-529e636cb807cb66/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":5408242616063297496,"profile":2225463790103693989,"path":8431646608772027229,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-529e636cb807cb66/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-529e636cb807cb66/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/thiserror-529e636cb807cb66/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/thiserror-529e636cb807cb66/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-529e636cb807cb66/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/thiserror-529e636cb807cb66/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-529e636cb807cb66/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-b814df2309f8fad4/dep-lib-thiserror b/examples/agent_server/target/debug/.fingerprint/thiserror-b814df2309f8fad4/dep-lib-thiserror new file mode 100644 index 0000000..a13ad4d Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/thiserror-b814df2309f8fad4/dep-lib-thiserror differ diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-b814df2309f8fad4/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/thiserror-b814df2309f8fad4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-b814df2309f8fad4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-b814df2309f8fad4/lib-thiserror b/examples/agent_server/target/debug/.fingerprint/thiserror-b814df2309f8fad4/lib-thiserror new file mode 100644 index 0000000..d72cea7 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-b814df2309f8fad4/lib-thiserror @@ -0,0 +1 @@ +66c752e760ca68ad \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-b814df2309f8fad4/lib-thiserror.json b/examples/agent_server/target/debug/.fingerprint/thiserror-b814df2309f8fad4/lib-thiserror.json new file mode 100644 index 0000000..79993d5 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-b814df2309f8fad4/lib-thiserror.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":13586076721141200315,"profile":2241668132362809309,"path":14138135558917131782,"deps":[[8508343479407352521,"thiserror_impl",false,6689301415680978711],[11742730876020405241,"build_script_build",false,6908233062528191485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-b814df2309f8fad4/dep-lib-thiserror","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-c38a878e108bbc23/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/thiserror-c38a878e108bbc23/build-script-build-script-build new file mode 100644 index 0000000..e9fd167 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-c38a878e108bbc23/build-script-build-script-build @@ -0,0 +1 @@ +d6456c4279c99a7c \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-c38a878e108bbc23/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/thiserror-c38a878e108bbc23/build-script-build-script-build.json new file mode 100644 index 0000000..45583ab --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-c38a878e108bbc23/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":2225463790103693989,"path":17250935926604417697,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-c38a878e108bbc23/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-c38a878e108bbc23/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/thiserror-c38a878e108bbc23/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/thiserror-c38a878e108bbc23/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-c38a878e108bbc23/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/thiserror-c38a878e108bbc23/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-c38a878e108bbc23/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-impl-6a19198988d98108/dep-lib-thiserror_impl b/examples/agent_server/target/debug/.fingerprint/thiserror-impl-6a19198988d98108/dep-lib-thiserror_impl new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/thiserror-impl-6a19198988d98108/dep-lib-thiserror_impl differ diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-impl-6a19198988d98108/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/thiserror-impl-6a19198988d98108/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-impl-6a19198988d98108/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-impl-6a19198988d98108/lib-thiserror_impl b/examples/agent_server/target/debug/.fingerprint/thiserror-impl-6a19198988d98108/lib-thiserror_impl new file mode 100644 index 0000000..c18082b --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-impl-6a19198988d98108/lib-thiserror_impl @@ -0,0 +1 @@ +17af2e35322cd55c \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-impl-6a19198988d98108/lib-thiserror_impl.json b/examples/agent_server/target/debug/.fingerprint/thiserror-impl-6a19198988d98108/lib-thiserror_impl.json new file mode 100644 index 0000000..2ffccac --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-impl-6a19198988d98108/lib-thiserror_impl.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":6216210811039475267,"profile":2225463790103693989,"path":11947592899321670497,"deps":[[694259242500224931,"syn",false,16371964410775804325],[8949245912927223590,"quote",false,3425229716652418837],[16346726298725429545,"proc_macro2",false,16093586419399039199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-impl-6a19198988d98108/dep-lib-thiserror_impl","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-impl-f63d760665632888/dep-lib-thiserror_impl b/examples/agent_server/target/debug/.fingerprint/thiserror-impl-f63d760665632888/dep-lib-thiserror_impl new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/thiserror-impl-f63d760665632888/dep-lib-thiserror_impl differ diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-impl-f63d760665632888/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/thiserror-impl-f63d760665632888/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-impl-f63d760665632888/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-impl-f63d760665632888/lib-thiserror_impl b/examples/agent_server/target/debug/.fingerprint/thiserror-impl-f63d760665632888/lib-thiserror_impl new file mode 100644 index 0000000..3eaff89 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-impl-f63d760665632888/lib-thiserror_impl @@ -0,0 +1 @@ +658cfdaeb3a1a2b0 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thiserror-impl-f63d760665632888/lib-thiserror_impl.json b/examples/agent_server/target/debug/.fingerprint/thiserror-impl-f63d760665632888/lib-thiserror_impl.json new file mode 100644 index 0000000..6fb8e52 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thiserror-impl-f63d760665632888/lib-thiserror_impl.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":6216210811039475267,"profile":2225463790103693989,"path":7185921243237780338,"deps":[[8949245912927223590,"quote",false,3425229716652418837],[10190449710562616856,"syn",false,4945112598065903290],[16346726298725429545,"proc_macro2",false,16093586419399039199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-impl-f63d760665632888/dep-lib-thiserror_impl","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thread_local-55b9ef038294e1f7/dep-lib-thread_local b/examples/agent_server/target/debug/.fingerprint/thread_local-55b9ef038294e1f7/dep-lib-thread_local new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/thread_local-55b9ef038294e1f7/dep-lib-thread_local differ diff --git a/examples/agent_server/target/debug/.fingerprint/thread_local-55b9ef038294e1f7/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/thread_local-55b9ef038294e1f7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thread_local-55b9ef038294e1f7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thread_local-55b9ef038294e1f7/lib-thread_local b/examples/agent_server/target/debug/.fingerprint/thread_local-55b9ef038294e1f7/lib-thread_local new file mode 100644 index 0000000..2688377 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thread_local-55b9ef038294e1f7/lib-thread_local @@ -0,0 +1 @@ +bffbe700bf6a50c5 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/thread_local-55b9ef038294e1f7/lib-thread_local.json b/examples/agent_server/target/debug/.fingerprint/thread_local-55b9ef038294e1f7/lib-thread_local.json new file mode 100644 index 0000000..090ac10 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/thread_local-55b9ef038294e1f7/lib-thread_local.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"nightly\"]","target":4721033718741301145,"profile":2241668132362809309,"path":13690830174757717917,"deps":[[7667230146095136825,"cfg_if",false,1090425733875617541]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thread_local-55b9ef038294e1f7/dep-lib-thread_local","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tinystr-af9dc0146ac638b2/dep-lib-tinystr b/examples/agent_server/target/debug/.fingerprint/tinystr-af9dc0146ac638b2/dep-lib-tinystr new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/tinystr-af9dc0146ac638b2/dep-lib-tinystr differ diff --git a/examples/agent_server/target/debug/.fingerprint/tinystr-af9dc0146ac638b2/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/tinystr-af9dc0146ac638b2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tinystr-af9dc0146ac638b2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tinystr-af9dc0146ac638b2/lib-tinystr b/examples/agent_server/target/debug/.fingerprint/tinystr-af9dc0146ac638b2/lib-tinystr new file mode 100644 index 0000000..a31ee47 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tinystr-af9dc0146ac638b2/lib-tinystr @@ -0,0 +1 @@ +b0a51264e816d3db \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tinystr-af9dc0146ac638b2/lib-tinystr.json b/examples/agent_server/target/debug/.fingerprint/tinystr-af9dc0146ac638b2/lib-tinystr.json new file mode 100644 index 0000000..88940c8 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tinystr-af9dc0146ac638b2/lib-tinystr.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"serde\", \"std\", \"zerovec\"]","target":161691779326313357,"profile":15319846033271432293,"path":3077234589924332964,"deps":[[7664967068156160197,"displaydoc",false,8157948546110905249],[9119616491714376884,"zerovec",false,8054920708844821994]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tinystr-af9dc0146ac638b2/dep-lib-tinystr","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tokio-1633ed0d6bbdec8f/dep-lib-tokio b/examples/agent_server/target/debug/.fingerprint/tokio-1633ed0d6bbdec8f/dep-lib-tokio new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/tokio-1633ed0d6bbdec8f/dep-lib-tokio differ diff --git a/examples/agent_server/target/debug/.fingerprint/tokio-1633ed0d6bbdec8f/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/tokio-1633ed0d6bbdec8f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tokio-1633ed0d6bbdec8f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tokio-1633ed0d6bbdec8f/lib-tokio b/examples/agent_server/target/debug/.fingerprint/tokio-1633ed0d6bbdec8f/lib-tokio new file mode 100644 index 0000000..c7a222b --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tokio-1633ed0d6bbdec8f/lib-tokio @@ -0,0 +1 @@ +d124cb92d1b53e93 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tokio-1633ed0d6bbdec8f/lib-tokio.json b/examples/agent_server/target/debug/.fingerprint/tokio-1633ed0d6bbdec8f/lib-tokio.json new file mode 100644 index 0000000..5f514cc --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tokio-1633ed0d6bbdec8f/lib-tokio.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"bytes\", \"default\", \"fs\", \"full\", \"io-std\", \"io-util\", \"libc\", \"macros\", \"mio\", \"net\", \"parking_lot\", \"process\", \"rt\", \"rt-multi-thread\", \"signal\", \"signal-hook-registry\", \"socket2\", \"sync\", \"time\", \"tokio-macros\"]","declared_features":"[\"bytes\", \"default\", \"fs\", \"full\", \"io-std\", \"io-uring\", \"io-util\", \"libc\", \"macros\", \"mio\", \"net\", \"parking_lot\", \"process\", \"rt\", \"rt-multi-thread\", \"schedule-latency\", \"signal\", \"signal-hook-registry\", \"socket2\", \"sync\", \"taskdump\", \"test-util\", \"time\", \"tokio-macros\", \"tracing\", \"windows-sys\"]","target":9605832425414080464,"profile":16115388926700855947,"path":8907049090996115283,"deps":[[1786641636245247615,"mio",false,3480200133757206335],[2251399859588827949,"pin_project_lite",false,4667605112942415018],[5586921060454797692,"tokio_macros",false,17786738891661510043],[6684496268350303357,"signal_hook_registry",false,16454747959484204342],[10504718112287328430,"libc",false,2478278040054917594],[11926622812581095017,"bytes",false,17162365318241494045],[12459942763388630573,"parking_lot",false,5469850176259763585],[14976271205713915479,"socket2",false,5817931160804888827]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tokio-1633ed0d6bbdec8f/dep-lib-tokio","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tokio-macros-41de4fbeebd28ef7/dep-lib-tokio_macros b/examples/agent_server/target/debug/.fingerprint/tokio-macros-41de4fbeebd28ef7/dep-lib-tokio_macros new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/tokio-macros-41de4fbeebd28ef7/dep-lib-tokio_macros differ diff --git a/examples/agent_server/target/debug/.fingerprint/tokio-macros-41de4fbeebd28ef7/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/tokio-macros-41de4fbeebd28ef7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tokio-macros-41de4fbeebd28ef7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tokio-macros-41de4fbeebd28ef7/lib-tokio_macros b/examples/agent_server/target/debug/.fingerprint/tokio-macros-41de4fbeebd28ef7/lib-tokio_macros new file mode 100644 index 0000000..b84f3ea --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tokio-macros-41de4fbeebd28ef7/lib-tokio_macros @@ -0,0 +1 @@ +9b051ca6c830d7f6 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tokio-macros-41de4fbeebd28ef7/lib-tokio_macros.json b/examples/agent_server/target/debug/.fingerprint/tokio-macros-41de4fbeebd28ef7/lib-tokio_macros.json new file mode 100644 index 0000000..ab1e2f8 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tokio-macros-41de4fbeebd28ef7/lib-tokio_macros.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":5059940852446330081,"profile":7508124752878485869,"path":18389126160668770248,"deps":[[694259242500224931,"syn",false,16371964410775804325],[8949245912927223590,"quote",false,3425229716652418837],[16346726298725429545,"proc_macro2",false,16093586419399039199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tokio-macros-41de4fbeebd28ef7/dep-lib-tokio_macros","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tokio-rustls-34de4ca72ecfdb02/dep-lib-tokio_rustls b/examples/agent_server/target/debug/.fingerprint/tokio-rustls-34de4ca72ecfdb02/dep-lib-tokio_rustls new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/tokio-rustls-34de4ca72ecfdb02/dep-lib-tokio_rustls differ diff --git a/examples/agent_server/target/debug/.fingerprint/tokio-rustls-34de4ca72ecfdb02/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/tokio-rustls-34de4ca72ecfdb02/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tokio-rustls-34de4ca72ecfdb02/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tokio-rustls-34de4ca72ecfdb02/lib-tokio_rustls b/examples/agent_server/target/debug/.fingerprint/tokio-rustls-34de4ca72ecfdb02/lib-tokio_rustls new file mode 100644 index 0000000..df9c52f --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tokio-rustls-34de4ca72ecfdb02/lib-tokio_rustls @@ -0,0 +1 @@ +a88b9f98d9402510 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tokio-rustls-34de4ca72ecfdb02/lib-tokio_rustls.json b/examples/agent_server/target/debug/.fingerprint/tokio-rustls-34de4ca72ecfdb02/lib-tokio_rustls.json new file mode 100644 index 0000000..8eb64ff --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tokio-rustls-34de4ca72ecfdb02/lib-tokio_rustls.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"logging\", \"ring\", \"tls12\"]","declared_features":"[\"default\", \"early-data\", \"logging\", \"ring\", \"tls12\"]","target":15569373574890885264,"profile":2241668132362809309,"path":2716172425277564813,"deps":[[2145939652136225981,"tokio",false,10610117683847046353],[7413599186401546189,"pki_types",false,11378963077967121345],[17020669599254637850,"rustls",false,15006486788010640464]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tokio-rustls-34de4ca72ecfdb02/dep-lib-tokio_rustls","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tokio-tungstenite-51f69eaa954daa2f/dep-lib-tokio_tungstenite b/examples/agent_server/target/debug/.fingerprint/tokio-tungstenite-51f69eaa954daa2f/dep-lib-tokio_tungstenite new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/tokio-tungstenite-51f69eaa954daa2f/dep-lib-tokio_tungstenite differ diff --git a/examples/agent_server/target/debug/.fingerprint/tokio-tungstenite-51f69eaa954daa2f/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/tokio-tungstenite-51f69eaa954daa2f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tokio-tungstenite-51f69eaa954daa2f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tokio-tungstenite-51f69eaa954daa2f/lib-tokio_tungstenite b/examples/agent_server/target/debug/.fingerprint/tokio-tungstenite-51f69eaa954daa2f/lib-tokio_tungstenite new file mode 100644 index 0000000..f11605e --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tokio-tungstenite-51f69eaa954daa2f/lib-tokio_tungstenite @@ -0,0 +1 @@ +809241504cebc061 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tokio-tungstenite-51f69eaa954daa2f/lib-tokio_tungstenite.json b/examples/agent_server/target/debug/.fingerprint/tokio-tungstenite-51f69eaa954daa2f/lib-tokio_tungstenite.json new file mode 100644 index 0000000..b1f960a --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tokio-tungstenite-51f69eaa954daa2f/lib-tokio_tungstenite.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"__rustls-tls\", \"connect\", \"default\", \"handshake\", \"rustls\", \"rustls-pki-types\", \"rustls-tls-webpki-roots\", \"stream\", \"tokio-rustls\", \"webpki-roots\"]","declared_features":"[\"__rustls-tls\", \"connect\", \"default\", \"handshake\", \"native-tls\", \"native-tls-crate\", \"native-tls-vendored\", \"rustls\", \"rustls-native-certs\", \"rustls-pki-types\", \"rustls-tls-native-roots\", \"rustls-tls-webpki-roots\", \"stream\", \"tokio-native-tls\", \"tokio-rustls\", \"webpki-roots\"]","target":2433367608443825,"profile":2241668132362809309,"path":3685034708952238223,"deps":[[2145939652136225981,"tokio",false,10610117683847046353],[7413599186401546189,"rustls_pki_types",false,11378963077967121345],[8156804143951879168,"webpki_roots",false,14009063674519518345],[8258418851280347661,"tungstenite",false,4309167492397825098],[13067342572498832805,"futures_util",false,5508768519262945063],[16357106084213134330,"tokio_rustls",false,1163407382057814952],[17020669599254637850,"rustls",false,15006486788010640464],[17353235279385985750,"log",false,17186040896692898078]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tokio-tungstenite-51f69eaa954daa2f/dep-lib-tokio_tungstenite","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tower-126d242f05b34f56/dep-lib-tower b/examples/agent_server/target/debug/.fingerprint/tower-126d242f05b34f56/dep-lib-tower new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/tower-126d242f05b34f56/dep-lib-tower differ diff --git a/examples/agent_server/target/debug/.fingerprint/tower-126d242f05b34f56/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/tower-126d242f05b34f56/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tower-126d242f05b34f56/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tower-126d242f05b34f56/lib-tower b/examples/agent_server/target/debug/.fingerprint/tower-126d242f05b34f56/lib-tower new file mode 100644 index 0000000..137c179 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tower-126d242f05b34f56/lib-tower @@ -0,0 +1 @@ +482a9934f1ef98fd \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tower-126d242f05b34f56/lib-tower.json b/examples/agent_server/target/debug/.fingerprint/tower-126d242f05b34f56/lib-tower.json new file mode 100644 index 0000000..9e66b3d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tower-126d242f05b34f56/lib-tower.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"futures-core\", \"futures-util\", \"log\", \"make\", \"pin-project-lite\", \"sync_wrapper\", \"tokio\", \"tracing\", \"util\"]","declared_features":"[\"balance\", \"buffer\", \"discover\", \"filter\", \"full\", \"futures-core\", \"futures-util\", \"hdrhistogram\", \"hedge\", \"indexmap\", \"limit\", \"load\", \"load-shed\", \"log\", \"make\", \"pin-project-lite\", \"ready-cache\", \"reconnect\", \"retry\", \"slab\", \"spawn-ready\", \"steer\", \"sync_wrapper\", \"timeout\", \"tokio\", \"tokio-stream\", \"tokio-util\", \"tracing\", \"util\"]","target":12249542225364378818,"profile":2241668132362809309,"path":12252179516521655917,"deps":[[784494742817713399,"tower_service",false,4699773025642892603],[2145939652136225981,"tokio",false,10610117683847046353],[2251399859588827949,"pin_project_lite",false,4667605112942415018],[2517136641825875337,"sync_wrapper",false,16935440249354926787],[7712452662827335977,"tower_layer",false,14836507917333715230],[13067342572498832805,"futures_util",false,5508768519262945063],[14757622794040968908,"tracing",false,10539387003315624142],[15759286673077216516,"futures_core",false,17521305048918112335]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tower-126d242f05b34f56/dep-lib-tower","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tower-http-5e81b246364aa994/dep-lib-tower_http b/examples/agent_server/target/debug/.fingerprint/tower-http-5e81b246364aa994/dep-lib-tower_http new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/tower-http-5e81b246364aa994/dep-lib-tower_http differ diff --git a/examples/agent_server/target/debug/.fingerprint/tower-http-5e81b246364aa994/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/tower-http-5e81b246364aa994/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tower-http-5e81b246364aa994/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tower-http-5e81b246364aa994/lib-tower_http b/examples/agent_server/target/debug/.fingerprint/tower-http-5e81b246364aa994/lib-tower_http new file mode 100644 index 0000000..1bc8e65 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tower-http-5e81b246364aa994/lib-tower_http @@ -0,0 +1 @@ +e7d4ef16bd321f07 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tower-http-5e81b246364aa994/lib-tower_http.json b/examples/agent_server/target/debug/.fingerprint/tower-http-5e81b246364aa994/lib-tower_http.json new file mode 100644 index 0000000..eaf31c2 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tower-http-5e81b246364aa994/lib-tower_http.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"cors\", \"default\"]","declared_features":"[\"add-extension\", \"async-compression\", \"auth\", \"base64\", \"catch-panic\", \"compression-br\", \"compression-deflate\", \"compression-full\", \"compression-gzip\", \"compression-zstd\", \"cors\", \"decompression-br\", \"decompression-deflate\", \"decompression-full\", \"decompression-gzip\", \"decompression-zstd\", \"default\", \"follow-redirect\", \"fs\", \"full\", \"futures-core\", \"futures-util\", \"httpdate\", \"limit\", \"map-request-body\", \"map-response-body\", \"metrics\", \"mime\", \"mime_guess\", \"normalize-path\", \"on-early-drop\", \"percent-encoding\", \"propagate-header\", \"redirect\", \"request-id\", \"sensitive-headers\", \"set-header\", \"set-status\", \"timeout\", \"tokio\", \"tokio-util\", \"tower\", \"trace\", \"tracing\", \"util\", \"uuid\", \"validate-request\"]","target":17577061573142048237,"profile":2241668132362809309,"path":17201462979939597780,"deps":[[784494742817713399,"tower_service",false,4699773025642892603],[2251399859588827949,"pin_project_lite",false,4667605112942415018],[5127344325563758221,"bitflags",false,16887567494596241090],[7712452662827335977,"tower_layer",false,14836507917333715230],[11926622812581095017,"bytes",false,17162365318241494045],[12328341851100645683,"http",false,13193275052002188385]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tower-http-5e81b246364aa994/dep-lib-tower_http","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tower-layer-cbfd986b2c761aee/dep-lib-tower_layer b/examples/agent_server/target/debug/.fingerprint/tower-layer-cbfd986b2c761aee/dep-lib-tower_layer new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/tower-layer-cbfd986b2c761aee/dep-lib-tower_layer differ diff --git a/examples/agent_server/target/debug/.fingerprint/tower-layer-cbfd986b2c761aee/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/tower-layer-cbfd986b2c761aee/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tower-layer-cbfd986b2c761aee/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tower-layer-cbfd986b2c761aee/lib-tower_layer b/examples/agent_server/target/debug/.fingerprint/tower-layer-cbfd986b2c761aee/lib-tower_layer new file mode 100644 index 0000000..5c87d11 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tower-layer-cbfd986b2c761aee/lib-tower_layer @@ -0,0 +1 @@ +1e59f2f757dde5cd \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tower-layer-cbfd986b2c761aee/lib-tower_layer.json b/examples/agent_server/target/debug/.fingerprint/tower-layer-cbfd986b2c761aee/lib-tower_layer.json new file mode 100644 index 0000000..f82463d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tower-layer-cbfd986b2c761aee/lib-tower_layer.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":6656734005897261505,"profile":2241668132362809309,"path":11039324858967855195,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tower-layer-cbfd986b2c761aee/dep-lib-tower_layer","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tower-service-eace9da83de8d2ed/dep-lib-tower_service b/examples/agent_server/target/debug/.fingerprint/tower-service-eace9da83de8d2ed/dep-lib-tower_service new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/tower-service-eace9da83de8d2ed/dep-lib-tower_service differ diff --git a/examples/agent_server/target/debug/.fingerprint/tower-service-eace9da83de8d2ed/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/tower-service-eace9da83de8d2ed/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tower-service-eace9da83de8d2ed/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tower-service-eace9da83de8d2ed/lib-tower_service b/examples/agent_server/target/debug/.fingerprint/tower-service-eace9da83de8d2ed/lib-tower_service new file mode 100644 index 0000000..c185f13 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tower-service-eace9da83de8d2ed/lib-tower_service @@ -0,0 +1 @@ +3b4d6896aaf23841 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tower-service-eace9da83de8d2ed/lib-tower_service.json b/examples/agent_server/target/debug/.fingerprint/tower-service-eace9da83de8d2ed/lib-tower_service.json new file mode 100644 index 0000000..3086977 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tower-service-eace9da83de8d2ed/lib-tower_service.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":4262671303997282168,"profile":2241668132362809309,"path":6480977603813107243,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tower-service-eace9da83de8d2ed/dep-lib-tower_service","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-624ee079969c6ffb/dep-lib-tracing b/examples/agent_server/target/debug/.fingerprint/tracing-624ee079969c6ffb/dep-lib-tracing new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/tracing-624ee079969c6ffb/dep-lib-tracing differ diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-624ee079969c6ffb/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/tracing-624ee079969c6ffb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tracing-624ee079969c6ffb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-624ee079969c6ffb/lib-tracing b/examples/agent_server/target/debug/.fingerprint/tracing-624ee079969c6ffb/lib-tracing new file mode 100644 index 0000000..e23c810 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tracing-624ee079969c6ffb/lib-tracing @@ -0,0 +1 @@ +ce18ffb2a36c4392 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-624ee079969c6ffb/lib-tracing.json b/examples/agent_server/target/debug/.fingerprint/tracing-624ee079969c6ffb/lib-tracing.json new file mode 100644 index 0000000..03e81b1 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tracing-624ee079969c6ffb/lib-tracing.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"attributes\", \"default\", \"log\", \"std\", \"tracing-attributes\"]","declared_features":"[\"async-await\", \"attributes\", \"default\", \"log\", \"log-always\", \"max_level_debug\", \"max_level_error\", \"max_level_info\", \"max_level_off\", \"max_level_trace\", \"max_level_warn\", \"release_max_level_debug\", \"release_max_level_error\", \"release_max_level_info\", \"release_max_level_off\", \"release_max_level_trace\", \"release_max_level_warn\", \"std\", \"tracing-attributes\", \"valuable\"]","target":5568135053145998517,"profile":15960269462403795582,"path":17849183476802158167,"deps":[[2251399859588827949,"pin_project_lite",false,4667605112942415018],[5938672567312282946,"tracing_attributes",false,6475865814061952391],[16023452927926505185,"tracing_core",false,8332311697974260606],[17353235279385985750,"log",false,17186040896692898078]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tracing-624ee079969c6ffb/dep-lib-tracing","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-attributes-dd89f51f7f268213/dep-lib-tracing_attributes b/examples/agent_server/target/debug/.fingerprint/tracing-attributes-dd89f51f7f268213/dep-lib-tracing_attributes new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/tracing-attributes-dd89f51f7f268213/dep-lib-tracing_attributes differ diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-attributes-dd89f51f7f268213/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/tracing-attributes-dd89f51f7f268213/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tracing-attributes-dd89f51f7f268213/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-attributes-dd89f51f7f268213/lib-tracing_attributes b/examples/agent_server/target/debug/.fingerprint/tracing-attributes-dd89f51f7f268213/lib-tracing_attributes new file mode 100644 index 0000000..e7a7d42 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tracing-attributes-dd89f51f7f268213/lib-tracing_attributes @@ -0,0 +1 @@ +872d42b4a5e5de59 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-attributes-dd89f51f7f268213/lib-tracing_attributes.json b/examples/agent_server/target/debug/.fingerprint/tracing-attributes-dd89f51f7f268213/lib-tracing_attributes.json new file mode 100644 index 0000000..bbc71ab --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tracing-attributes-dd89f51f7f268213/lib-tracing_attributes.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"async-await\"]","target":8647784244936583625,"profile":8954976685155339804,"path":15340028740809735162,"deps":[[8949245912927223590,"quote",false,3425229716652418837],[10190449710562616856,"syn",false,4945112598065903290],[16346726298725429545,"proc_macro2",false,16093586419399039199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tracing-attributes-dd89f51f7f268213/dep-lib-tracing_attributes","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-core-86839c816b2e0c2e/dep-lib-tracing_core b/examples/agent_server/target/debug/.fingerprint/tracing-core-86839c816b2e0c2e/dep-lib-tracing_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/tracing-core-86839c816b2e0c2e/dep-lib-tracing_core differ diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-core-86839c816b2e0c2e/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/tracing-core-86839c816b2e0c2e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tracing-core-86839c816b2e0c2e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-core-86839c816b2e0c2e/lib-tracing_core b/examples/agent_server/target/debug/.fingerprint/tracing-core-86839c816b2e0c2e/lib-tracing_core new file mode 100644 index 0000000..1032164 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tracing-core-86839c816b2e0c2e/lib-tracing_core @@ -0,0 +1 @@ +7e7396c35751a273 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-core-86839c816b2e0c2e/lib-tracing_core.json b/examples/agent_server/target/debug/.fingerprint/tracing-core-86839c816b2e0c2e/lib-tracing_core.json new file mode 100644 index 0000000..9034481 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tracing-core-86839c816b2e0c2e/lib-tracing_core.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"once_cell\", \"std\"]","declared_features":"[\"default\", \"once_cell\", \"std\", \"valuable\"]","target":14276081467424924844,"profile":15960269462403795582,"path":17397011327040698195,"deps":[[5855319743879205494,"once_cell",false,7610680052321812291]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tracing-core-86839c816b2e0c2e/dep-lib-tracing_core","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-log-4e4514a0c3f7a13a/dep-lib-tracing_log b/examples/agent_server/target/debug/.fingerprint/tracing-log-4e4514a0c3f7a13a/dep-lib-tracing_log new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/tracing-log-4e4514a0c3f7a13a/dep-lib-tracing_log differ diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-log-4e4514a0c3f7a13a/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/tracing-log-4e4514a0c3f7a13a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tracing-log-4e4514a0c3f7a13a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-log-4e4514a0c3f7a13a/lib-tracing_log b/examples/agent_server/target/debug/.fingerprint/tracing-log-4e4514a0c3f7a13a/lib-tracing_log new file mode 100644 index 0000000..7545fe3 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tracing-log-4e4514a0c3f7a13a/lib-tracing_log @@ -0,0 +1 @@ +2ef66b28e9cde34f \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-log-4e4514a0c3f7a13a/lib-tracing_log.json b/examples/agent_server/target/debug/.fingerprint/tracing-log-4e4514a0c3f7a13a/lib-tracing_log.json new file mode 100644 index 0000000..a218ece --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tracing-log-4e4514a0c3f7a13a/lib-tracing_log.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"log-tracer\", \"std\"]","declared_features":"[\"ahash\", \"default\", \"interest-cache\", \"log-tracer\", \"lru\", \"std\"]","target":13317203838154184687,"profile":2241668132362809309,"path":4207414707853313320,"deps":[[5855319743879205494,"once_cell",false,7610680052321812291],[16023452927926505185,"tracing_core",false,8332311697974260606],[17353235279385985750,"log",false,17186040896692898078]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tracing-log-4e4514a0c3f7a13a/dep-lib-tracing_log","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-subscriber-9a3203c357d69d99/dep-lib-tracing_subscriber b/examples/agent_server/target/debug/.fingerprint/tracing-subscriber-9a3203c357d69d99/dep-lib-tracing_subscriber new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/tracing-subscriber-9a3203c357d69d99/dep-lib-tracing_subscriber differ diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-subscriber-9a3203c357d69d99/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/tracing-subscriber-9a3203c357d69d99/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tracing-subscriber-9a3203c357d69d99/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-subscriber-9a3203c357d69d99/lib-tracing_subscriber b/examples/agent_server/target/debug/.fingerprint/tracing-subscriber-9a3203c357d69d99/lib-tracing_subscriber new file mode 100644 index 0000000..467ad1f --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tracing-subscriber-9a3203c357d69d99/lib-tracing_subscriber @@ -0,0 +1 @@ +88dc03ff65e32622 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tracing-subscriber-9a3203c357d69d99/lib-tracing_subscriber.json b/examples/agent_server/target/debug/.fingerprint/tracing-subscriber-9a3203c357d69d99/lib-tracing_subscriber.json new file mode 100644 index 0000000..51b8e90 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tracing-subscriber-9a3203c357d69d99/lib-tracing_subscriber.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"ansi\", \"default\", \"env-filter\", \"fmt\", \"matchers\", \"nu-ansi-term\", \"once_cell\", \"registry\", \"sharded-slab\", \"smallvec\", \"std\", \"thread_local\", \"tracing\", \"tracing-log\"]","declared_features":"[\"alloc\", \"ansi\", \"chrono\", \"default\", \"env-filter\", \"fmt\", \"json\", \"local-time\", \"matchers\", \"nu-ansi-term\", \"once_cell\", \"parking_lot\", \"regex\", \"registry\", \"serde\", \"serde_json\", \"sharded-slab\", \"smallvec\", \"std\", \"thread_local\", \"time\", \"tracing\", \"tracing-log\", \"tracing-serde\", \"valuable\", \"valuable-serde\", \"valuable_crate\"]","target":4817557058868189149,"profile":15960269462403795582,"path":2914965097377877562,"deps":[[1017461770342116999,"sharded_slab",false,15682471420391085872],[1731763078628082640,"regex_automata",false,18151721268034804921],[2295442787663447226,"smallvec",false,7862439461198811059],[5599393681448432053,"nu_ansi_term",false,13530482113118461256],[5855319743879205494,"once_cell",false,7610680052321812291],[10806489435541507125,"tracing_log",false,5756671149998863918],[12304704321894466720,"thread_local",false,14217981392195156927],[14757622794040968908,"tracing",false,10539387003315624142],[16023452927926505185,"tracing_core",false,8332311697974260606],[18218885586351977002,"matchers",false,3765977711950095784]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tracing-subscriber-9a3203c357d69d99/dep-lib-tracing_subscriber","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tungstenite-91f3723d4e936b7b/dep-lib-tungstenite b/examples/agent_server/target/debug/.fingerprint/tungstenite-91f3723d4e936b7b/dep-lib-tungstenite new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/tungstenite-91f3723d4e936b7b/dep-lib-tungstenite differ diff --git a/examples/agent_server/target/debug/.fingerprint/tungstenite-91f3723d4e936b7b/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/tungstenite-91f3723d4e936b7b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tungstenite-91f3723d4e936b7b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tungstenite-91f3723d4e936b7b/lib-tungstenite b/examples/agent_server/target/debug/.fingerprint/tungstenite-91f3723d4e936b7b/lib-tungstenite new file mode 100644 index 0000000..55df6df --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tungstenite-91f3723d4e936b7b/lib-tungstenite @@ -0,0 +1 @@ +4a7c08de003dcd3b \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/tungstenite-91f3723d4e936b7b/lib-tungstenite.json b/examples/agent_server/target/debug/.fingerprint/tungstenite-91f3723d4e936b7b/lib-tungstenite.json new file mode 100644 index 0000000..8d4f23c --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/tungstenite-91f3723d4e936b7b/lib-tungstenite.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"__rustls-tls\", \"data-encoding\", \"handshake\", \"http\", \"httparse\", \"rustls\", \"rustls-pki-types\", \"sha1\", \"url\"]","declared_features":"[\"__rustls-tls\", \"data-encoding\", \"default\", \"handshake\", \"http\", \"httparse\", \"native-tls\", \"native-tls-crate\", \"native-tls-vendored\", \"rustls\", \"rustls-native-certs\", \"rustls-pki-types\", \"rustls-tls-native-roots\", \"rustls-tls-webpki-roots\", \"sha1\", \"url\", \"webpki-roots\"]","target":1270341572213479472,"profile":2241668132362809309,"path":2548403628845888954,"deps":[[1528297757488249563,"url",false,11564461910222937280],[3712811570531045576,"byteorder",false,980446122268447380],[4359956005902820838,"utf8",false,15476983783665877534],[4952115107791248386,"data_encoding",false,9276175859860213168],[5983280909402811768,"rand",false,18170937448928278409],[6163892036024256188,"httparse",false,12904259766456053515],[7413599186401546189,"rustls_pki_types",false,11378963077967121345],[8008191657135824715,"thiserror",false,15082001926084265561],[11926622812581095017,"bytes",false,17162365318241494045],[12320328748302079349,"sha1",false,2493245946642215623],[12328341851100645683,"http",false,13193275052002188385],[17020669599254637850,"rustls",false,15006486788010640464],[17353235279385985750,"log",false,17186040896692898078]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tungstenite-91f3723d4e936b7b/dep-lib-tungstenite","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/typenum-0bb98beaf5b40e6d/dep-lib-typenum b/examples/agent_server/target/debug/.fingerprint/typenum-0bb98beaf5b40e6d/dep-lib-typenum new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/typenum-0bb98beaf5b40e6d/dep-lib-typenum differ diff --git a/examples/agent_server/target/debug/.fingerprint/typenum-0bb98beaf5b40e6d/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/typenum-0bb98beaf5b40e6d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/typenum-0bb98beaf5b40e6d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/typenum-0bb98beaf5b40e6d/lib-typenum b/examples/agent_server/target/debug/.fingerprint/typenum-0bb98beaf5b40e6d/lib-typenum new file mode 100644 index 0000000..c98ea6c --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/typenum-0bb98beaf5b40e6d/lib-typenum @@ -0,0 +1 @@ +4708b3d6853fb75a \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/typenum-0bb98beaf5b40e6d/lib-typenum.json b/examples/agent_server/target/debug/.fingerprint/typenum-0bb98beaf5b40e6d/lib-typenum.json new file mode 100644 index 0000000..99f7f81 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/typenum-0bb98beaf5b40e6d/lib-typenum.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"const-generics\", \"i128\", \"scale-info\", \"scale_info\", \"strict\"]","target":2349969882102649915,"profile":2241668132362809309,"path":3047178956458484508,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/typenum-0bb98beaf5b40e6d/dep-lib-typenum","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/dep-lib-unicode_ident b/examples/agent_server/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/dep-lib-unicode_ident new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/dep-lib-unicode_ident differ diff --git a/examples/agent_server/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/lib-unicode_ident b/examples/agent_server/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/lib-unicode_ident new file mode 100644 index 0000000..286eafa --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/lib-unicode_ident @@ -0,0 +1 @@ +c2ccceea3176268c \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/lib-unicode_ident.json b/examples/agent_server/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/lib-unicode_ident.json new file mode 100644 index 0000000..8233480 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/lib-unicode_ident.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":14045917370260632744,"profile":2225463790103693989,"path":5099001234488561179,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/dep-lib-unicode_ident","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/untrusted-19fd2289d6420e0d/dep-lib-untrusted b/examples/agent_server/target/debug/.fingerprint/untrusted-19fd2289d6420e0d/dep-lib-untrusted new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/untrusted-19fd2289d6420e0d/dep-lib-untrusted differ diff --git a/examples/agent_server/target/debug/.fingerprint/untrusted-19fd2289d6420e0d/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/untrusted-19fd2289d6420e0d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/untrusted-19fd2289d6420e0d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/untrusted-19fd2289d6420e0d/lib-untrusted b/examples/agent_server/target/debug/.fingerprint/untrusted-19fd2289d6420e0d/lib-untrusted new file mode 100644 index 0000000..ad27ce5 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/untrusted-19fd2289d6420e0d/lib-untrusted @@ -0,0 +1 @@ +8906248ad970ba51 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/untrusted-19fd2289d6420e0d/lib-untrusted.json b/examples/agent_server/target/debug/.fingerprint/untrusted-19fd2289d6420e0d/lib-untrusted.json new file mode 100644 index 0000000..99b2ed8 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/untrusted-19fd2289d6420e0d/lib-untrusted.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":13950522111565505587,"profile":2241668132362809309,"path":6720810851124042901,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/untrusted-19fd2289d6420e0d/dep-lib-untrusted","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/url-5422e6f5e81cbd38/dep-lib-url b/examples/agent_server/target/debug/.fingerprint/url-5422e6f5e81cbd38/dep-lib-url new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/url-5422e6f5e81cbd38/dep-lib-url differ diff --git a/examples/agent_server/target/debug/.fingerprint/url-5422e6f5e81cbd38/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/url-5422e6f5e81cbd38/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/url-5422e6f5e81cbd38/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/url-5422e6f5e81cbd38/lib-url b/examples/agent_server/target/debug/.fingerprint/url-5422e6f5e81cbd38/lib-url new file mode 100644 index 0000000..ea3b8f2 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/url-5422e6f5e81cbd38/lib-url @@ -0,0 +1 @@ +c09c5f11d6387da0 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/url-5422e6f5e81cbd38/lib-url.json b/examples/agent_server/target/debug/.fingerprint/url-5422e6f5e81cbd38/lib-url.json new file mode 100644 index 0000000..20daf15 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/url-5422e6f5e81cbd38/lib-url.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"debugger_visualizer\", \"default\", \"expose_internals\", \"serde\", \"std\"]","target":7686100221094031937,"profile":2241668132362809309,"path":12030594524521818388,"deps":[[1074175012458081222,"form_urlencoded",false,1206735495900643632],[6159443412421938570,"idna",false,8450472934959099587],[6803352382179706244,"percent_encoding",false,17460257087533955988]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/url-5422e6f5e81cbd38/dep-lib-url","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/utf-8-0973d5089af50192/dep-lib-utf8 b/examples/agent_server/target/debug/.fingerprint/utf-8-0973d5089af50192/dep-lib-utf8 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/utf-8-0973d5089af50192/dep-lib-utf8 differ diff --git a/examples/agent_server/target/debug/.fingerprint/utf-8-0973d5089af50192/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/utf-8-0973d5089af50192/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/utf-8-0973d5089af50192/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/utf-8-0973d5089af50192/lib-utf8 b/examples/agent_server/target/debug/.fingerprint/utf-8-0973d5089af50192/lib-utf8 new file mode 100644 index 0000000..5ebedda --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/utf-8-0973d5089af50192/lib-utf8 @@ -0,0 +1 @@ +1ec2e22bc04ac9d6 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/utf-8-0973d5089af50192/lib-utf8.json b/examples/agent_server/target/debug/.fingerprint/utf-8-0973d5089af50192/lib-utf8.json new file mode 100644 index 0000000..0b2b75c --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/utf-8-0973d5089af50192/lib-utf8.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":10206970129552530490,"profile":2241668132362809309,"path":12178361327127998363,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/utf-8-0973d5089af50192/dep-lib-utf8","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/dep-lib-utf8_iter b/examples/agent_server/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/dep-lib-utf8_iter new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/dep-lib-utf8_iter differ diff --git a/examples/agent_server/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/lib-utf8_iter b/examples/agent_server/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/lib-utf8_iter new file mode 100644 index 0000000..d38cbe8 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/lib-utf8_iter @@ -0,0 +1 @@ +3658c4e358bec21a \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/lib-utf8_iter.json b/examples/agent_server/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/lib-utf8_iter.json new file mode 100644 index 0000000..01747a5 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/lib-utf8_iter.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":6216520282702351879,"profile":2241668132362809309,"path":6953924605607883249,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/utf8_iter-7da21bedc099d769/dep-lib-utf8_iter","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/version_check-48d66f356588878b/dep-lib-version_check b/examples/agent_server/target/debug/.fingerprint/version_check-48d66f356588878b/dep-lib-version_check new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/version_check-48d66f356588878b/dep-lib-version_check differ diff --git a/examples/agent_server/target/debug/.fingerprint/version_check-48d66f356588878b/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/version_check-48d66f356588878b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/version_check-48d66f356588878b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/version_check-48d66f356588878b/lib-version_check b/examples/agent_server/target/debug/.fingerprint/version_check-48d66f356588878b/lib-version_check new file mode 100644 index 0000000..ea377a2 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/version_check-48d66f356588878b/lib-version_check @@ -0,0 +1 @@ +a473897b8bab244c \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/version_check-48d66f356588878b/lib-version_check.json b/examples/agent_server/target/debug/.fingerprint/version_check-48d66f356588878b/lib-version_check.json new file mode 100644 index 0000000..5cda495 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/version_check-48d66f356588878b/lib-version_check.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":18099224280402537651,"profile":2225463790103693989,"path":12140957580734597878,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/version_check-48d66f356588878b/dep-lib-version_check","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/webpki-roots-6759103a522ed320/dep-lib-webpki_roots b/examples/agent_server/target/debug/.fingerprint/webpki-roots-6759103a522ed320/dep-lib-webpki_roots new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/webpki-roots-6759103a522ed320/dep-lib-webpki_roots differ diff --git a/examples/agent_server/target/debug/.fingerprint/webpki-roots-6759103a522ed320/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/webpki-roots-6759103a522ed320/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/webpki-roots-6759103a522ed320/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/webpki-roots-6759103a522ed320/lib-webpki_roots b/examples/agent_server/target/debug/.fingerprint/webpki-roots-6759103a522ed320/lib-webpki_roots new file mode 100644 index 0000000..454c7e1 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/webpki-roots-6759103a522ed320/lib-webpki_roots @@ -0,0 +1 @@ +a6b3ec550c7881de \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/webpki-roots-6759103a522ed320/lib-webpki_roots.json b/examples/agent_server/target/debug/.fingerprint/webpki-roots-6759103a522ed320/lib-webpki_roots.json new file mode 100644 index 0000000..2745e18 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/webpki-roots-6759103a522ed320/lib-webpki_roots.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":16723591926615603170,"profile":2241668132362809309,"path":12258853887241576002,"deps":[[7413599186401546189,"pki_types",false,11378963077967121345]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/webpki-roots-6759103a522ed320/dep-lib-webpki_roots","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/webpki-roots-b79135aa405a6d6f/dep-lib-webpki_roots b/examples/agent_server/target/debug/.fingerprint/webpki-roots-b79135aa405a6d6f/dep-lib-webpki_roots new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/webpki-roots-b79135aa405a6d6f/dep-lib-webpki_roots differ diff --git a/examples/agent_server/target/debug/.fingerprint/webpki-roots-b79135aa405a6d6f/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/webpki-roots-b79135aa405a6d6f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/webpki-roots-b79135aa405a6d6f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/webpki-roots-b79135aa405a6d6f/lib-webpki_roots b/examples/agent_server/target/debug/.fingerprint/webpki-roots-b79135aa405a6d6f/lib-webpki_roots new file mode 100644 index 0000000..192dba2 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/webpki-roots-b79135aa405a6d6f/lib-webpki_roots @@ -0,0 +1 @@ +897c905330316ac2 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/webpki-roots-b79135aa405a6d6f/lib-webpki_roots.json b/examples/agent_server/target/debug/.fingerprint/webpki-roots-b79135aa405a6d6f/lib-webpki_roots.json new file mode 100644 index 0000000..3e95cd5 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/webpki-roots-b79135aa405a6d6f/lib-webpki_roots.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":16723591926615603170,"profile":2241668132362809309,"path":4199729412719050547,"deps":[[5689874662413347516,"parent",false,16033228142792192934]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/webpki-roots-b79135aa405a6d6f/dep-lib-webpki_roots","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/writeable-d27a59526004cf7e/dep-lib-writeable b/examples/agent_server/target/debug/.fingerprint/writeable-d27a59526004cf7e/dep-lib-writeable new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/writeable-d27a59526004cf7e/dep-lib-writeable differ diff --git a/examples/agent_server/target/debug/.fingerprint/writeable-d27a59526004cf7e/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/writeable-d27a59526004cf7e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/writeable-d27a59526004cf7e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/writeable-d27a59526004cf7e/lib-writeable b/examples/agent_server/target/debug/.fingerprint/writeable-d27a59526004cf7e/lib-writeable new file mode 100644 index 0000000..680512c --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/writeable-d27a59526004cf7e/lib-writeable @@ -0,0 +1 @@ +01b412c4ff2be684 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/writeable-d27a59526004cf7e/lib-writeable.json b/examples/agent_server/target/debug/.fingerprint/writeable-d27a59526004cf7e/lib-writeable.json new file mode 100644 index 0000000..08b6f25 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/writeable-d27a59526004cf7e/lib-writeable.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"alloc\", \"default\", \"either\"]","target":6209224040855486982,"profile":15319846033271432293,"path":4603314379414331744,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/writeable-d27a59526004cf7e/dep-lib-writeable","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/yoke-a23da5055a12e7d2/dep-lib-yoke b/examples/agent_server/target/debug/.fingerprint/yoke-a23da5055a12e7d2/dep-lib-yoke new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/yoke-a23da5055a12e7d2/dep-lib-yoke differ diff --git a/examples/agent_server/target/debug/.fingerprint/yoke-a23da5055a12e7d2/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/yoke-a23da5055a12e7d2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/yoke-a23da5055a12e7d2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/yoke-a23da5055a12e7d2/lib-yoke b/examples/agent_server/target/debug/.fingerprint/yoke-a23da5055a12e7d2/lib-yoke new file mode 100644 index 0000000..4818ae9 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/yoke-a23da5055a12e7d2/lib-yoke @@ -0,0 +1 @@ +f195eac0756c8c6a \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/yoke-a23da5055a12e7d2/lib-yoke.json b/examples/agent_server/target/debug/.fingerprint/yoke-a23da5055a12e7d2/lib-yoke.json new file mode 100644 index 0000000..09e1cfe --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/yoke-a23da5055a12e7d2/lib-yoke.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"derive\", \"zerofrom\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"serde\", \"zerofrom\"]","target":11250006364125496299,"profile":15470915970897398656,"path":11916407324591565764,"deps":[[12481580349051900383,"zerofrom",false,12998051971519074897],[12669569555400633618,"stable_deref_trait",false,6923334992282444819],[16311920433940660851,"yoke_derive",false,13483227664974143156]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/yoke-a23da5055a12e7d2/dep-lib-yoke","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/yoke-derive-50144caf197ce3d3/dep-lib-yoke_derive b/examples/agent_server/target/debug/.fingerprint/yoke-derive-50144caf197ce3d3/dep-lib-yoke_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/yoke-derive-50144caf197ce3d3/dep-lib-yoke_derive differ diff --git a/examples/agent_server/target/debug/.fingerprint/yoke-derive-50144caf197ce3d3/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/yoke-derive-50144caf197ce3d3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/yoke-derive-50144caf197ce3d3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/yoke-derive-50144caf197ce3d3/lib-yoke_derive b/examples/agent_server/target/debug/.fingerprint/yoke-derive-50144caf197ce3d3/lib-yoke_derive new file mode 100644 index 0000000..94b6eb7 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/yoke-derive-50144caf197ce3d3/lib-yoke_derive @@ -0,0 +1 @@ +b4de80c41f0c1ebb \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/yoke-derive-50144caf197ce3d3/lib-yoke_derive.json b/examples/agent_server/target/debug/.fingerprint/yoke-derive-50144caf197ce3d3/lib-yoke_derive.json new file mode 100644 index 0000000..95c63b8 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/yoke-derive-50144caf197ce3d3/lib-yoke_derive.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":1654536213780382264,"profile":17177036626609572155,"path":8064018977285691200,"deps":[[4621990586401870511,"synstructure",false,9090993297549677174],[8949245912927223590,"quote",false,3425229716652418837],[10190449710562616856,"syn",false,4945112598065903290],[16346726298725429545,"proc_macro2",false,16093586419399039199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/yoke-derive-50144caf197ce3d3/dep-lib-yoke_derive","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerocopy-1eb3aee294bb57c5/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/zerocopy-1eb3aee294bb57c5/build-script-build-script-build new file mode 100644 index 0000000..b78bb49 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerocopy-1eb3aee294bb57c5/build-script-build-script-build @@ -0,0 +1 @@ +668eaa281142dbfa \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerocopy-1eb3aee294bb57c5/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/zerocopy-1eb3aee294bb57c5/build-script-build-script-build.json new file mode 100644 index 0000000..90eec38 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerocopy-1eb3aee294bb57c5/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":5408242616063297496,"profile":2225463790103693989,"path":6766881693714007122,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerocopy-1eb3aee294bb57c5/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerocopy-1eb3aee294bb57c5/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/zerocopy-1eb3aee294bb57c5/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/zerocopy-1eb3aee294bb57c5/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/zerocopy-1eb3aee294bb57c5/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/zerocopy-1eb3aee294bb57c5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerocopy-1eb3aee294bb57c5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerocopy-a4ac3e25d0877bbc/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/zerocopy-a4ac3e25d0877bbc/run-build-script-build-script-build new file mode 100644 index 0000000..b642162 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerocopy-a4ac3e25d0877bbc/run-build-script-build-script-build @@ -0,0 +1 @@ +da99e196df913234 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerocopy-a4ac3e25d0877bbc/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/zerocopy-a4ac3e25d0877bbc/run-build-script-build-script-build.json new file mode 100644 index 0000000..f0c3710 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerocopy-a4ac3e25d0877bbc/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[7068267936014523539,"build_script_build",false,18076114170845761126]],"local":[{"RerunIfChanged":{"output":"debug/build/zerocopy-a4ac3e25d0877bbc/output","paths":["build.rs","Cargo.toml"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerocopy-b770e178a71ee8b7/dep-lib-zerocopy b/examples/agent_server/target/debug/.fingerprint/zerocopy-b770e178a71ee8b7/dep-lib-zerocopy new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/zerocopy-b770e178a71ee8b7/dep-lib-zerocopy differ diff --git a/examples/agent_server/target/debug/.fingerprint/zerocopy-b770e178a71ee8b7/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/zerocopy-b770e178a71ee8b7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerocopy-b770e178a71ee8b7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerocopy-b770e178a71ee8b7/lib-zerocopy b/examples/agent_server/target/debug/.fingerprint/zerocopy-b770e178a71ee8b7/lib-zerocopy new file mode 100644 index 0000000..4f5edcb --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerocopy-b770e178a71ee8b7/lib-zerocopy @@ -0,0 +1 @@ +918fec69af31ae62 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerocopy-b770e178a71ee8b7/lib-zerocopy.json b/examples/agent_server/target/debug/.fingerprint/zerocopy-b770e178a71ee8b7/lib-zerocopy.json new file mode 100644 index 0000000..f8ff31d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerocopy-b770e178a71ee8b7/lib-zerocopy.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":3084901215544504908,"profile":2241668132362809309,"path":12916987552942917601,"deps":[[7068267936014523539,"build_script_build",false,3761229028302887386]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerocopy-b770e178a71ee8b7/dep-lib-zerocopy","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerofrom-77e989a3aae75ab1/dep-lib-zerofrom b/examples/agent_server/target/debug/.fingerprint/zerofrom-77e989a3aae75ab1/dep-lib-zerofrom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/zerofrom-77e989a3aae75ab1/dep-lib-zerofrom differ diff --git a/examples/agent_server/target/debug/.fingerprint/zerofrom-77e989a3aae75ab1/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/zerofrom-77e989a3aae75ab1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerofrom-77e989a3aae75ab1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerofrom-77e989a3aae75ab1/lib-zerofrom b/examples/agent_server/target/debug/.fingerprint/zerofrom-77e989a3aae75ab1/lib-zerofrom new file mode 100644 index 0000000..ecd9ce4 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerofrom-77e989a3aae75ab1/lib-zerofrom @@ -0,0 +1 @@ +51d275c6665b62b4 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerofrom-77e989a3aae75ab1/lib-zerofrom.json b/examples/agent_server/target/debug/.fingerprint/zerofrom-77e989a3aae75ab1/lib-zerofrom.json new file mode 100644 index 0000000..e401715 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerofrom-77e989a3aae75ab1/lib-zerofrom.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"derive\"]","declared_features":"[\"alloc\", \"default\", \"derive\"]","target":723370850876025358,"profile":15470915970897398656,"path":11033449008477232080,"deps":[[8736710335745631552,"zerofrom_derive",false,2588438723744338024]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerofrom-77e989a3aae75ab1/dep-lib-zerofrom","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerofrom-derive-3a4d23d5b36d2ca9/dep-lib-zerofrom_derive b/examples/agent_server/target/debug/.fingerprint/zerofrom-derive-3a4d23d5b36d2ca9/dep-lib-zerofrom_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/zerofrom-derive-3a4d23d5b36d2ca9/dep-lib-zerofrom_derive differ diff --git a/examples/agent_server/target/debug/.fingerprint/zerofrom-derive-3a4d23d5b36d2ca9/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/zerofrom-derive-3a4d23d5b36d2ca9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerofrom-derive-3a4d23d5b36d2ca9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerofrom-derive-3a4d23d5b36d2ca9/lib-zerofrom_derive b/examples/agent_server/target/debug/.fingerprint/zerofrom-derive-3a4d23d5b36d2ca9/lib-zerofrom_derive new file mode 100644 index 0000000..0f21e19 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerofrom-derive-3a4d23d5b36d2ca9/lib-zerofrom_derive @@ -0,0 +1 @@ +6890a51b4efbeb23 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerofrom-derive-3a4d23d5b36d2ca9/lib-zerofrom_derive.json b/examples/agent_server/target/debug/.fingerprint/zerofrom-derive-3a4d23d5b36d2ca9/lib-zerofrom_derive.json new file mode 100644 index 0000000..8b842c1 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerofrom-derive-3a4d23d5b36d2ca9/lib-zerofrom_derive.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":1753304412232254384,"profile":17177036626609572155,"path":7206638110024683109,"deps":[[4621990586401870511,"synstructure",false,9090993297549677174],[8949245912927223590,"quote",false,3425229716652418837],[10190449710562616856,"syn",false,4945112598065903290],[16346726298725429545,"proc_macro2",false,16093586419399039199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerofrom-derive-3a4d23d5b36d2ca9/dep-lib-zerofrom_derive","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zeroize-b69ca5a7f93c9720/dep-lib-zeroize b/examples/agent_server/target/debug/.fingerprint/zeroize-b69ca5a7f93c9720/dep-lib-zeroize new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/zeroize-b69ca5a7f93c9720/dep-lib-zeroize differ diff --git a/examples/agent_server/target/debug/.fingerprint/zeroize-b69ca5a7f93c9720/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/zeroize-b69ca5a7f93c9720/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zeroize-b69ca5a7f93c9720/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zeroize-b69ca5a7f93c9720/lib-zeroize b/examples/agent_server/target/debug/.fingerprint/zeroize-b69ca5a7f93c9720/lib-zeroize new file mode 100644 index 0000000..344c8c4 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zeroize-b69ca5a7f93c9720/lib-zeroize @@ -0,0 +1 @@ +813614a2694172fa \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zeroize-b69ca5a7f93c9720/lib-zeroize.json b/examples/agent_server/target/debug/.fingerprint/zeroize-b69ca5a7f93c9720/lib-zeroize.json new file mode 100644 index 0000000..69ee0a0 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zeroize-b69ca5a7f93c9720/lib-zeroize.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"derive\", \"zeroize_derive\"]","declared_features":"[\"aarch64\", \"alloc\", \"default\", \"derive\", \"serde\", \"simd\", \"std\", \"zeroize_derive\"]","target":7575551630991315204,"profile":13295673445137985655,"path":13360997272717070069,"deps":[[8789880790286324704,"zeroize_derive",false,4504377648031367053]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zeroize-b69ca5a7f93c9720/dep-lib-zeroize","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zeroize_derive-d3fa77acb6994567/dep-lib-zeroize_derive b/examples/agent_server/target/debug/.fingerprint/zeroize_derive-d3fa77acb6994567/dep-lib-zeroize_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/zeroize_derive-d3fa77acb6994567/dep-lib-zeroize_derive differ diff --git a/examples/agent_server/target/debug/.fingerprint/zeroize_derive-d3fa77acb6994567/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/zeroize_derive-d3fa77acb6994567/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zeroize_derive-d3fa77acb6994567/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zeroize_derive-d3fa77acb6994567/lib-zeroize_derive b/examples/agent_server/target/debug/.fingerprint/zeroize_derive-d3fa77acb6994567/lib-zeroize_derive new file mode 100644 index 0000000..6864c29 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zeroize_derive-d3fa77acb6994567/lib-zeroize_derive @@ -0,0 +1 @@ +8d7f1e0d9bc3823e \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zeroize_derive-d3fa77acb6994567/lib-zeroize_derive.json b/examples/agent_server/target/debug/.fingerprint/zeroize_derive-d3fa77acb6994567/lib-zeroize_derive.json new file mode 100644 index 0000000..5e4399f --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zeroize_derive-d3fa77acb6994567/lib-zeroize_derive.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":13474687042175650235,"profile":13187465763711128883,"path":11207903052894792266,"deps":[[8949245912927223590,"quote",false,3425229716652418837],[10190449710562616856,"syn",false,4945112598065903290],[16346726298725429545,"proc_macro2",false,16093586419399039199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zeroize_derive-d3fa77acb6994567/dep-lib-zeroize_derive","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerotrie-e366599f5babf6f1/dep-lib-zerotrie b/examples/agent_server/target/debug/.fingerprint/zerotrie-e366599f5babf6f1/dep-lib-zerotrie new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/zerotrie-e366599f5babf6f1/dep-lib-zerotrie differ diff --git a/examples/agent_server/target/debug/.fingerprint/zerotrie-e366599f5babf6f1/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/zerotrie-e366599f5babf6f1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerotrie-e366599f5babf6f1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerotrie-e366599f5babf6f1/lib-zerotrie b/examples/agent_server/target/debug/.fingerprint/zerotrie-e366599f5babf6f1/lib-zerotrie new file mode 100644 index 0000000..2d19a07 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerotrie-e366599f5babf6f1/lib-zerotrie @@ -0,0 +1 @@ +391c590d44253f7e \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerotrie-e366599f5babf6f1/lib-zerotrie.json b/examples/agent_server/target/debug/.fingerprint/zerotrie-e366599f5babf6f1/lib-zerotrie.json new file mode 100644 index 0000000..38616d1 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerotrie-e366599f5babf6f1/lib-zerotrie.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"yoke\", \"zerofrom\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"dense\", \"litemap\", \"serde\", \"yoke\", \"zerofrom\", \"zerovec\"]","target":12445875338185814621,"profile":15319846033271432293,"path":14709232119954189801,"deps":[[4367327283662589161,"yoke",false,7677630717763425777],[7664967068156160197,"displaydoc",false,8157948546110905249],[12481580349051900383,"zerofrom",false,12998051971519074897]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerotrie-e366599f5babf6f1/dep-lib-zerotrie","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerovec-460e8f612daf2d2e/dep-lib-zerovec b/examples/agent_server/target/debug/.fingerprint/zerovec-460e8f612daf2d2e/dep-lib-zerovec new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/zerovec-460e8f612daf2d2e/dep-lib-zerovec differ diff --git a/examples/agent_server/target/debug/.fingerprint/zerovec-460e8f612daf2d2e/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/zerovec-460e8f612daf2d2e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerovec-460e8f612daf2d2e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerovec-460e8f612daf2d2e/lib-zerovec b/examples/agent_server/target/debug/.fingerprint/zerovec-460e8f612daf2d2e/lib-zerovec new file mode 100644 index 0000000..df68f3f --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerovec-460e8f612daf2d2e/lib-zerovec @@ -0,0 +1 @@ +ea1da238b5d3c86f \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerovec-460e8f612daf2d2e/lib-zerovec.json b/examples/agent_server/target/debug/.fingerprint/zerovec-460e8f612daf2d2e/lib-zerovec.json new file mode 100644 index 0000000..70328e1 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerovec-460e8f612daf2d2e/lib-zerovec.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"derive\", \"yoke\"]","declared_features":"[\"alloc\", \"databake\", \"derive\", \"hashmap\", \"schemars\", \"serde\", \"std\", \"yoke\"]","target":1825474209729987087,"profile":15319846033271432293,"path":8076641172070478705,"deps":[[4367327283662589161,"yoke",false,7677630717763425777],[12481580349051900383,"zerofrom",false,12998051971519074897],[13916398663282415334,"zerovec_derive",false,1082702554811238108]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerovec-460e8f612daf2d2e/dep-lib-zerovec","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerovec-derive-1b28ea032c489d8a/dep-lib-zerovec_derive b/examples/agent_server/target/debug/.fingerprint/zerovec-derive-1b28ea032c489d8a/dep-lib-zerovec_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/zerovec-derive-1b28ea032c489d8a/dep-lib-zerovec_derive differ diff --git a/examples/agent_server/target/debug/.fingerprint/zerovec-derive-1b28ea032c489d8a/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/zerovec-derive-1b28ea032c489d8a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerovec-derive-1b28ea032c489d8a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerovec-derive-1b28ea032c489d8a/lib-zerovec_derive b/examples/agent_server/target/debug/.fingerprint/zerovec-derive-1b28ea032c489d8a/lib-zerovec_derive new file mode 100644 index 0000000..0d56d9b --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerovec-derive-1b28ea032c489d8a/lib-zerovec_derive @@ -0,0 +1 @@ +dc86eeb83c88060f \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zerovec-derive-1b28ea032c489d8a/lib-zerovec_derive.json b/examples/agent_server/target/debug/.fingerprint/zerovec-derive-1b28ea032c489d8a/lib-zerovec_derive.json new file mode 100644 index 0000000..d76d4b4 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zerovec-derive-1b28ea032c489d8a/lib-zerovec_derive.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":14030368369369144574,"profile":17177036626609572155,"path":15788821099228741078,"deps":[[8949245912927223590,"quote",false,3425229716652418837],[10190449710562616856,"syn",false,4945112598065903290],[16346726298725429545,"proc_macro2",false,16093586419399039199]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerovec-derive-1b28ea032c489d8a/dep-lib-zerovec_derive","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zmij-09764c09118bc5c9/dep-lib-zmij b/examples/agent_server/target/debug/.fingerprint/zmij-09764c09118bc5c9/dep-lib-zmij new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/zmij-09764c09118bc5c9/dep-lib-zmij differ diff --git a/examples/agent_server/target/debug/.fingerprint/zmij-09764c09118bc5c9/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/zmij-09764c09118bc5c9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zmij-09764c09118bc5c9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zmij-09764c09118bc5c9/lib-zmij b/examples/agent_server/target/debug/.fingerprint/zmij-09764c09118bc5c9/lib-zmij new file mode 100644 index 0000000..3453819 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zmij-09764c09118bc5c9/lib-zmij @@ -0,0 +1 @@ +80a75f848cc77c63 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zmij-09764c09118bc5c9/lib-zmij.json b/examples/agent_server/target/debug/.fingerprint/zmij-09764c09118bc5c9/lib-zmij.json new file mode 100644 index 0000000..794a0f5 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zmij-09764c09118bc5c9/lib-zmij.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"no-panic\"]","target":16603507647234574737,"profile":2241668132362809309,"path":12234166441033065369,"deps":[[16226529040278277557,"build_script_build",false,18024177201373993393]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zmij-09764c09118bc5c9/dep-lib-zmij","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zmij-1d41e468114f7fa5/run-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/zmij-1d41e468114f7fa5/run-build-script-build-script-build new file mode 100644 index 0000000..3458ae4 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zmij-1d41e468114f7fa5/run-build-script-build-script-build @@ -0,0 +1 @@ +b1599720abbd22fa \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zmij-1d41e468114f7fa5/run-build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/zmij-1d41e468114f7fa5/run-build-script-build-script-build.json new file mode 100644 index 0000000..3f2ba89 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zmij-1d41e468114f7fa5/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[16226529040278277557,"build_script_build",false,15492212153124122005]],"local":[{"RerunIfChanged":{"output":"debug/build/zmij-1d41e468114f7fa5/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zmij-37c7a7b83a60607f/build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/zmij-37c7a7b83a60607f/build-script-build-script-build new file mode 100644 index 0000000..d574358 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zmij-37c7a7b83a60607f/build-script-build-script-build @@ -0,0 +1 @@ +95edf33bdf64ffd6 \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zmij-37c7a7b83a60607f/build-script-build-script-build.json b/examples/agent_server/target/debug/.fingerprint/zmij-37c7a7b83a60607f/build-script-build-script-build.json new file mode 100644 index 0000000..ad0c586 --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zmij-37c7a7b83a60607f/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"no-panic\"]","target":5408242616063297496,"profile":2225463790103693989,"path":3269043988998986641,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zmij-37c7a7b83a60607f/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/agent_server/target/debug/.fingerprint/zmij-37c7a7b83a60607f/dep-build-script-build-script-build b/examples/agent_server/target/debug/.fingerprint/zmij-37c7a7b83a60607f/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/agent_server/target/debug/.fingerprint/zmij-37c7a7b83a60607f/dep-build-script-build-script-build differ diff --git a/examples/agent_server/target/debug/.fingerprint/zmij-37c7a7b83a60607f/invoked.timestamp b/examples/agent_server/target/debug/.fingerprint/zmij-37c7a7b83a60607f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/.fingerprint/zmij-37c7a7b83a60607f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/antigravity-sdk-rust-2ed49e035e1b3834/build-script-build b/examples/agent_server/target/debug/build/antigravity-sdk-rust-2ed49e035e1b3834/build-script-build new file mode 100755 index 0000000..7923397 Binary files /dev/null and b/examples/agent_server/target/debug/build/antigravity-sdk-rust-2ed49e035e1b3834/build-script-build differ diff --git a/examples/agent_server/target/debug/build/antigravity-sdk-rust-2ed49e035e1b3834/build_script_build-2ed49e035e1b3834 b/examples/agent_server/target/debug/build/antigravity-sdk-rust-2ed49e035e1b3834/build_script_build-2ed49e035e1b3834 new file mode 100755 index 0000000..7923397 Binary files /dev/null and b/examples/agent_server/target/debug/build/antigravity-sdk-rust-2ed49e035e1b3834/build_script_build-2ed49e035e1b3834 differ diff --git a/examples/agent_server/target/debug/build/antigravity-sdk-rust-2ed49e035e1b3834/build_script_build-2ed49e035e1b3834.d b/examples/agent_server/target/debug/build/antigravity-sdk-rust-2ed49e035e1b3834/build_script_build-2ed49e035e1b3834.d new file mode 100644 index 0000000..cfaa941 --- /dev/null +++ b/examples/agent_server/target/debug/build/antigravity-sdk-rust-2ed49e035e1b3834/build_script_build-2ed49e035e1b3834.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/antigravity-sdk-rust-2ed49e035e1b3834/build_script_build-2ed49e035e1b3834.d: /home/user/antigravity-sdk-rust/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/antigravity-sdk-rust-2ed49e035e1b3834/build_script_build-2ed49e035e1b3834: /home/user/antigravity-sdk-rust/build.rs + +/home/user/antigravity-sdk-rust/build.rs: diff --git a/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/invoked.timestamp b/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/out/antigravity.localharness.rs b/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/out/antigravity.localharness.rs new file mode 100644 index 0000000..c7fd383 --- /dev/null +++ b/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/out/antigravity.localharness.rs @@ -0,0 +1,1623 @@ +// This file is @generated by prost-build. +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct InputConfig { + #[prost(string, optional, tag = "1")] + pub storage_directory: ::core::option::Option<::prost::alloc::string::String>, + #[prost(uint32, optional, tag = "2")] + pub port: ::core::option::Option, + #[prost(string, optional, tag = "3")] + pub bind_address: ::core::option::Option<::prost::alloc::string::String>, + #[prost(message, optional, tag = "4")] + pub client_info: ::core::option::Option, + #[prost(map = "string, string", tag = "5")] + pub env: ::std::collections::HashMap< + ::prost::alloc::string::String, + ::prost::alloc::string::String, + >, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct InitializeConversationEvent { + #[prost(message, optional, tag = "1")] + pub config: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ClientInfo { + #[prost(string, optional, tag = "1")] + pub language: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub version: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "3")] + pub language_version: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "4")] + pub os: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "5")] + pub os_version: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct HarnessConfig { + #[prost(string, optional, tag = "1")] + pub cascade_id: ::core::option::Option<::prost::alloc::string::String>, + #[prost( + enumeration = "harness_config::SessionContinuationMode", + optional, + tag = "19" + )] + pub session_continuation_mode: ::core::option::Option, + #[prost(message, optional, tag = "4")] + pub system_instructions: ::core::option::Option, + #[prost(message, repeated, tag = "5")] + pub tools: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "6")] + pub harness_side_tools: ::core::option::Option, + #[prost(uint32, optional, tag = "7")] + pub compaction_threshold: ::core::option::Option, + #[prost(message, repeated, tag = "8")] + pub workspaces: ::prost::alloc::vec::Vec, + #[prost(string, repeated, tag = "9")] + pub skills_paths: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + #[prost(string, optional, tag = "10")] + pub finish_tool_schema_json: ::core::option::Option<::prost::alloc::string::String>, + #[prost(bytes = "vec", optional, tag = "11")] + pub initial_trajectory: ::core::option::Option<::prost::alloc::vec::Vec>, + #[prost(string, optional, tag = "12")] + pub app_data_dir: ::core::option::Option<::prost::alloc::string::String>, + #[prost(message, repeated, tag = "14")] + pub mcp_servers: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "15")] + pub models: ::prost::alloc::vec::Vec, + #[prost(enumeration = "LifecycleHook", repeated, tag = "16")] + pub enabled_hooks: ::prost::alloc::vec::Vec, + #[prost(message, repeated, tag = "17")] + pub custom_subagents: ::prost::alloc::vec::Vec, + #[prost(message, optional, tag = "18")] + pub tool_output_truncation: ::core::option::Option, + #[prost(message, optional, tag = "20")] + pub retry_config: ::core::option::Option, +} +/// Nested message and enum types in `HarnessConfig`. +pub mod harness_config { + #[derive( + Clone, + Copy, + Debug, + PartialEq, + Eq, + Hash, + PartialOrd, + Ord, + ::prost::Enumeration + )] + #[repr(i32)] + pub enum SessionContinuationMode { + Unspecified = 0, + Resume = 1, + CreateOrResume = 2, + CreateOnly = 3, + } + impl SessionContinuationMode { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + SessionContinuationMode::Unspecified => { + "SESSION_CONTINUATION_MODE_UNSPECIFIED" + } + SessionContinuationMode::Resume => "RESUME", + SessionContinuationMode::CreateOrResume => "CREATE_OR_RESUME", + SessionContinuationMode::CreateOnly => "CREATE_ONLY", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "SESSION_CONTINUATION_MODE_UNSPECIFIED" => Some(Self::Unspecified), + "RESUME" => Some(Self::Resume), + "CREATE_OR_RESUME" => Some(Self::CreateOrResume), + "CREATE_ONLY" => Some(Self::CreateOnly), + _ => None, + } + } + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ModelApiRetryConfig { + #[prost(uint32, optional, tag = "1")] + pub max_retries: ::core::option::Option, + #[prost(uint32, optional, tag = "2")] + pub initial_sleep_duration_ms: ::core::option::Option, + #[prost(double, optional, tag = "3")] + pub exponential_multiplier: ::core::option::Option, + #[prost(double, optional, tag = "4")] + pub jitter_range: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ModelOutputRetryConfig { + #[prost(uint32, optional, tag = "1")] + pub max_retries: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct RetryConfig { + #[prost(message, optional, tag = "1")] + pub api_retry: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub model_output_retry: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Workspace { + #[prost(oneof = "workspace::WorkspaceType", tags = "1")] + pub workspace_type: ::core::option::Option, +} +/// Nested message and enum types in `Workspace`. +pub mod workspace { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum WorkspaceType { + #[prost(message, tag = "1")] + FilesystemWorkspace(super::FilesystemWorkspace), + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FilesystemWorkspace { + #[prost(string, optional, tag = "1")] + pub directory: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GeminiModelOptions { + #[prost(string, optional, tag = "1")] + pub thinking_level: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GeminiApiEndpoint { + #[prost(string, optional, tag = "1")] + pub base_url: ::core::option::Option<::prost::alloc::string::String>, + #[prost(map = "string, string", tag = "2")] + pub http_headers: ::std::collections::HashMap< + ::prost::alloc::string::String, + ::prost::alloc::string::String, + >, + #[prost(string, optional, tag = "3")] + pub api_key: ::core::option::Option<::prost::alloc::string::String>, + #[prost(message, optional, tag = "4")] + pub options: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct VertexEndpoint { + #[prost(string, optional, tag = "1")] + pub base_url: ::core::option::Option<::prost::alloc::string::String>, + #[prost(map = "string, string", tag = "2")] + pub http_headers: ::std::collections::HashMap< + ::prost::alloc::string::String, + ::prost::alloc::string::String, + >, + #[prost(string, optional, tag = "3")] + pub project: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "4")] + pub location: ::core::option::Option<::prost::alloc::string::String>, + #[prost(message, optional, tag = "5")] + pub options: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ModelConfig { + #[prost(string, optional, tag = "1")] + pub name: ::core::option::Option<::prost::alloc::string::String>, + #[prost(enumeration = "ModelType", repeated, tag = "2")] + pub types: ::prost::alloc::vec::Vec, + #[prost(oneof = "model_config::Endpoint", tags = "3, 4, 6, 7")] + pub endpoint: ::core::option::Option, +} +/// Nested message and enum types in `ModelConfig`. +pub mod model_config { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Endpoint { + #[prost(message, tag = "3")] + GeminiApiEndpoint(super::GeminiApiEndpoint), + #[prost(message, tag = "4")] + VertexEndpoint(super::VertexEndpoint), + #[prost(message, tag = "6")] + GemmaEndpoint(super::GemmaEndpoint), + #[prost(message, tag = "7")] + CustomEndpoint(super::CustomEndpoint), + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GemmaEndpoint { + #[prost(string, optional, tag = "1")] + pub base_url: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct CustomEndpoint { + #[prost(string, optional, tag = "1")] + pub backend_type: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub config_json: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SystemInstructions { + #[prost(oneof = "system_instructions::Type", tags = "1, 2")] + pub r#type: ::core::option::Option, +} +/// Nested message and enum types in `SystemInstructions`. +pub mod system_instructions { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Type { + #[prost(message, tag = "1")] + Custom(super::CustomSystemInstructions), + #[prost(message, tag = "2")] + Appended(super::AppendedSystemInstructions), + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct CustomSystemInstructions { + #[prost(message, repeated, tag = "1")] + pub part: ::prost::alloc::vec::Vec, +} +/// Nested message and enum types in `CustomSystemInstructions`. +pub mod custom_system_instructions { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Message)] + pub struct Part { + #[prost(oneof = "part::Part", tags = "1, 2")] + pub part: ::core::option::Option, + } + /// Nested message and enum types in `Part`. + pub mod part { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Part { + #[prost(string, tag = "1")] + Text(::prost::alloc::string::String), + #[prost(message, tag = "2")] + Template(super::SystemInstructionTemplate), + } + } + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Message)] + pub struct SystemInstructionTemplate { + #[prost(string, optional, tag = "1")] + pub template_name: ::core::option::Option<::prost::alloc::string::String>, + #[prost(message, repeated, tag = "2")] + pub args: ::prost::alloc::vec::Vec, + } + /// Nested message and enum types in `SystemInstructionTemplate`. + pub mod system_instruction_template { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Message)] + pub struct Arg { + #[prost(string, optional, tag = "1")] + pub name: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub value: ::core::option::Option<::prost::alloc::string::String>, + } + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct AppendedSystemInstructions { + #[prost(string, optional, tag = "1")] + pub custom_identity: ::core::option::Option<::prost::alloc::string::String>, + #[prost(message, repeated, tag = "2")] + pub appended_sections: ::prost::alloc::vec::Vec< + appended_system_instructions::Section, + >, +} +/// Nested message and enum types in `AppendedSystemInstructions`. +pub mod appended_system_instructions { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Message)] + pub struct Section { + #[prost(string, optional, tag = "1")] + pub title: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub content: ::core::option::Option<::prost::alloc::string::String>, + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Tool { + #[prost(string, optional, tag = "1")] + pub name: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub description: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "3")] + pub parameters_json_schema: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "4")] + pub response_json_schema: ::core::option::Option<::prost::alloc::string::String>, + #[prost(bool, optional, tag = "5")] + pub defer_loading: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct HarnessSideTools { + #[prost(message, optional, tag = "1")] + pub find: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub run_command: ::core::option::Option, + #[prost(message, optional, tag = "3")] + pub subagents: ::core::option::Option, + #[prost(message, optional, tag = "4")] + pub user_questions: ::core::option::Option, + #[prost(message, optional, tag = "5")] + pub file_edit: ::core::option::Option, + #[prost(message, optional, tag = "6")] + pub view_file: ::core::option::Option, + #[prost(message, optional, tag = "7")] + pub write_to_file: ::core::option::Option, + #[prost(message, optional, tag = "8")] + pub grep_search: ::core::option::Option, + #[prost(message, optional, tag = "9")] + pub list_dir: ::core::option::Option, + #[prost(message, optional, tag = "10")] + pub permissions: ::core::option::Option, + #[prost(message, optional, tag = "11")] + pub generate_image: ::core::option::Option, + #[prost(message, optional, tag = "12")] + pub search_web: ::core::option::Option, + #[prost(message, optional, tag = "14")] + pub read_url_content: ::core::option::Option, + #[prost(message, optional, tag = "15")] + pub tool_search_config: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FindToolConfig { + #[prost(bool, optional, tag = "1")] + pub enabled: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct RunCommandToolConfig { + #[prost(bool, optional, tag = "1")] + pub enabled: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SubagentsConfig { + #[prost(bool, optional, tag = "1")] + pub enabled: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct UserQuestionsConfig { + #[prost(bool, optional, tag = "1")] + pub enabled: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct FileEditToolConfig { + #[prost(bool, optional, tag = "1")] + pub enabled: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ViewFileToolConfig { + #[prost(bool, optional, tag = "1")] + pub enabled: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct WriteToFileToolConfig { + #[prost(bool, optional, tag = "1")] + pub enabled: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GrepSearchToolConfig { + #[prost(bool, optional, tag = "1")] + pub enabled: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ListDirToolConfig { + #[prost(bool, optional, tag = "1")] + pub enabled: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct GenerateImageToolConfig { + #[prost(bool, optional, tag = "1")] + pub enabled: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct SearchWebToolConfig { + #[prost(bool, optional, tag = "1")] + pub enabled: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ReadUrlContentToolConfig { + #[prost(bool, optional, tag = "1")] + pub enabled: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ToolSearchConfig { + #[prost(bool, optional, tag = "1")] + pub enabled: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct PermissionsConfig { + #[prost(bool, optional, tag = "1")] + pub enforce_workspace_validation: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct OutputConfig { + #[prost(int32, optional, tag = "1")] + pub port: ::core::option::Option, + #[prost(string, optional, tag = "2")] + pub api_key: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct OutputEvent { + #[prost(int64, optional, tag = "1")] + pub seq_num: ::core::option::Option, + #[prost(int64, optional, tag = "2")] + pub timestamp_micros: ::core::option::Option, + #[prost(message, optional, tag = "20")] + pub usage_metadata: ::core::option::Option, + #[prost(oneof = "output_event::Event", tags = "10, 11, 12, 13, 14, 15")] + pub event: ::core::option::Option, +} +/// Nested message and enum types in `OutputEvent`. +pub mod output_event { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Event { + #[prost(message, tag = "10")] + StepUpdate(super::StepUpdate), + #[prost(message, tag = "11")] + TrajectoryStateUpdate(super::TrajectoryStateUpdate), + #[prost(message, tag = "12")] + ToolCall(super::ToolCall), + #[prost(message, tag = "13")] + InitializeConversationResponse(super::InitializeConversationResponse), + #[prost(message, tag = "14")] + CallHookRequest(super::CallHookRequest), + #[prost(bool, tag = "15")] + SessionEndResponse(bool), + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct InitializeConversationResponse { + #[prost(string, optional, tag = "1")] + pub cascade_id: ::core::option::Option<::prost::alloc::string::String>, + #[prost(message, repeated, tag = "2")] + pub history: ::prost::alloc::vec::Vec, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct StepUpdate { + #[prost(string, optional, tag = "1")] + pub cascade_id: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub trajectory_id: ::core::option::Option<::prost::alloc::string::String>, + #[prost(uint32, optional, tag = "3")] + pub step_index: ::core::option::Option, + #[prost(enumeration = "step_update::State", optional, tag = "4")] + pub state: ::core::option::Option, + #[prost(enumeration = "step_update::Source", optional, tag = "5")] + pub source: ::core::option::Option, + #[prost(enumeration = "step_update::Target", optional, tag = "6")] + pub target: ::core::option::Option, + #[prost(string, optional, tag = "7")] + pub error_message: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "8")] + pub thinking: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "9")] + pub text_delta: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "10")] + pub thinking_delta: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "20")] + pub text: ::core::option::Option<::prost::alloc::string::String>, + #[prost(message, optional, tag = "21")] + pub list_directory: ::core::option::Option, + #[prost(message, optional, tag = "22")] + pub find_file: ::core::option::Option, + #[prost(message, optional, tag = "23")] + pub search_directory: ::core::option::Option, + #[prost(message, optional, tag = "24")] + pub view_file: ::core::option::Option, + #[prost(message, optional, tag = "25")] + pub create_file: ::core::option::Option, + #[prost(message, optional, tag = "26")] + pub edit_file: ::core::option::Option, + #[prost(message, optional, tag = "27")] + pub run_command: ::core::option::Option, + #[prost(message, optional, tag = "28")] + pub compaction: ::core::option::Option, + #[prost(message, optional, tag = "29")] + pub invoke_subagent: ::core::option::Option, + #[prost(message, optional, tag = "30")] + pub generate_image: ::core::option::Option, + #[prost(message, optional, tag = "31")] + pub finish: ::core::option::Option, + #[prost(message, optional, tag = "32")] + pub error: ::core::option::Option, + #[prost(message, optional, tag = "33")] + pub mcp_tool: ::core::option::Option, + #[prost(message, optional, tag = "34")] + pub search_web: ::core::option::Option, + #[prost(message, optional, tag = "35")] + pub read_url_content: ::core::option::Option, + #[prost(message, optional, tag = "36")] + pub custom_tool: ::core::option::Option, + #[prost(string, optional, tag = "50")] + pub request_text: ::core::option::Option<::prost::alloc::string::String>, + #[prost(message, optional, tag = "51")] + pub tool_confirmation_request: ::core::option::Option, + #[prost(message, optional, tag = "52")] + pub questions_request: ::core::option::Option, +} +/// Nested message and enum types in `StepUpdate`. +pub mod step_update { + #[derive( + Clone, + Copy, + Debug, + PartialEq, + Eq, + Hash, + PartialOrd, + Ord, + ::prost::Enumeration + )] + #[repr(i32)] + pub enum State { + Unspecified = 0, + Active = 1, + Done = 2, + WaitingForUser = 3, + Error = 4, + } + impl State { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + State::Unspecified => "STATE_UNSPECIFIED", + State::Active => "STATE_ACTIVE", + State::Done => "STATE_DONE", + State::WaitingForUser => "STATE_WAITING_FOR_USER", + State::Error => "STATE_ERROR", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "STATE_UNSPECIFIED" => Some(Self::Unspecified), + "STATE_ACTIVE" => Some(Self::Active), + "STATE_DONE" => Some(Self::Done), + "STATE_WAITING_FOR_USER" => Some(Self::WaitingForUser), + "STATE_ERROR" => Some(Self::Error), + _ => None, + } + } + } + #[derive( + Clone, + Copy, + Debug, + PartialEq, + Eq, + Hash, + PartialOrd, + Ord, + ::prost::Enumeration + )] + #[repr(i32)] + pub enum Source { + Unspecified = 0, + System = 1, + User = 2, + Model = 3, + } + impl Source { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Source::Unspecified => "SOURCE_UNSPECIFIED", + Source::System => "SOURCE_SYSTEM", + Source::User => "SOURCE_USER", + Source::Model => "SOURCE_MODEL", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "SOURCE_UNSPECIFIED" => Some(Self::Unspecified), + "SOURCE_SYSTEM" => Some(Self::System), + "SOURCE_USER" => Some(Self::User), + "SOURCE_MODEL" => Some(Self::Model), + _ => None, + } + } + } + #[derive( + Clone, + Copy, + Debug, + PartialEq, + Eq, + Hash, + PartialOrd, + Ord, + ::prost::Enumeration + )] + #[repr(i32)] + pub enum Target { + Unspecified = 0, + User = 1, + Model = 2, + Environment = 3, + } + impl Target { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Target::Unspecified => "TARGET_UNSPECIFIED", + Target::User => "TARGET_USER", + Target::Model => "TARGET_MODEL", + Target::Environment => "TARGET_ENVIRONMENT", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "TARGET_UNSPECIFIED" => Some(Self::Unspecified), + "TARGET_USER" => Some(Self::User), + "TARGET_MODEL" => Some(Self::Model), + "TARGET_ENVIRONMENT" => Some(Self::Environment), + _ => None, + } + } + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ActionGenerateImage { + #[prost(string, optional, tag = "1")] + pub prompt: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, repeated, tag = "2")] + pub image_paths: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + #[prost(string, optional, tag = "3")] + pub image_name: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "4")] + pub aspect_ratio: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ActionSearchWeb { + #[prost(string, optional, tag = "1")] + pub query: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub domain: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "3")] + pub summary: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ActionReadUrlContent { + #[prost(string, optional, tag = "1")] + pub url: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub title: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "3")] + pub summary: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "4")] + pub content_path: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ActionFinish { + #[prost(string, optional, tag = "1")] + pub output_string: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ActionError { + #[prost(string, optional, tag = "1")] + pub error_message: ::core::option::Option<::prost::alloc::string::String>, + #[prost(uint32, optional, tag = "2")] + pub http_code: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ActionListDirectory { + #[prost(string, optional, tag = "1")] + pub directory_path: ::core::option::Option<::prost::alloc::string::String>, + #[prost(message, repeated, tag = "2")] + pub results: ::prost::alloc::vec::Vec, +} +/// Nested message and enum types in `ActionListDirectory`. +pub mod action_list_directory { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Message)] + pub struct Result { + #[prost(string, optional, tag = "1")] + pub name: ::core::option::Option<::prost::alloc::string::String>, + #[prost(oneof = "result::Info", tags = "2, 3")] + pub info: ::core::option::Option, + } + /// Nested message and enum types in `Result`. + pub mod result { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Info { + #[prost(bool, tag = "2")] + IsDirectory(bool), + #[prost(uint64, tag = "3")] + FileSize(u64), + } + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ActionFindFile { + #[prost(string, optional, tag = "1")] + pub directory_path: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub query: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "3")] + pub output: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ActionSearchDirectory { + #[prost(string, optional, tag = "1")] + pub directory_path: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub query: ::core::option::Option<::prost::alloc::string::String>, + #[prost(int32, optional, tag = "3")] + pub num_results: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ActionViewFile { + #[prost(string, optional, tag = "1")] + pub file_path: ::core::option::Option<::prost::alloc::string::String>, + #[prost(uint32, optional, tag = "2")] + pub start_line: ::core::option::Option, + #[prost(uint32, optional, tag = "3")] + pub end_line: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ActionCreateFile { + #[prost(string, optional, tag = "1")] + pub file_path: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub contents: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ActionEditFile { + #[prost(string, optional, tag = "1")] + pub file_path: ::core::option::Option<::prost::alloc::string::String>, + #[prost(message, repeated, tag = "2")] + pub diff_block: ::prost::alloc::vec::Vec, +} +/// Nested message and enum types in `ActionEditFile`. +pub mod action_edit_file { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Message)] + pub struct DiffLine { + #[prost(string, optional, tag = "1")] + pub text: ::core::option::Option<::prost::alloc::string::String>, + #[prost(enumeration = "diff_line::LineAction", optional, tag = "2")] + pub action: ::core::option::Option, + } + /// Nested message and enum types in `DiffLine`. + pub mod diff_line { + #[derive( + Clone, + Copy, + Debug, + PartialEq, + Eq, + Hash, + PartialOrd, + Ord, + ::prost::Enumeration + )] + #[repr(i32)] + pub enum LineAction { + Unspecified = 0, + Insert = 1, + Delete = 2, + None = 3, + } + impl LineAction { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + LineAction::Unspecified => "LINE_ACTION_UNSPECIFIED", + LineAction::Insert => "LINE_ACTION_INSERT", + LineAction::Delete => "LINE_ACTION_DELETE", + LineAction::None => "LINE_ACTION_NONE", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "LINE_ACTION_UNSPECIFIED" => Some(Self::Unspecified), + "LINE_ACTION_INSERT" => Some(Self::Insert), + "LINE_ACTION_DELETE" => Some(Self::Delete), + "LINE_ACTION_NONE" => Some(Self::None), + _ => None, + } + } + } + } + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Message)] + pub struct DiffBlock { + #[prost(int32, optional, tag = "1")] + pub start_line: ::core::option::Option, + #[prost(int32, optional, tag = "2")] + pub end_line: ::core::option::Option, + #[prost(message, repeated, tag = "3")] + pub lines: ::prost::alloc::vec::Vec, + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ActionRunCommand { + #[prost(string, optional, tag = "1")] + pub command_line: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub working_dir: ::core::option::Option<::prost::alloc::string::String>, + #[prost(int32, optional, tag = "4")] + pub exit_code: ::core::option::Option, + #[prost(string, optional, tag = "5")] + pub combined_output: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ActionCompaction {} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ActionInvokeSubagent {} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ToolConfirmationRequest {} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct UserQuestionsRequest { + #[prost(message, repeated, tag = "1")] + pub questions: ::prost::alloc::vec::Vec, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct UserQuestion { + #[prost(oneof = "user_question::QuestionType", tags = "1")] + pub question_type: ::core::option::Option, +} +/// Nested message and enum types in `UserQuestion`. +pub mod user_question { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum QuestionType { + #[prost(message, tag = "1")] + MultipleChoice(super::MultipleChoice), + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct MultipleChoice { + #[prost(string, optional, tag = "1")] + pub question: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, repeated, tag = "2")] + pub choices: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + #[prost(bool, optional, tag = "3")] + pub is_multi_select: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct InputEvent { + #[prost(oneof = "input_event::Event", tags = "1, 7, 2, 3, 4, 5, 6, 8, 9")] + pub event: ::core::option::Option, +} +/// Nested message and enum types in `InputEvent`. +pub mod input_event { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Event { + #[prost(string, tag = "1")] + UserInput(::prost::alloc::string::String), + #[prost(message, tag = "7")] + ComplexUserInput(super::UserInput), + #[prost(message, tag = "2")] + ToolConfirmation(super::ToolConfirmation), + #[prost(message, tag = "3")] + ToolResponse(super::ToolResponse), + #[prost(message, tag = "4")] + QuestionResponse(super::UserQuestionsResponse), + #[prost(bool, tag = "5")] + HaltRequest(bool), + #[prost(string, tag = "6")] + AutomatedTrigger(::prost::alloc::string::String), + #[prost(message, tag = "8")] + CallHookResponse(super::CallHookResponse), + #[prost(bool, tag = "9")] + SessionEndRequest(bool), + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct UserInput { + #[prost(message, repeated, tag = "1")] + pub parts: ::prost::alloc::vec::Vec, +} +/// Nested message and enum types in `UserInput`. +pub mod user_input { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Message)] + pub struct Media { + #[prost(string, optional, tag = "1")] + pub mime_type: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub description: ::core::option::Option<::prost::alloc::string::String>, + #[prost(bytes = "vec", optional, tag = "3")] + pub data: ::core::option::Option<::prost::alloc::vec::Vec>, + } + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Message)] + pub struct SlashCommand { + #[prost(string, optional, tag = "1")] + pub name: ::core::option::Option<::prost::alloc::string::String>, + } + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Message)] + pub struct Part { + #[prost(oneof = "part::Part", tags = "1, 2, 3")] + pub part: ::core::option::Option, + } + /// Nested message and enum types in `Part`. + pub mod part { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Part { + #[prost(string, tag = "1")] + Text(::prost::alloc::string::String), + #[prost(message, tag = "2")] + Media(super::Media), + #[prost(message, tag = "3")] + SlashCommand(super::SlashCommand), + } + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ToolConfirmation { + #[prost(string, optional, tag = "1")] + pub trajectory_id: ::core::option::Option<::prost::alloc::string::String>, + #[prost(uint32, optional, tag = "2")] + pub step_index: ::core::option::Option, + #[prost(bool, optional, tag = "3")] + pub accepted: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct TrajectoryStateUpdate { + #[prost(string, optional, tag = "2")] + pub trajectory_id: ::core::option::Option<::prost::alloc::string::String>, + #[prost(enumeration = "trajectory_state_update::State", optional, tag = "3")] + pub state: ::core::option::Option, + #[prost(string, optional, tag = "4")] + pub error: ::core::option::Option<::prost::alloc::string::String>, +} +/// Nested message and enum types in `TrajectoryStateUpdate`. +pub mod trajectory_state_update { + #[derive( + Clone, + Copy, + Debug, + PartialEq, + Eq, + Hash, + PartialOrd, + Ord, + ::prost::Enumeration + )] + #[repr(i32)] + pub enum State { + Unspecified = 0, + Running = 1, + FullyIdle = 2, + Cancelled = 3, + } + impl State { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + State::Unspecified => "STATE_UNSPECIFIED", + State::Running => "STATE_RUNNING", + State::FullyIdle => "STATE_FULLY_IDLE", + State::Cancelled => "STATE_CANCELLED", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "STATE_UNSPECIFIED" => Some(Self::Unspecified), + "STATE_RUNNING" => Some(Self::Running), + "STATE_FULLY_IDLE" => Some(Self::FullyIdle), + "STATE_CANCELLED" => Some(Self::Cancelled), + _ => None, + } + } + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ToolCall { + #[prost(string, optional, tag = "1")] + pub id: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub name: ::core::option::Option<::prost::alloc::string::String>, + /// omitted: arguments = 4 (.genai.Struct, defined in content.proto — see scripts/gen_proto.py) + #[prost(string, optional, tag = "3")] + pub arguments_json: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ToolResponse { + #[prost(string, optional, tag = "1")] + pub id: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub response_json: ::core::option::Option<::prost::alloc::string::String>, + #[prost(message, repeated, tag = "3")] + pub supplemental_media: ::prost::alloc::vec::Vec, + /// omitted: response = 4 (.genai.Struct, defined in content.proto — see scripts/gen_proto.py) + #[prost(string, optional, tag = "5")] + pub error_message: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct UserQuestionsResponse { + #[prost(string, optional, tag = "1")] + pub trajectory_id: ::core::option::Option<::prost::alloc::string::String>, + #[prost(uint32, optional, tag = "2")] + pub step_index: ::core::option::Option, + #[prost(oneof = "user_questions_response::Result", tags = "3, 4")] + pub result: ::core::option::Option, +} +/// Nested message and enum types in `UserQuestionsResponse`. +pub mod user_questions_response { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Message)] + pub struct QuestionsResponse { + #[prost(message, repeated, tag = "1")] + pub answers: ::prost::alloc::vec::Vec, + } + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Result { + #[prost(bool, tag = "3")] + Cancelled(bool), + #[prost(message, tag = "4")] + Response(QuestionsResponse), + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct UserQuestionAnswer { + #[prost(oneof = "user_question_answer::Answer", tags = "1, 2")] + pub answer: ::core::option::Option, +} +/// Nested message and enum types in `UserQuestionAnswer`. +pub mod user_question_answer { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Answer { + #[prost(bool, tag = "1")] + Unanswered(bool), + #[prost(message, tag = "2")] + MultipleChoiceAnswer(super::MultipleChoiceAnswer), + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct MultipleChoiceAnswer { + #[prost(int32, repeated, tag = "1")] + pub selected_choice_indices: ::prost::alloc::vec::Vec, + #[prost(string, optional, tag = "2")] + pub freeform_response: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Media { + #[prost(string, optional, tag = "1")] + pub mime_type: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub description: ::core::option::Option<::prost::alloc::string::String>, + #[prost(bytes = "vec", optional, tag = "3")] + pub data: ::core::option::Option<::prost::alloc::vec::Vec>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct UsageMetadata { + #[prost(uint64, optional, tag = "1")] + pub prompt_token_count: ::core::option::Option, + #[prost(uint64, optional, tag = "5")] + pub cached_content_token_count: ::core::option::Option, + #[prost(uint64, optional, tag = "2")] + pub candidates_token_count: ::core::option::Option, + #[prost(uint64, optional, tag = "4")] + pub thoughts_token_count: ::core::option::Option, + #[prost(uint64, optional, tag = "3")] + pub total_token_count: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct McpServerConfig { + #[prost(string, optional, tag = "1")] + pub name: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, repeated, tag = "4")] + pub enabled_tools: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + #[prost(string, repeated, tag = "5")] + pub disabled_tools: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + #[prost(enumeration = "mcp_server_config::AuthProviderType", optional, tag = "6")] + pub auth_provider_type: ::core::option::Option, + #[prost(int32, optional, tag = "7")] + pub timeout_seconds: ::core::option::Option, + #[prost(oneof = "mcp_server_config::Transport", tags = "2, 3")] + pub transport: ::core::option::Option, +} +/// Nested message and enum types in `McpServerConfig`. +pub mod mcp_server_config { + #[derive( + Clone, + Copy, + Debug, + PartialEq, + Eq, + Hash, + PartialOrd, + Ord, + ::prost::Enumeration + )] + #[repr(i32)] + pub enum AuthProviderType { + Unspecified = 0, + GoogleCredentials = 1, + } + impl AuthProviderType { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + AuthProviderType::Unspecified => "AUTH_PROVIDER_TYPE_UNSPECIFIED", + AuthProviderType::GoogleCredentials => { + "AUTH_PROVIDER_TYPE_GOOGLE_CREDENTIALS" + } + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "AUTH_PROVIDER_TYPE_UNSPECIFIED" => Some(Self::Unspecified), + "AUTH_PROVIDER_TYPE_GOOGLE_CREDENTIALS" => Some(Self::GoogleCredentials), + _ => None, + } + } + } + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Transport { + #[prost(message, tag = "2")] + Stdio(super::McpStdioTransport), + #[prost(message, tag = "3")] + Http(super::McpHttpTransport), + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct McpStdioTransport { + #[prost(string, optional, tag = "1")] + pub command: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, repeated, tag = "2")] + pub args: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, + #[prost(map = "string, string", tag = "3")] + pub env: ::std::collections::HashMap< + ::prost::alloc::string::String, + ::prost::alloc::string::String, + >, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct McpHttpTransport { + #[prost(string, optional, tag = "1")] + pub url: ::core::option::Option<::prost::alloc::string::String>, + #[prost(map = "string, string", tag = "2")] + pub headers: ::std::collections::HashMap< + ::prost::alloc::string::String, + ::prost::alloc::string::String, + >, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ActionMcpTool { + #[prost(string, optional, tag = "1")] + pub server_name: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub tool_name: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "3")] + pub arguments_json: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ActionCustomTool { + #[prost(message, optional, tag = "1")] + pub tool_call: ::core::option::Option, + #[prost(message, optional, tag = "2")] + pub tool_response: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct CallHookRequest { + #[prost(string, optional, tag = "1")] + pub request_id: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub name: ::core::option::Option<::prost::alloc::string::String>, + #[prost(enumeration = "LifecycleHook", optional, tag = "7")] + pub r#type: ::core::option::Option, + #[prost(oneof = "call_hook_request::Args", tags = "3, 4, 5, 6, 8")] + pub args: ::core::option::Option, +} +/// Nested message and enum types in `CallHookRequest`. +pub mod call_hook_request { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Args { + #[prost(message, tag = "3")] + PreTurnArgs(super::PreTurnArgs), + #[prost(message, tag = "4")] + PostTurnArgs(super::PostTurnArgs), + #[prost(message, tag = "5")] + PreToolArgs(super::PreToolArgs), + #[prost(message, tag = "6")] + PostToolArgs(super::PostToolArgs), + #[prost(message, tag = "8")] + OnToolErrorArgs(super::OnToolErrorArgs), + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct CallHookResponse { + #[prost(string, optional, tag = "1")] + pub request_id: ::core::option::Option<::prost::alloc::string::String>, + #[prost(oneof = "call_hook_response::Result", tags = "2, 3, 4, 5, 6")] + pub result: ::core::option::Option, +} +/// Nested message and enum types in `CallHookResponse`. +pub mod call_hook_response { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Result { + #[prost(message, tag = "2")] + PreTurnResult(super::PreTurnResult), + #[prost(message, tag = "3")] + PreToolResult(super::PreToolResult), + #[prost(message, tag = "4")] + EmptyResult(super::EmptyResult), + #[prost(string, tag = "5")] + ErrorMessage(::prost::alloc::string::String), + #[prost(message, tag = "6")] + OnToolErrorResult(super::OnToolErrorResult), + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct PreToolArgs { + #[prost(string, optional, tag = "1")] + pub tool_name: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub arguments_json: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "3")] + pub server_name: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct PostToolArgs { + #[prost(string, optional, tag = "1")] + pub tool_name: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub result: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "3")] + pub error: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "5")] + pub server_name: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct OnToolErrorArgs { + #[prost(string, optional, tag = "1")] + pub tool_name: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub error_message: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "4")] + pub server_name: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct PreTurnArgs { + #[prost(message, optional, tag = "1")] + pub user_input: ::core::option::Option, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct PostTurnArgs { + #[prost(string, optional, tag = "1")] + pub response_text: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct EmptyResult {} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct OnToolErrorResult { + #[prost(string, optional, tag = "1")] + pub custom_error_message: ::core::option::Option<::prost::alloc::string::String>, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct PreToolResult { + #[prost(enumeration = "pre_tool_result::Decision", optional, tag = "1")] + pub decision: ::core::option::Option, + #[prost(string, optional, tag = "2")] + pub reason: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "3")] + pub modified_arguments_json: ::core::option::Option<::prost::alloc::string::String>, +} +/// Nested message and enum types in `PreToolResult`. +pub mod pre_tool_result { + #[derive( + Clone, + Copy, + Debug, + PartialEq, + Eq, + Hash, + PartialOrd, + Ord, + ::prost::Enumeration + )] + #[repr(i32)] + pub enum Decision { + Unspecified = 0, + Allow = 1, + Deny = 2, + } + impl Decision { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Decision::Unspecified => "DECISION_UNSPECIFIED", + Decision::Allow => "ALLOW", + Decision::Deny => "DENY", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "DECISION_UNSPECIFIED" => Some(Self::Unspecified), + "ALLOW" => Some(Self::Allow), + "DENY" => Some(Self::Deny), + _ => None, + } + } + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct PreTurnResult { + #[prost(enumeration = "pre_turn_result::Decision", optional, tag = "1")] + pub decision: ::core::option::Option, + #[prost(string, optional, tag = "2")] + pub reason: ::core::option::Option<::prost::alloc::string::String>, +} +/// Nested message and enum types in `PreTurnResult`. +pub mod pre_turn_result { + #[derive( + Clone, + Copy, + Debug, + PartialEq, + Eq, + Hash, + PartialOrd, + Ord, + ::prost::Enumeration + )] + #[repr(i32)] + pub enum Decision { + Unspecified = 0, + Allow = 1, + Deny = 2, + } + impl Decision { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + Decision::Unspecified => "DECISION_UNSPECIFIED", + Decision::Allow => "ALLOW", + Decision::Deny => "DENY", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "DECISION_UNSPECIFIED" => Some(Self::Unspecified), + "ALLOW" => Some(Self::Allow), + "DENY" => Some(Self::Deny), + _ => None, + } + } + } +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct CustomAgent { + #[prost(string, optional, tag = "1")] + pub name: ::core::option::Option<::prost::alloc::string::String>, + #[prost(string, optional, tag = "2")] + pub description: ::core::option::Option<::prost::alloc::string::String>, + #[prost(message, optional, tag = "3")] + pub system_instructions: ::core::option::Option, + #[prost(message, optional, tag = "4")] + pub harness_side_tools: ::core::option::Option, + #[prost(message, repeated, tag = "5")] + pub tools: ::prost::alloc::vec::Vec, +} +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct ToolOutputTruncation { + #[prost(oneof = "tool_output_truncation::Strategy", tags = "1, 2")] + pub strategy: ::core::option::Option, +} +/// Nested message and enum types in `ToolOutputTruncation`. +pub mod tool_output_truncation { + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Message)] + pub struct TruncateStrategy { + #[prost(int32, optional, tag = "1")] + pub max_tokens: ::core::option::Option, + } + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Message)] + pub struct ErrorStrategy { + #[prost(int32, optional, tag = "1")] + pub max_tokens: ::core::option::Option, + #[prost(string, optional, tag = "2")] + pub error_message: ::core::option::Option<::prost::alloc::string::String>, + } + #[allow(clippy::derive_partial_eq_without_eq)] + #[derive(Clone, PartialEq, ::prost::Oneof)] + pub enum Strategy { + #[prost(message, tag = "1")] + Truncate(TruncateStrategy), + #[prost(message, tag = "2")] + Error(ErrorStrategy), + } +} +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] +pub enum LifecycleHook { + Unspecified = 0, + OnSessionStart = 1, + OnSessionEnd = 2, + PreTurn = 3, + PostTurn = 4, + PreTool = 5, + PostTool = 6, + OnToolError = 7, +} +impl LifecycleHook { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + LifecycleHook::Unspecified => "LIFECYCLE_HOOK_UNSPECIFIED", + LifecycleHook::OnSessionStart => "LIFECYCLE_HOOK_ON_SESSION_START", + LifecycleHook::OnSessionEnd => "LIFECYCLE_HOOK_ON_SESSION_END", + LifecycleHook::PreTurn => "LIFECYCLE_HOOK_PRE_TURN", + LifecycleHook::PostTurn => "LIFECYCLE_HOOK_POST_TURN", + LifecycleHook::PreTool => "LIFECYCLE_HOOK_PRE_TOOL", + LifecycleHook::PostTool => "LIFECYCLE_HOOK_POST_TOOL", + LifecycleHook::OnToolError => "LIFECYCLE_HOOK_ON_TOOL_ERROR", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "LIFECYCLE_HOOK_UNSPECIFIED" => Some(Self::Unspecified), + "LIFECYCLE_HOOK_ON_SESSION_START" => Some(Self::OnSessionStart), + "LIFECYCLE_HOOK_ON_SESSION_END" => Some(Self::OnSessionEnd), + "LIFECYCLE_HOOK_PRE_TURN" => Some(Self::PreTurn), + "LIFECYCLE_HOOK_POST_TURN" => Some(Self::PostTurn), + "LIFECYCLE_HOOK_PRE_TOOL" => Some(Self::PreTool), + "LIFECYCLE_HOOK_POST_TOOL" => Some(Self::PostTool), + "LIFECYCLE_HOOK_ON_TOOL_ERROR" => Some(Self::OnToolError), + _ => None, + } + } +} +#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)] +#[repr(i32)] +pub enum ModelType { + Unspecified = 0, + Text = 1, + Image = 2, +} +impl ModelType { + /// String value of the enum field names used in the ProtoBuf definition. + /// + /// The values are not transformed in any way and thus are considered stable + /// (if the ProtoBuf definition does not change) and safe for programmatic use. + pub fn as_str_name(&self) -> &'static str { + match self { + ModelType::Unspecified => "MODEL_TYPE_UNSPECIFIED", + ModelType::Text => "MODEL_TYPE_TEXT", + ModelType::Image => "MODEL_TYPE_IMAGE", + } + } + /// Creates an enum from field names used in the ProtoBuf definition. + pub fn from_str_name(value: &str) -> ::core::option::Option { + match value { + "MODEL_TYPE_UNSPECIFIED" => Some(Self::Unspecified), + "MODEL_TYPE_TEXT" => Some(Self::Text), + "MODEL_TYPE_IMAGE" => Some(Self::Image), + _ => None, + } + } +} diff --git a/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/out/antigravity.localharness.serde.rs b/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/out/antigravity.localharness.serde.rs new file mode 100644 index 0000000..cb0f865 --- /dev/null +++ b/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/out/antigravity.localharness.serde.rs @@ -0,0 +1,13746 @@ +impl serde::Serialize for ActionCompaction { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let len = 0; + let struct_ser = serializer.serialize_struct("antigravity.localharness.ActionCompaction", len)?; + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ActionCompaction { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + Ok(GeneratedField::__SkipField__) + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ActionCompaction; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionCompaction") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + while map_.next_key::()?.is_some() { + let _ = map_.next_value::()?; + } + Ok(ActionCompaction { + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionCompaction", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ActionCreateFile { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.file_path.is_some() { + len += 1; + } + if self.contents.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ActionCreateFile", len)?; + if let Some(v) = self.file_path.as_ref() { + struct_ser.serialize_field("filePath", v)?; + } + if let Some(v) = self.contents.as_ref() { + struct_ser.serialize_field("contents", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ActionCreateFile { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "file_path", + "filePath", + "contents", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + FilePath, + Contents, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "filePath" | "file_path" => Ok(GeneratedField::FilePath), + "contents" => Ok(GeneratedField::Contents), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ActionCreateFile; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionCreateFile") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut file_path__ = None; + let mut contents__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::FilePath => { + if file_path__.is_some() { + return Err(serde::de::Error::duplicate_field("filePath")); + } + file_path__ = map_.next_value()?; + } + GeneratedField::Contents => { + if contents__.is_some() { + return Err(serde::de::Error::duplicate_field("contents")); + } + contents__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ActionCreateFile { + file_path: file_path__, + contents: contents__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionCreateFile", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ActionCustomTool { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.tool_call.is_some() { + len += 1; + } + if self.tool_response.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ActionCustomTool", len)?; + if let Some(v) = self.tool_call.as_ref() { + struct_ser.serialize_field("toolCall", v)?; + } + if let Some(v) = self.tool_response.as_ref() { + struct_ser.serialize_field("toolResponse", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ActionCustomTool { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "tool_call", + "toolCall", + "tool_response", + "toolResponse", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + ToolCall, + ToolResponse, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "toolCall" | "tool_call" => Ok(GeneratedField::ToolCall), + "toolResponse" | "tool_response" => Ok(GeneratedField::ToolResponse), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ActionCustomTool; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionCustomTool") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut tool_call__ = None; + let mut tool_response__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::ToolCall => { + if tool_call__.is_some() { + return Err(serde::de::Error::duplicate_field("toolCall")); + } + tool_call__ = map_.next_value()?; + } + GeneratedField::ToolResponse => { + if tool_response__.is_some() { + return Err(serde::de::Error::duplicate_field("toolResponse")); + } + tool_response__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ActionCustomTool { + tool_call: tool_call__, + tool_response: tool_response__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionCustomTool", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ActionEditFile { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.file_path.is_some() { + len += 1; + } + if !self.diff_block.is_empty() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ActionEditFile", len)?; + if let Some(v) = self.file_path.as_ref() { + struct_ser.serialize_field("filePath", v)?; + } + if !self.diff_block.is_empty() { + struct_ser.serialize_field("diffBlock", &self.diff_block)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ActionEditFile { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "file_path", + "filePath", + "diff_block", + "diffBlock", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + FilePath, + DiffBlock, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "filePath" | "file_path" => Ok(GeneratedField::FilePath), + "diffBlock" | "diff_block" => Ok(GeneratedField::DiffBlock), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ActionEditFile; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionEditFile") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut file_path__ = None; + let mut diff_block__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::FilePath => { + if file_path__.is_some() { + return Err(serde::de::Error::duplicate_field("filePath")); + } + file_path__ = map_.next_value()?; + } + GeneratedField::DiffBlock => { + if diff_block__.is_some() { + return Err(serde::de::Error::duplicate_field("diffBlock")); + } + diff_block__ = Some(map_.next_value()?); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ActionEditFile { + file_path: file_path__, + diff_block: diff_block__.unwrap_or_default(), + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionEditFile", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for action_edit_file::DiffBlock { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.start_line.is_some() { + len += 1; + } + if self.end_line.is_some() { + len += 1; + } + if !self.lines.is_empty() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ActionEditFile.DiffBlock", len)?; + if let Some(v) = self.start_line.as_ref() { + struct_ser.serialize_field("startLine", v)?; + } + if let Some(v) = self.end_line.as_ref() { + struct_ser.serialize_field("endLine", v)?; + } + if !self.lines.is_empty() { + struct_ser.serialize_field("lines", &self.lines)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for action_edit_file::DiffBlock { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "start_line", + "startLine", + "end_line", + "endLine", + "lines", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + StartLine, + EndLine, + Lines, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "startLine" | "start_line" => Ok(GeneratedField::StartLine), + "endLine" | "end_line" => Ok(GeneratedField::EndLine), + "lines" => Ok(GeneratedField::Lines), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = action_edit_file::DiffBlock; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionEditFile.DiffBlock") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut start_line__ = None; + let mut end_line__ = None; + let mut lines__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::StartLine => { + if start_line__.is_some() { + return Err(serde::de::Error::duplicate_field("startLine")); + } + start_line__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::EndLine => { + if end_line__.is_some() { + return Err(serde::de::Error::duplicate_field("endLine")); + } + end_line__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::Lines => { + if lines__.is_some() { + return Err(serde::de::Error::duplicate_field("lines")); + } + lines__ = Some(map_.next_value()?); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(action_edit_file::DiffBlock { + start_line: start_line__, + end_line: end_line__, + lines: lines__.unwrap_or_default(), + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionEditFile.DiffBlock", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for action_edit_file::DiffLine { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.text.is_some() { + len += 1; + } + if self.action.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ActionEditFile.DiffLine", len)?; + if let Some(v) = self.text.as_ref() { + struct_ser.serialize_field("text", v)?; + } + if let Some(v) = self.action.as_ref() { + let v = action_edit_file::diff_line::LineAction::try_from(*v) + .map_err(|_| serde::ser::Error::custom(format!("Invalid variant {}", *v)))?; + struct_ser.serialize_field("action", &v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for action_edit_file::DiffLine { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "text", + "action", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Text, + Action, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "text" => Ok(GeneratedField::Text), + "action" => Ok(GeneratedField::Action), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = action_edit_file::DiffLine; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionEditFile.DiffLine") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut text__ = None; + let mut action__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Text => { + if text__.is_some() { + return Err(serde::de::Error::duplicate_field("text")); + } + text__ = map_.next_value()?; + } + GeneratedField::Action => { + if action__.is_some() { + return Err(serde::de::Error::duplicate_field("action")); + } + action__ = map_.next_value::<::std::option::Option>()?.map(|x| x as i32); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(action_edit_file::DiffLine { + text: text__, + action: action__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionEditFile.DiffLine", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for action_edit_file::diff_line::LineAction { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + let variant = match self { + Self::Unspecified => "LINE_ACTION_UNSPECIFIED", + Self::Insert => "LINE_ACTION_INSERT", + Self::Delete => "LINE_ACTION_DELETE", + Self::None => "LINE_ACTION_NONE", + }; + serializer.serialize_str(variant) + } +} +impl<'de> serde::Deserialize<'de> for action_edit_file::diff_line::LineAction { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "LINE_ACTION_UNSPECIFIED", + "LINE_ACTION_INSERT", + "LINE_ACTION_DELETE", + "LINE_ACTION_NONE", + ]; + + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = action_edit_file::diff_line::LineAction; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + fn visit_i64(self, v: i64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Signed(v), &self) + }) + } + + fn visit_u64(self, v: u64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Unsigned(v), &self) + }) + } + + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "LINE_ACTION_UNSPECIFIED" => Ok(action_edit_file::diff_line::LineAction::Unspecified), + "LINE_ACTION_INSERT" => Ok(action_edit_file::diff_line::LineAction::Insert), + "LINE_ACTION_DELETE" => Ok(action_edit_file::diff_line::LineAction::Delete), + "LINE_ACTION_NONE" => Ok(action_edit_file::diff_line::LineAction::None), + _ => Err(serde::de::Error::unknown_variant(value, FIELDS)), + } + } + } + deserializer.deserialize_any(GeneratedVisitor) + } +} +impl serde::Serialize for ActionError { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.error_message.is_some() { + len += 1; + } + if self.http_code.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ActionError", len)?; + if let Some(v) = self.error_message.as_ref() { + struct_ser.serialize_field("errorMessage", v)?; + } + if let Some(v) = self.http_code.as_ref() { + struct_ser.serialize_field("httpCode", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ActionError { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "error_message", + "errorMessage", + "http_code", + "httpCode", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + ErrorMessage, + HttpCode, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "errorMessage" | "error_message" => Ok(GeneratedField::ErrorMessage), + "httpCode" | "http_code" => Ok(GeneratedField::HttpCode), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ActionError; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionError") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut error_message__ = None; + let mut http_code__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::ErrorMessage => { + if error_message__.is_some() { + return Err(serde::de::Error::duplicate_field("errorMessage")); + } + error_message__ = map_.next_value()?; + } + GeneratedField::HttpCode => { + if http_code__.is_some() { + return Err(serde::de::Error::duplicate_field("httpCode")); + } + http_code__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ActionError { + error_message: error_message__, + http_code: http_code__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionError", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ActionFindFile { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.directory_path.is_some() { + len += 1; + } + if self.query.is_some() { + len += 1; + } + if self.output.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ActionFindFile", len)?; + if let Some(v) = self.directory_path.as_ref() { + struct_ser.serialize_field("directoryPath", v)?; + } + if let Some(v) = self.query.as_ref() { + struct_ser.serialize_field("query", v)?; + } + if let Some(v) = self.output.as_ref() { + struct_ser.serialize_field("output", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ActionFindFile { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "directory_path", + "directoryPath", + "query", + "output", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + DirectoryPath, + Query, + Output, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "directoryPath" | "directory_path" => Ok(GeneratedField::DirectoryPath), + "query" => Ok(GeneratedField::Query), + "output" => Ok(GeneratedField::Output), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ActionFindFile; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionFindFile") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut directory_path__ = None; + let mut query__ = None; + let mut output__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::DirectoryPath => { + if directory_path__.is_some() { + return Err(serde::de::Error::duplicate_field("directoryPath")); + } + directory_path__ = map_.next_value()?; + } + GeneratedField::Query => { + if query__.is_some() { + return Err(serde::de::Error::duplicate_field("query")); + } + query__ = map_.next_value()?; + } + GeneratedField::Output => { + if output__.is_some() { + return Err(serde::de::Error::duplicate_field("output")); + } + output__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ActionFindFile { + directory_path: directory_path__, + query: query__, + output: output__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionFindFile", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ActionFinish { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.output_string.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ActionFinish", len)?; + if let Some(v) = self.output_string.as_ref() { + struct_ser.serialize_field("outputString", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ActionFinish { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "output_string", + "outputString", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + OutputString, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "outputString" | "output_string" => Ok(GeneratedField::OutputString), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ActionFinish; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionFinish") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut output_string__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::OutputString => { + if output_string__.is_some() { + return Err(serde::de::Error::duplicate_field("outputString")); + } + output_string__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ActionFinish { + output_string: output_string__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionFinish", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ActionGenerateImage { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.prompt.is_some() { + len += 1; + } + if !self.image_paths.is_empty() { + len += 1; + } + if self.image_name.is_some() { + len += 1; + } + if self.aspect_ratio.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ActionGenerateImage", len)?; + if let Some(v) = self.prompt.as_ref() { + struct_ser.serialize_field("prompt", v)?; + } + if !self.image_paths.is_empty() { + struct_ser.serialize_field("imagePaths", &self.image_paths)?; + } + if let Some(v) = self.image_name.as_ref() { + struct_ser.serialize_field("imageName", v)?; + } + if let Some(v) = self.aspect_ratio.as_ref() { + struct_ser.serialize_field("aspectRatio", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ActionGenerateImage { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "prompt", + "image_paths", + "imagePaths", + "image_name", + "imageName", + "aspect_ratio", + "aspectRatio", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Prompt, + ImagePaths, + ImageName, + AspectRatio, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "prompt" => Ok(GeneratedField::Prompt), + "imagePaths" | "image_paths" => Ok(GeneratedField::ImagePaths), + "imageName" | "image_name" => Ok(GeneratedField::ImageName), + "aspectRatio" | "aspect_ratio" => Ok(GeneratedField::AspectRatio), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ActionGenerateImage; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionGenerateImage") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut prompt__ = None; + let mut image_paths__ = None; + let mut image_name__ = None; + let mut aspect_ratio__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Prompt => { + if prompt__.is_some() { + return Err(serde::de::Error::duplicate_field("prompt")); + } + prompt__ = map_.next_value()?; + } + GeneratedField::ImagePaths => { + if image_paths__.is_some() { + return Err(serde::de::Error::duplicate_field("imagePaths")); + } + image_paths__ = Some(map_.next_value()?); + } + GeneratedField::ImageName => { + if image_name__.is_some() { + return Err(serde::de::Error::duplicate_field("imageName")); + } + image_name__ = map_.next_value()?; + } + GeneratedField::AspectRatio => { + if aspect_ratio__.is_some() { + return Err(serde::de::Error::duplicate_field("aspectRatio")); + } + aspect_ratio__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ActionGenerateImage { + prompt: prompt__, + image_paths: image_paths__.unwrap_or_default(), + image_name: image_name__, + aspect_ratio: aspect_ratio__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionGenerateImage", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ActionInvokeSubagent { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let len = 0; + let struct_ser = serializer.serialize_struct("antigravity.localharness.ActionInvokeSubagent", len)?; + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ActionInvokeSubagent { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + Ok(GeneratedField::__SkipField__) + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ActionInvokeSubagent; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionInvokeSubagent") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + while map_.next_key::()?.is_some() { + let _ = map_.next_value::()?; + } + Ok(ActionInvokeSubagent { + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionInvokeSubagent", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ActionListDirectory { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.directory_path.is_some() { + len += 1; + } + if !self.results.is_empty() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ActionListDirectory", len)?; + if let Some(v) = self.directory_path.as_ref() { + struct_ser.serialize_field("directoryPath", v)?; + } + if !self.results.is_empty() { + struct_ser.serialize_field("results", &self.results)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ActionListDirectory { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "directory_path", + "directoryPath", + "results", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + DirectoryPath, + Results, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "directoryPath" | "directory_path" => Ok(GeneratedField::DirectoryPath), + "results" => Ok(GeneratedField::Results), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ActionListDirectory; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionListDirectory") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut directory_path__ = None; + let mut results__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::DirectoryPath => { + if directory_path__.is_some() { + return Err(serde::de::Error::duplicate_field("directoryPath")); + } + directory_path__ = map_.next_value()?; + } + GeneratedField::Results => { + if results__.is_some() { + return Err(serde::de::Error::duplicate_field("results")); + } + results__ = Some(map_.next_value()?); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ActionListDirectory { + directory_path: directory_path__, + results: results__.unwrap_or_default(), + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionListDirectory", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for action_list_directory::Result { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.name.is_some() { + len += 1; + } + if self.info.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ActionListDirectory.Result", len)?; + if let Some(v) = self.name.as_ref() { + struct_ser.serialize_field("name", v)?; + } + if let Some(v) = self.info.as_ref() { + match v { + action_list_directory::result::Info::IsDirectory(v) => { + struct_ser.serialize_field("isDirectory", v)?; + } + action_list_directory::result::Info::FileSize(v) => { + #[allow(clippy::needless_borrow)] + struct_ser.serialize_field("fileSize", ToString::to_string(&v).as_str())?; + } + } + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for action_list_directory::Result { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "name", + "is_directory", + "isDirectory", + "file_size", + "fileSize", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Name, + IsDirectory, + FileSize, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "name" => Ok(GeneratedField::Name), + "isDirectory" | "is_directory" => Ok(GeneratedField::IsDirectory), + "fileSize" | "file_size" => Ok(GeneratedField::FileSize), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = action_list_directory::Result; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionListDirectory.Result") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut name__ = None; + let mut info__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Name => { + if name__.is_some() { + return Err(serde::de::Error::duplicate_field("name")); + } + name__ = map_.next_value()?; + } + GeneratedField::IsDirectory => { + if info__.is_some() { + return Err(serde::de::Error::duplicate_field("isDirectory")); + } + info__ = map_.next_value::<::std::option::Option<_>>()?.map(action_list_directory::result::Info::IsDirectory); + } + GeneratedField::FileSize => { + if info__.is_some() { + return Err(serde::de::Error::duplicate_field("fileSize")); + } + info__ = map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| action_list_directory::result::Info::FileSize(x.0)); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(action_list_directory::Result { + name: name__, + info: info__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionListDirectory.Result", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ActionMcpTool { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.server_name.is_some() { + len += 1; + } + if self.tool_name.is_some() { + len += 1; + } + if self.arguments_json.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ActionMcpTool", len)?; + if let Some(v) = self.server_name.as_ref() { + struct_ser.serialize_field("serverName", v)?; + } + if let Some(v) = self.tool_name.as_ref() { + struct_ser.serialize_field("toolName", v)?; + } + if let Some(v) = self.arguments_json.as_ref() { + struct_ser.serialize_field("argumentsJson", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ActionMcpTool { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "server_name", + "serverName", + "tool_name", + "toolName", + "arguments_json", + "argumentsJson", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + ServerName, + ToolName, + ArgumentsJson, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "serverName" | "server_name" => Ok(GeneratedField::ServerName), + "toolName" | "tool_name" => Ok(GeneratedField::ToolName), + "argumentsJson" | "arguments_json" => Ok(GeneratedField::ArgumentsJson), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ActionMcpTool; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionMcpTool") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut server_name__ = None; + let mut tool_name__ = None; + let mut arguments_json__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::ServerName => { + if server_name__.is_some() { + return Err(serde::de::Error::duplicate_field("serverName")); + } + server_name__ = map_.next_value()?; + } + GeneratedField::ToolName => { + if tool_name__.is_some() { + return Err(serde::de::Error::duplicate_field("toolName")); + } + tool_name__ = map_.next_value()?; + } + GeneratedField::ArgumentsJson => { + if arguments_json__.is_some() { + return Err(serde::de::Error::duplicate_field("argumentsJson")); + } + arguments_json__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ActionMcpTool { + server_name: server_name__, + tool_name: tool_name__, + arguments_json: arguments_json__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionMcpTool", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ActionReadUrlContent { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.url.is_some() { + len += 1; + } + if self.title.is_some() { + len += 1; + } + if self.summary.is_some() { + len += 1; + } + if self.content_path.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ActionReadUrlContent", len)?; + if let Some(v) = self.url.as_ref() { + struct_ser.serialize_field("url", v)?; + } + if let Some(v) = self.title.as_ref() { + struct_ser.serialize_field("title", v)?; + } + if let Some(v) = self.summary.as_ref() { + struct_ser.serialize_field("summary", v)?; + } + if let Some(v) = self.content_path.as_ref() { + struct_ser.serialize_field("contentPath", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ActionReadUrlContent { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "url", + "title", + "summary", + "content_path", + "contentPath", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Url, + Title, + Summary, + ContentPath, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "url" => Ok(GeneratedField::Url), + "title" => Ok(GeneratedField::Title), + "summary" => Ok(GeneratedField::Summary), + "contentPath" | "content_path" => Ok(GeneratedField::ContentPath), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ActionReadUrlContent; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionReadUrlContent") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut url__ = None; + let mut title__ = None; + let mut summary__ = None; + let mut content_path__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Url => { + if url__.is_some() { + return Err(serde::de::Error::duplicate_field("url")); + } + url__ = map_.next_value()?; + } + GeneratedField::Title => { + if title__.is_some() { + return Err(serde::de::Error::duplicate_field("title")); + } + title__ = map_.next_value()?; + } + GeneratedField::Summary => { + if summary__.is_some() { + return Err(serde::de::Error::duplicate_field("summary")); + } + summary__ = map_.next_value()?; + } + GeneratedField::ContentPath => { + if content_path__.is_some() { + return Err(serde::de::Error::duplicate_field("contentPath")); + } + content_path__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ActionReadUrlContent { + url: url__, + title: title__, + summary: summary__, + content_path: content_path__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionReadUrlContent", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ActionRunCommand { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.command_line.is_some() { + len += 1; + } + if self.working_dir.is_some() { + len += 1; + } + if self.exit_code.is_some() { + len += 1; + } + if self.combined_output.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ActionRunCommand", len)?; + if let Some(v) = self.command_line.as_ref() { + struct_ser.serialize_field("commandLine", v)?; + } + if let Some(v) = self.working_dir.as_ref() { + struct_ser.serialize_field("workingDir", v)?; + } + if let Some(v) = self.exit_code.as_ref() { + struct_ser.serialize_field("exitCode", v)?; + } + if let Some(v) = self.combined_output.as_ref() { + struct_ser.serialize_field("combinedOutput", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ActionRunCommand { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "command_line", + "commandLine", + "working_dir", + "workingDir", + "exit_code", + "exitCode", + "combined_output", + "combinedOutput", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + CommandLine, + WorkingDir, + ExitCode, + CombinedOutput, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "commandLine" | "command_line" => Ok(GeneratedField::CommandLine), + "workingDir" | "working_dir" => Ok(GeneratedField::WorkingDir), + "exitCode" | "exit_code" => Ok(GeneratedField::ExitCode), + "combinedOutput" | "combined_output" => Ok(GeneratedField::CombinedOutput), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ActionRunCommand; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionRunCommand") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut command_line__ = None; + let mut working_dir__ = None; + let mut exit_code__ = None; + let mut combined_output__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::CommandLine => { + if command_line__.is_some() { + return Err(serde::de::Error::duplicate_field("commandLine")); + } + command_line__ = map_.next_value()?; + } + GeneratedField::WorkingDir => { + if working_dir__.is_some() { + return Err(serde::de::Error::duplicate_field("workingDir")); + } + working_dir__ = map_.next_value()?; + } + GeneratedField::ExitCode => { + if exit_code__.is_some() { + return Err(serde::de::Error::duplicate_field("exitCode")); + } + exit_code__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::CombinedOutput => { + if combined_output__.is_some() { + return Err(serde::de::Error::duplicate_field("combinedOutput")); + } + combined_output__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ActionRunCommand { + command_line: command_line__, + working_dir: working_dir__, + exit_code: exit_code__, + combined_output: combined_output__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionRunCommand", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ActionSearchDirectory { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.directory_path.is_some() { + len += 1; + } + if self.query.is_some() { + len += 1; + } + if self.num_results.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ActionSearchDirectory", len)?; + if let Some(v) = self.directory_path.as_ref() { + struct_ser.serialize_field("directoryPath", v)?; + } + if let Some(v) = self.query.as_ref() { + struct_ser.serialize_field("query", v)?; + } + if let Some(v) = self.num_results.as_ref() { + struct_ser.serialize_field("numResults", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ActionSearchDirectory { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "directory_path", + "directoryPath", + "query", + "num_results", + "numResults", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + DirectoryPath, + Query, + NumResults, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "directoryPath" | "directory_path" => Ok(GeneratedField::DirectoryPath), + "query" => Ok(GeneratedField::Query), + "numResults" | "num_results" => Ok(GeneratedField::NumResults), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ActionSearchDirectory; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionSearchDirectory") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut directory_path__ = None; + let mut query__ = None; + let mut num_results__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::DirectoryPath => { + if directory_path__.is_some() { + return Err(serde::de::Error::duplicate_field("directoryPath")); + } + directory_path__ = map_.next_value()?; + } + GeneratedField::Query => { + if query__.is_some() { + return Err(serde::de::Error::duplicate_field("query")); + } + query__ = map_.next_value()?; + } + GeneratedField::NumResults => { + if num_results__.is_some() { + return Err(serde::de::Error::duplicate_field("numResults")); + } + num_results__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ActionSearchDirectory { + directory_path: directory_path__, + query: query__, + num_results: num_results__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionSearchDirectory", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ActionSearchWeb { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.query.is_some() { + len += 1; + } + if self.domain.is_some() { + len += 1; + } + if self.summary.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ActionSearchWeb", len)?; + if let Some(v) = self.query.as_ref() { + struct_ser.serialize_field("query", v)?; + } + if let Some(v) = self.domain.as_ref() { + struct_ser.serialize_field("domain", v)?; + } + if let Some(v) = self.summary.as_ref() { + struct_ser.serialize_field("summary", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ActionSearchWeb { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "query", + "domain", + "summary", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Query, + Domain, + Summary, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "query" => Ok(GeneratedField::Query), + "domain" => Ok(GeneratedField::Domain), + "summary" => Ok(GeneratedField::Summary), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ActionSearchWeb; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionSearchWeb") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut query__ = None; + let mut domain__ = None; + let mut summary__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Query => { + if query__.is_some() { + return Err(serde::de::Error::duplicate_field("query")); + } + query__ = map_.next_value()?; + } + GeneratedField::Domain => { + if domain__.is_some() { + return Err(serde::de::Error::duplicate_field("domain")); + } + domain__ = map_.next_value()?; + } + GeneratedField::Summary => { + if summary__.is_some() { + return Err(serde::de::Error::duplicate_field("summary")); + } + summary__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ActionSearchWeb { + query: query__, + domain: domain__, + summary: summary__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionSearchWeb", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ActionViewFile { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.file_path.is_some() { + len += 1; + } + if self.start_line.is_some() { + len += 1; + } + if self.end_line.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ActionViewFile", len)?; + if let Some(v) = self.file_path.as_ref() { + struct_ser.serialize_field("filePath", v)?; + } + if let Some(v) = self.start_line.as_ref() { + struct_ser.serialize_field("startLine", v)?; + } + if let Some(v) = self.end_line.as_ref() { + struct_ser.serialize_field("endLine", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ActionViewFile { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "file_path", + "filePath", + "start_line", + "startLine", + "end_line", + "endLine", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + FilePath, + StartLine, + EndLine, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "filePath" | "file_path" => Ok(GeneratedField::FilePath), + "startLine" | "start_line" => Ok(GeneratedField::StartLine), + "endLine" | "end_line" => Ok(GeneratedField::EndLine), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ActionViewFile; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ActionViewFile") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut file_path__ = None; + let mut start_line__ = None; + let mut end_line__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::FilePath => { + if file_path__.is_some() { + return Err(serde::de::Error::duplicate_field("filePath")); + } + file_path__ = map_.next_value()?; + } + GeneratedField::StartLine => { + if start_line__.is_some() { + return Err(serde::de::Error::duplicate_field("startLine")); + } + start_line__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::EndLine => { + if end_line__.is_some() { + return Err(serde::de::Error::duplicate_field("endLine")); + } + end_line__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ActionViewFile { + file_path: file_path__, + start_line: start_line__, + end_line: end_line__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ActionViewFile", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for AppendedSystemInstructions { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.custom_identity.is_some() { + len += 1; + } + if !self.appended_sections.is_empty() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.AppendedSystemInstructions", len)?; + if let Some(v) = self.custom_identity.as_ref() { + struct_ser.serialize_field("customIdentity", v)?; + } + if !self.appended_sections.is_empty() { + struct_ser.serialize_field("appendedSections", &self.appended_sections)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for AppendedSystemInstructions { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "custom_identity", + "customIdentity", + "appended_sections", + "appendedSections", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + CustomIdentity, + AppendedSections, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "customIdentity" | "custom_identity" => Ok(GeneratedField::CustomIdentity), + "appendedSections" | "appended_sections" => Ok(GeneratedField::AppendedSections), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = AppendedSystemInstructions; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.AppendedSystemInstructions") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut custom_identity__ = None; + let mut appended_sections__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::CustomIdentity => { + if custom_identity__.is_some() { + return Err(serde::de::Error::duplicate_field("customIdentity")); + } + custom_identity__ = map_.next_value()?; + } + GeneratedField::AppendedSections => { + if appended_sections__.is_some() { + return Err(serde::de::Error::duplicate_field("appendedSections")); + } + appended_sections__ = Some(map_.next_value()?); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(AppendedSystemInstructions { + custom_identity: custom_identity__, + appended_sections: appended_sections__.unwrap_or_default(), + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.AppendedSystemInstructions", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for appended_system_instructions::Section { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.title.is_some() { + len += 1; + } + if self.content.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.AppendedSystemInstructions.Section", len)?; + if let Some(v) = self.title.as_ref() { + struct_ser.serialize_field("title", v)?; + } + if let Some(v) = self.content.as_ref() { + struct_ser.serialize_field("content", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for appended_system_instructions::Section { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "title", + "content", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Title, + Content, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "title" => Ok(GeneratedField::Title), + "content" => Ok(GeneratedField::Content), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = appended_system_instructions::Section; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.AppendedSystemInstructions.Section") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut title__ = None; + let mut content__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Title => { + if title__.is_some() { + return Err(serde::de::Error::duplicate_field("title")); + } + title__ = map_.next_value()?; + } + GeneratedField::Content => { + if content__.is_some() { + return Err(serde::de::Error::duplicate_field("content")); + } + content__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(appended_system_instructions::Section { + title: title__, + content: content__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.AppendedSystemInstructions.Section", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for CallHookRequest { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.request_id.is_some() { + len += 1; + } + if self.name.is_some() { + len += 1; + } + if self.r#type.is_some() { + len += 1; + } + if self.args.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.CallHookRequest", len)?; + if let Some(v) = self.request_id.as_ref() { + struct_ser.serialize_field("requestId", v)?; + } + if let Some(v) = self.name.as_ref() { + struct_ser.serialize_field("name", v)?; + } + if let Some(v) = self.r#type.as_ref() { + let v = LifecycleHook::try_from(*v) + .map_err(|_| serde::ser::Error::custom(format!("Invalid variant {}", *v)))?; + struct_ser.serialize_field("type", &v)?; + } + if let Some(v) = self.args.as_ref() { + match v { + call_hook_request::Args::PreTurnArgs(v) => { + struct_ser.serialize_field("preTurnArgs", v)?; + } + call_hook_request::Args::PostTurnArgs(v) => { + struct_ser.serialize_field("postTurnArgs", v)?; + } + call_hook_request::Args::PreToolArgs(v) => { + struct_ser.serialize_field("preToolArgs", v)?; + } + call_hook_request::Args::PostToolArgs(v) => { + struct_ser.serialize_field("postToolArgs", v)?; + } + call_hook_request::Args::OnToolErrorArgs(v) => { + struct_ser.serialize_field("onToolErrorArgs", v)?; + } + } + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for CallHookRequest { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "request_id", + "requestId", + "name", + "type", + "pre_turn_args", + "preTurnArgs", + "post_turn_args", + "postTurnArgs", + "pre_tool_args", + "preToolArgs", + "post_tool_args", + "postToolArgs", + "on_tool_error_args", + "onToolErrorArgs", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + RequestId, + Name, + Type, + PreTurnArgs, + PostTurnArgs, + PreToolArgs, + PostToolArgs, + OnToolErrorArgs, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "requestId" | "request_id" => Ok(GeneratedField::RequestId), + "name" => Ok(GeneratedField::Name), + "type" => Ok(GeneratedField::Type), + "preTurnArgs" | "pre_turn_args" => Ok(GeneratedField::PreTurnArgs), + "postTurnArgs" | "post_turn_args" => Ok(GeneratedField::PostTurnArgs), + "preToolArgs" | "pre_tool_args" => Ok(GeneratedField::PreToolArgs), + "postToolArgs" | "post_tool_args" => Ok(GeneratedField::PostToolArgs), + "onToolErrorArgs" | "on_tool_error_args" => Ok(GeneratedField::OnToolErrorArgs), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = CallHookRequest; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.CallHookRequest") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut request_id__ = None; + let mut name__ = None; + let mut r#type__ = None; + let mut args__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::RequestId => { + if request_id__.is_some() { + return Err(serde::de::Error::duplicate_field("requestId")); + } + request_id__ = map_.next_value()?; + } + GeneratedField::Name => { + if name__.is_some() { + return Err(serde::de::Error::duplicate_field("name")); + } + name__ = map_.next_value()?; + } + GeneratedField::Type => { + if r#type__.is_some() { + return Err(serde::de::Error::duplicate_field("type")); + } + r#type__ = map_.next_value::<::std::option::Option>()?.map(|x| x as i32); + } + GeneratedField::PreTurnArgs => { + if args__.is_some() { + return Err(serde::de::Error::duplicate_field("preTurnArgs")); + } + args__ = map_.next_value::<::std::option::Option<_>>()?.map(call_hook_request::Args::PreTurnArgs) +; + } + GeneratedField::PostTurnArgs => { + if args__.is_some() { + return Err(serde::de::Error::duplicate_field("postTurnArgs")); + } + args__ = map_.next_value::<::std::option::Option<_>>()?.map(call_hook_request::Args::PostTurnArgs) +; + } + GeneratedField::PreToolArgs => { + if args__.is_some() { + return Err(serde::de::Error::duplicate_field("preToolArgs")); + } + args__ = map_.next_value::<::std::option::Option<_>>()?.map(call_hook_request::Args::PreToolArgs) +; + } + GeneratedField::PostToolArgs => { + if args__.is_some() { + return Err(serde::de::Error::duplicate_field("postToolArgs")); + } + args__ = map_.next_value::<::std::option::Option<_>>()?.map(call_hook_request::Args::PostToolArgs) +; + } + GeneratedField::OnToolErrorArgs => { + if args__.is_some() { + return Err(serde::de::Error::duplicate_field("onToolErrorArgs")); + } + args__ = map_.next_value::<::std::option::Option<_>>()?.map(call_hook_request::Args::OnToolErrorArgs) +; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(CallHookRequest { + request_id: request_id__, + name: name__, + r#type: r#type__, + args: args__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.CallHookRequest", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for CallHookResponse { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.request_id.is_some() { + len += 1; + } + if self.result.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.CallHookResponse", len)?; + if let Some(v) = self.request_id.as_ref() { + struct_ser.serialize_field("requestId", v)?; + } + if let Some(v) = self.result.as_ref() { + match v { + call_hook_response::Result::PreTurnResult(v) => { + struct_ser.serialize_field("preTurnResult", v)?; + } + call_hook_response::Result::PreToolResult(v) => { + struct_ser.serialize_field("preToolResult", v)?; + } + call_hook_response::Result::EmptyResult(v) => { + struct_ser.serialize_field("emptyResult", v)?; + } + call_hook_response::Result::ErrorMessage(v) => { + struct_ser.serialize_field("errorMessage", v)?; + } + call_hook_response::Result::OnToolErrorResult(v) => { + struct_ser.serialize_field("onToolErrorResult", v)?; + } + } + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for CallHookResponse { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "request_id", + "requestId", + "pre_turn_result", + "preTurnResult", + "pre_tool_result", + "preToolResult", + "empty_result", + "emptyResult", + "error_message", + "errorMessage", + "on_tool_error_result", + "onToolErrorResult", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + RequestId, + PreTurnResult, + PreToolResult, + EmptyResult, + ErrorMessage, + OnToolErrorResult, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "requestId" | "request_id" => Ok(GeneratedField::RequestId), + "preTurnResult" | "pre_turn_result" => Ok(GeneratedField::PreTurnResult), + "preToolResult" | "pre_tool_result" => Ok(GeneratedField::PreToolResult), + "emptyResult" | "empty_result" => Ok(GeneratedField::EmptyResult), + "errorMessage" | "error_message" => Ok(GeneratedField::ErrorMessage), + "onToolErrorResult" | "on_tool_error_result" => Ok(GeneratedField::OnToolErrorResult), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = CallHookResponse; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.CallHookResponse") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut request_id__ = None; + let mut result__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::RequestId => { + if request_id__.is_some() { + return Err(serde::de::Error::duplicate_field("requestId")); + } + request_id__ = map_.next_value()?; + } + GeneratedField::PreTurnResult => { + if result__.is_some() { + return Err(serde::de::Error::duplicate_field("preTurnResult")); + } + result__ = map_.next_value::<::std::option::Option<_>>()?.map(call_hook_response::Result::PreTurnResult) +; + } + GeneratedField::PreToolResult => { + if result__.is_some() { + return Err(serde::de::Error::duplicate_field("preToolResult")); + } + result__ = map_.next_value::<::std::option::Option<_>>()?.map(call_hook_response::Result::PreToolResult) +; + } + GeneratedField::EmptyResult => { + if result__.is_some() { + return Err(serde::de::Error::duplicate_field("emptyResult")); + } + result__ = map_.next_value::<::std::option::Option<_>>()?.map(call_hook_response::Result::EmptyResult) +; + } + GeneratedField::ErrorMessage => { + if result__.is_some() { + return Err(serde::de::Error::duplicate_field("errorMessage")); + } + result__ = map_.next_value::<::std::option::Option<_>>()?.map(call_hook_response::Result::ErrorMessage); + } + GeneratedField::OnToolErrorResult => { + if result__.is_some() { + return Err(serde::de::Error::duplicate_field("onToolErrorResult")); + } + result__ = map_.next_value::<::std::option::Option<_>>()?.map(call_hook_response::Result::OnToolErrorResult) +; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(CallHookResponse { + request_id: request_id__, + result: result__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.CallHookResponse", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ClientInfo { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.language.is_some() { + len += 1; + } + if self.version.is_some() { + len += 1; + } + if self.language_version.is_some() { + len += 1; + } + if self.os.is_some() { + len += 1; + } + if self.os_version.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ClientInfo", len)?; + if let Some(v) = self.language.as_ref() { + struct_ser.serialize_field("language", v)?; + } + if let Some(v) = self.version.as_ref() { + struct_ser.serialize_field("version", v)?; + } + if let Some(v) = self.language_version.as_ref() { + struct_ser.serialize_field("languageVersion", v)?; + } + if let Some(v) = self.os.as_ref() { + struct_ser.serialize_field("os", v)?; + } + if let Some(v) = self.os_version.as_ref() { + struct_ser.serialize_field("osVersion", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ClientInfo { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "language", + "version", + "language_version", + "languageVersion", + "os", + "os_version", + "osVersion", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Language, + Version, + LanguageVersion, + Os, + OsVersion, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "language" => Ok(GeneratedField::Language), + "version" => Ok(GeneratedField::Version), + "languageVersion" | "language_version" => Ok(GeneratedField::LanguageVersion), + "os" => Ok(GeneratedField::Os), + "osVersion" | "os_version" => Ok(GeneratedField::OsVersion), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ClientInfo; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ClientInfo") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut language__ = None; + let mut version__ = None; + let mut language_version__ = None; + let mut os__ = None; + let mut os_version__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Language => { + if language__.is_some() { + return Err(serde::de::Error::duplicate_field("language")); + } + language__ = map_.next_value()?; + } + GeneratedField::Version => { + if version__.is_some() { + return Err(serde::de::Error::duplicate_field("version")); + } + version__ = map_.next_value()?; + } + GeneratedField::LanguageVersion => { + if language_version__.is_some() { + return Err(serde::de::Error::duplicate_field("languageVersion")); + } + language_version__ = map_.next_value()?; + } + GeneratedField::Os => { + if os__.is_some() { + return Err(serde::de::Error::duplicate_field("os")); + } + os__ = map_.next_value()?; + } + GeneratedField::OsVersion => { + if os_version__.is_some() { + return Err(serde::de::Error::duplicate_field("osVersion")); + } + os_version__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ClientInfo { + language: language__, + version: version__, + language_version: language_version__, + os: os__, + os_version: os_version__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ClientInfo", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for CustomAgent { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.name.is_some() { + len += 1; + } + if self.description.is_some() { + len += 1; + } + if self.system_instructions.is_some() { + len += 1; + } + if self.harness_side_tools.is_some() { + len += 1; + } + if !self.tools.is_empty() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.CustomAgent", len)?; + if let Some(v) = self.name.as_ref() { + struct_ser.serialize_field("name", v)?; + } + if let Some(v) = self.description.as_ref() { + struct_ser.serialize_field("description", v)?; + } + if let Some(v) = self.system_instructions.as_ref() { + struct_ser.serialize_field("systemInstructions", v)?; + } + if let Some(v) = self.harness_side_tools.as_ref() { + struct_ser.serialize_field("harnessSideTools", v)?; + } + if !self.tools.is_empty() { + struct_ser.serialize_field("tools", &self.tools)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for CustomAgent { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "name", + "description", + "system_instructions", + "systemInstructions", + "harness_side_tools", + "harnessSideTools", + "tools", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Name, + Description, + SystemInstructions, + HarnessSideTools, + Tools, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "name" => Ok(GeneratedField::Name), + "description" => Ok(GeneratedField::Description), + "systemInstructions" | "system_instructions" => Ok(GeneratedField::SystemInstructions), + "harnessSideTools" | "harness_side_tools" => Ok(GeneratedField::HarnessSideTools), + "tools" => Ok(GeneratedField::Tools), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = CustomAgent; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.CustomAgent") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut name__ = None; + let mut description__ = None; + let mut system_instructions__ = None; + let mut harness_side_tools__ = None; + let mut tools__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Name => { + if name__.is_some() { + return Err(serde::de::Error::duplicate_field("name")); + } + name__ = map_.next_value()?; + } + GeneratedField::Description => { + if description__.is_some() { + return Err(serde::de::Error::duplicate_field("description")); + } + description__ = map_.next_value()?; + } + GeneratedField::SystemInstructions => { + if system_instructions__.is_some() { + return Err(serde::de::Error::duplicate_field("systemInstructions")); + } + system_instructions__ = map_.next_value()?; + } + GeneratedField::HarnessSideTools => { + if harness_side_tools__.is_some() { + return Err(serde::de::Error::duplicate_field("harnessSideTools")); + } + harness_side_tools__ = map_.next_value()?; + } + GeneratedField::Tools => { + if tools__.is_some() { + return Err(serde::de::Error::duplicate_field("tools")); + } + tools__ = Some(map_.next_value()?); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(CustomAgent { + name: name__, + description: description__, + system_instructions: system_instructions__, + harness_side_tools: harness_side_tools__, + tools: tools__.unwrap_or_default(), + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.CustomAgent", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for CustomEndpoint { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.backend_type.is_some() { + len += 1; + } + if self.config_json.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.CustomEndpoint", len)?; + if let Some(v) = self.backend_type.as_ref() { + struct_ser.serialize_field("backendType", v)?; + } + if let Some(v) = self.config_json.as_ref() { + struct_ser.serialize_field("configJson", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for CustomEndpoint { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "backend_type", + "backendType", + "config_json", + "configJson", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + BackendType, + ConfigJson, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "backendType" | "backend_type" => Ok(GeneratedField::BackendType), + "configJson" | "config_json" => Ok(GeneratedField::ConfigJson), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = CustomEndpoint; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.CustomEndpoint") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut backend_type__ = None; + let mut config_json__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::BackendType => { + if backend_type__.is_some() { + return Err(serde::de::Error::duplicate_field("backendType")); + } + backend_type__ = map_.next_value()?; + } + GeneratedField::ConfigJson => { + if config_json__.is_some() { + return Err(serde::de::Error::duplicate_field("configJson")); + } + config_json__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(CustomEndpoint { + backend_type: backend_type__, + config_json: config_json__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.CustomEndpoint", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for CustomSystemInstructions { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if !self.part.is_empty() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.CustomSystemInstructions", len)?; + if !self.part.is_empty() { + struct_ser.serialize_field("part", &self.part)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for CustomSystemInstructions { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "part", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Part, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "part" => Ok(GeneratedField::Part), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = CustomSystemInstructions; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.CustomSystemInstructions") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut part__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Part => { + if part__.is_some() { + return Err(serde::de::Error::duplicate_field("part")); + } + part__ = Some(map_.next_value()?); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(CustomSystemInstructions { + part: part__.unwrap_or_default(), + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.CustomSystemInstructions", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for custom_system_instructions::Part { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.part.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.CustomSystemInstructions.Part", len)?; + if let Some(v) = self.part.as_ref() { + match v { + custom_system_instructions::part::Part::Text(v) => { + struct_ser.serialize_field("text", v)?; + } + custom_system_instructions::part::Part::Template(v) => { + struct_ser.serialize_field("template", v)?; + } + } + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for custom_system_instructions::Part { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "text", + "template", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Text, + Template, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "text" => Ok(GeneratedField::Text), + "template" => Ok(GeneratedField::Template), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = custom_system_instructions::Part; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.CustomSystemInstructions.Part") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut part__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Text => { + if part__.is_some() { + return Err(serde::de::Error::duplicate_field("text")); + } + part__ = map_.next_value::<::std::option::Option<_>>()?.map(custom_system_instructions::part::Part::Text); + } + GeneratedField::Template => { + if part__.is_some() { + return Err(serde::de::Error::duplicate_field("template")); + } + part__ = map_.next_value::<::std::option::Option<_>>()?.map(custom_system_instructions::part::Part::Template) +; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(custom_system_instructions::Part { + part: part__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.CustomSystemInstructions.Part", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for custom_system_instructions::SystemInstructionTemplate { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.template_name.is_some() { + len += 1; + } + if !self.args.is_empty() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.CustomSystemInstructions.SystemInstructionTemplate", len)?; + if let Some(v) = self.template_name.as_ref() { + struct_ser.serialize_field("templateName", v)?; + } + if !self.args.is_empty() { + struct_ser.serialize_field("args", &self.args)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for custom_system_instructions::SystemInstructionTemplate { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "template_name", + "templateName", + "args", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + TemplateName, + Args, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "templateName" | "template_name" => Ok(GeneratedField::TemplateName), + "args" => Ok(GeneratedField::Args), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = custom_system_instructions::SystemInstructionTemplate; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.CustomSystemInstructions.SystemInstructionTemplate") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut template_name__ = None; + let mut args__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::TemplateName => { + if template_name__.is_some() { + return Err(serde::de::Error::duplicate_field("templateName")); + } + template_name__ = map_.next_value()?; + } + GeneratedField::Args => { + if args__.is_some() { + return Err(serde::de::Error::duplicate_field("args")); + } + args__ = Some(map_.next_value()?); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(custom_system_instructions::SystemInstructionTemplate { + template_name: template_name__, + args: args__.unwrap_or_default(), + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.CustomSystemInstructions.SystemInstructionTemplate", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for custom_system_instructions::system_instruction_template::Arg { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.name.is_some() { + len += 1; + } + if self.value.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.CustomSystemInstructions.SystemInstructionTemplate.Arg", len)?; + if let Some(v) = self.name.as_ref() { + struct_ser.serialize_field("name", v)?; + } + if let Some(v) = self.value.as_ref() { + struct_ser.serialize_field("value", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for custom_system_instructions::system_instruction_template::Arg { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "name", + "value", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Name, + Value, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "name" => Ok(GeneratedField::Name), + "value" => Ok(GeneratedField::Value), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = custom_system_instructions::system_instruction_template::Arg; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.CustomSystemInstructions.SystemInstructionTemplate.Arg") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut name__ = None; + let mut value__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Name => { + if name__.is_some() { + return Err(serde::de::Error::duplicate_field("name")); + } + name__ = map_.next_value()?; + } + GeneratedField::Value => { + if value__.is_some() { + return Err(serde::de::Error::duplicate_field("value")); + } + value__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(custom_system_instructions::system_instruction_template::Arg { + name: name__, + value: value__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.CustomSystemInstructions.SystemInstructionTemplate.Arg", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for EmptyResult { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let len = 0; + let struct_ser = serializer.serialize_struct("antigravity.localharness.EmptyResult", len)?; + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for EmptyResult { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + Ok(GeneratedField::__SkipField__) + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = EmptyResult; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.EmptyResult") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + while map_.next_key::()?.is_some() { + let _ = map_.next_value::()?; + } + Ok(EmptyResult { + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.EmptyResult", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for FileEditToolConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.enabled.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.FileEditToolConfig", len)?; + if let Some(v) = self.enabled.as_ref() { + struct_ser.serialize_field("enabled", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for FileEditToolConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "enabled", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Enabled, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "enabled" => Ok(GeneratedField::Enabled), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = FileEditToolConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.FileEditToolConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut enabled__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Enabled => { + if enabled__.is_some() { + return Err(serde::de::Error::duplicate_field("enabled")); + } + enabled__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(FileEditToolConfig { + enabled: enabled__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.FileEditToolConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for FilesystemWorkspace { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.directory.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.FilesystemWorkspace", len)?; + if let Some(v) = self.directory.as_ref() { + struct_ser.serialize_field("directory", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for FilesystemWorkspace { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "directory", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Directory, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "directory" => Ok(GeneratedField::Directory), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = FilesystemWorkspace; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.FilesystemWorkspace") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut directory__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Directory => { + if directory__.is_some() { + return Err(serde::de::Error::duplicate_field("directory")); + } + directory__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(FilesystemWorkspace { + directory: directory__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.FilesystemWorkspace", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for FindToolConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.enabled.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.FindToolConfig", len)?; + if let Some(v) = self.enabled.as_ref() { + struct_ser.serialize_field("enabled", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for FindToolConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "enabled", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Enabled, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "enabled" => Ok(GeneratedField::Enabled), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = FindToolConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.FindToolConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut enabled__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Enabled => { + if enabled__.is_some() { + return Err(serde::de::Error::duplicate_field("enabled")); + } + enabled__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(FindToolConfig { + enabled: enabled__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.FindToolConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for GeminiApiEndpoint { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.base_url.is_some() { + len += 1; + } + if !self.http_headers.is_empty() { + len += 1; + } + if self.api_key.is_some() { + len += 1; + } + if self.options.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.GeminiAPIEndpoint", len)?; + if let Some(v) = self.base_url.as_ref() { + struct_ser.serialize_field("baseUrl", v)?; + } + if !self.http_headers.is_empty() { + struct_ser.serialize_field("httpHeaders", &self.http_headers)?; + } + if let Some(v) = self.api_key.as_ref() { + struct_ser.serialize_field("apiKey", v)?; + } + if let Some(v) = self.options.as_ref() { + struct_ser.serialize_field("options", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for GeminiApiEndpoint { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "base_url", + "baseUrl", + "http_headers", + "httpHeaders", + "api_key", + "apiKey", + "options", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + BaseUrl, + HttpHeaders, + ApiKey, + Options, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "baseUrl" | "base_url" => Ok(GeneratedField::BaseUrl), + "httpHeaders" | "http_headers" => Ok(GeneratedField::HttpHeaders), + "apiKey" | "api_key" => Ok(GeneratedField::ApiKey), + "options" => Ok(GeneratedField::Options), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeminiApiEndpoint; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.GeminiAPIEndpoint") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut base_url__ = None; + let mut http_headers__ = None; + let mut api_key__ = None; + let mut options__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::BaseUrl => { + if base_url__.is_some() { + return Err(serde::de::Error::duplicate_field("baseUrl")); + } + base_url__ = map_.next_value()?; + } + GeneratedField::HttpHeaders => { + if http_headers__.is_some() { + return Err(serde::de::Error::duplicate_field("httpHeaders")); + } + http_headers__ = Some( + map_.next_value::>()? + ); + } + GeneratedField::ApiKey => { + if api_key__.is_some() { + return Err(serde::de::Error::duplicate_field("apiKey")); + } + api_key__ = map_.next_value()?; + } + GeneratedField::Options => { + if options__.is_some() { + return Err(serde::de::Error::duplicate_field("options")); + } + options__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(GeminiApiEndpoint { + base_url: base_url__, + http_headers: http_headers__.unwrap_or_default(), + api_key: api_key__, + options: options__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.GeminiAPIEndpoint", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for GeminiModelOptions { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.thinking_level.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.GeminiModelOptions", len)?; + if let Some(v) = self.thinking_level.as_ref() { + struct_ser.serialize_field("thinkingLevel", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for GeminiModelOptions { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "thinking_level", + "thinkingLevel", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + ThinkingLevel, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "thinkingLevel" | "thinking_level" => Ok(GeneratedField::ThinkingLevel), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeminiModelOptions; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.GeminiModelOptions") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut thinking_level__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::ThinkingLevel => { + if thinking_level__.is_some() { + return Err(serde::de::Error::duplicate_field("thinkingLevel")); + } + thinking_level__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(GeminiModelOptions { + thinking_level: thinking_level__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.GeminiModelOptions", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for GemmaEndpoint { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.base_url.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.GemmaEndpoint", len)?; + if let Some(v) = self.base_url.as_ref() { + struct_ser.serialize_field("baseUrl", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for GemmaEndpoint { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "base_url", + "baseUrl", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + BaseUrl, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "baseUrl" | "base_url" => Ok(GeneratedField::BaseUrl), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GemmaEndpoint; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.GemmaEndpoint") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut base_url__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::BaseUrl => { + if base_url__.is_some() { + return Err(serde::de::Error::duplicate_field("baseUrl")); + } + base_url__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(GemmaEndpoint { + base_url: base_url__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.GemmaEndpoint", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for GenerateImageToolConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.enabled.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.GenerateImageToolConfig", len)?; + if let Some(v) = self.enabled.as_ref() { + struct_ser.serialize_field("enabled", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for GenerateImageToolConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "enabled", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Enabled, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "enabled" => Ok(GeneratedField::Enabled), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GenerateImageToolConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.GenerateImageToolConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut enabled__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Enabled => { + if enabled__.is_some() { + return Err(serde::de::Error::duplicate_field("enabled")); + } + enabled__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(GenerateImageToolConfig { + enabled: enabled__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.GenerateImageToolConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for GrepSearchToolConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.enabled.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.GrepSearchToolConfig", len)?; + if let Some(v) = self.enabled.as_ref() { + struct_ser.serialize_field("enabled", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for GrepSearchToolConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "enabled", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Enabled, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "enabled" => Ok(GeneratedField::Enabled), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GrepSearchToolConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.GrepSearchToolConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut enabled__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Enabled => { + if enabled__.is_some() { + return Err(serde::de::Error::duplicate_field("enabled")); + } + enabled__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(GrepSearchToolConfig { + enabled: enabled__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.GrepSearchToolConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for HarnessConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.cascade_id.is_some() { + len += 1; + } + if self.session_continuation_mode.is_some() { + len += 1; + } + if self.system_instructions.is_some() { + len += 1; + } + if !self.tools.is_empty() { + len += 1; + } + if self.harness_side_tools.is_some() { + len += 1; + } + if self.compaction_threshold.is_some() { + len += 1; + } + if !self.workspaces.is_empty() { + len += 1; + } + if !self.skills_paths.is_empty() { + len += 1; + } + if self.finish_tool_schema_json.is_some() { + len += 1; + } + if self.initial_trajectory.is_some() { + len += 1; + } + if self.app_data_dir.is_some() { + len += 1; + } + if !self.mcp_servers.is_empty() { + len += 1; + } + if !self.models.is_empty() { + len += 1; + } + if !self.enabled_hooks.is_empty() { + len += 1; + } + if !self.custom_subagents.is_empty() { + len += 1; + } + if self.tool_output_truncation.is_some() { + len += 1; + } + if self.retry_config.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.HarnessConfig", len)?; + if let Some(v) = self.cascade_id.as_ref() { + struct_ser.serialize_field("cascadeId", v)?; + } + if let Some(v) = self.session_continuation_mode.as_ref() { + let v = harness_config::SessionContinuationMode::try_from(*v) + .map_err(|_| serde::ser::Error::custom(format!("Invalid variant {}", *v)))?; + struct_ser.serialize_field("sessionContinuationMode", &v)?; + } + if let Some(v) = self.system_instructions.as_ref() { + struct_ser.serialize_field("systemInstructions", v)?; + } + if !self.tools.is_empty() { + struct_ser.serialize_field("tools", &self.tools)?; + } + if let Some(v) = self.harness_side_tools.as_ref() { + struct_ser.serialize_field("harnessSideTools", v)?; + } + if let Some(v) = self.compaction_threshold.as_ref() { + struct_ser.serialize_field("compactionThreshold", v)?; + } + if !self.workspaces.is_empty() { + struct_ser.serialize_field("workspaces", &self.workspaces)?; + } + if !self.skills_paths.is_empty() { + struct_ser.serialize_field("skillsPaths", &self.skills_paths)?; + } + if let Some(v) = self.finish_tool_schema_json.as_ref() { + struct_ser.serialize_field("finishToolSchemaJson", v)?; + } + if let Some(v) = self.initial_trajectory.as_ref() { + #[allow(clippy::needless_borrow)] + struct_ser.serialize_field("initialTrajectory", pbjson::private::base64::encode(&v).as_str())?; + } + if let Some(v) = self.app_data_dir.as_ref() { + struct_ser.serialize_field("appDataDir", v)?; + } + if !self.mcp_servers.is_empty() { + struct_ser.serialize_field("mcpServers", &self.mcp_servers)?; + } + if !self.models.is_empty() { + struct_ser.serialize_field("models", &self.models)?; + } + if !self.enabled_hooks.is_empty() { + let v = self.enabled_hooks.iter().cloned().map(|v| { + LifecycleHook::try_from(v) + .map_err(|_| serde::ser::Error::custom(format!("Invalid variant {}", v))) + }).collect::, _>>()?; + struct_ser.serialize_field("enabledHooks", &v)?; + } + if !self.custom_subagents.is_empty() { + struct_ser.serialize_field("customSubagents", &self.custom_subagents)?; + } + if let Some(v) = self.tool_output_truncation.as_ref() { + struct_ser.serialize_field("toolOutputTruncation", v)?; + } + if let Some(v) = self.retry_config.as_ref() { + struct_ser.serialize_field("retryConfig", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for HarnessConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "cascade_id", + "cascadeId", + "session_continuation_mode", + "sessionContinuationMode", + "system_instructions", + "systemInstructions", + "tools", + "harness_side_tools", + "harnessSideTools", + "compaction_threshold", + "compactionThreshold", + "workspaces", + "skills_paths", + "skillsPaths", + "finish_tool_schema_json", + "finishToolSchemaJson", + "initial_trajectory", + "initialTrajectory", + "app_data_dir", + "appDataDir", + "mcp_servers", + "mcpServers", + "models", + "enabled_hooks", + "enabledHooks", + "custom_subagents", + "customSubagents", + "tool_output_truncation", + "toolOutputTruncation", + "retry_config", + "retryConfig", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + CascadeId, + SessionContinuationMode, + SystemInstructions, + Tools, + HarnessSideTools, + CompactionThreshold, + Workspaces, + SkillsPaths, + FinishToolSchemaJson, + InitialTrajectory, + AppDataDir, + McpServers, + Models, + EnabledHooks, + CustomSubagents, + ToolOutputTruncation, + RetryConfig, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "cascadeId" | "cascade_id" => Ok(GeneratedField::CascadeId), + "sessionContinuationMode" | "session_continuation_mode" => Ok(GeneratedField::SessionContinuationMode), + "systemInstructions" | "system_instructions" => Ok(GeneratedField::SystemInstructions), + "tools" => Ok(GeneratedField::Tools), + "harnessSideTools" | "harness_side_tools" => Ok(GeneratedField::HarnessSideTools), + "compactionThreshold" | "compaction_threshold" => Ok(GeneratedField::CompactionThreshold), + "workspaces" => Ok(GeneratedField::Workspaces), + "skillsPaths" | "skills_paths" => Ok(GeneratedField::SkillsPaths), + "finishToolSchemaJson" | "finish_tool_schema_json" => Ok(GeneratedField::FinishToolSchemaJson), + "initialTrajectory" | "initial_trajectory" => Ok(GeneratedField::InitialTrajectory), + "appDataDir" | "app_data_dir" => Ok(GeneratedField::AppDataDir), + "mcpServers" | "mcp_servers" => Ok(GeneratedField::McpServers), + "models" => Ok(GeneratedField::Models), + "enabledHooks" | "enabled_hooks" => Ok(GeneratedField::EnabledHooks), + "customSubagents" | "custom_subagents" => Ok(GeneratedField::CustomSubagents), + "toolOutputTruncation" | "tool_output_truncation" => Ok(GeneratedField::ToolOutputTruncation), + "retryConfig" | "retry_config" => Ok(GeneratedField::RetryConfig), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = HarnessConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.HarnessConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut cascade_id__ = None; + let mut session_continuation_mode__ = None; + let mut system_instructions__ = None; + let mut tools__ = None; + let mut harness_side_tools__ = None; + let mut compaction_threshold__ = None; + let mut workspaces__ = None; + let mut skills_paths__ = None; + let mut finish_tool_schema_json__ = None; + let mut initial_trajectory__ = None; + let mut app_data_dir__ = None; + let mut mcp_servers__ = None; + let mut models__ = None; + let mut enabled_hooks__ = None; + let mut custom_subagents__ = None; + let mut tool_output_truncation__ = None; + let mut retry_config__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::CascadeId => { + if cascade_id__.is_some() { + return Err(serde::de::Error::duplicate_field("cascadeId")); + } + cascade_id__ = map_.next_value()?; + } + GeneratedField::SessionContinuationMode => { + if session_continuation_mode__.is_some() { + return Err(serde::de::Error::duplicate_field("sessionContinuationMode")); + } + session_continuation_mode__ = map_.next_value::<::std::option::Option>()?.map(|x| x as i32); + } + GeneratedField::SystemInstructions => { + if system_instructions__.is_some() { + return Err(serde::de::Error::duplicate_field("systemInstructions")); + } + system_instructions__ = map_.next_value()?; + } + GeneratedField::Tools => { + if tools__.is_some() { + return Err(serde::de::Error::duplicate_field("tools")); + } + tools__ = Some(map_.next_value()?); + } + GeneratedField::HarnessSideTools => { + if harness_side_tools__.is_some() { + return Err(serde::de::Error::duplicate_field("harnessSideTools")); + } + harness_side_tools__ = map_.next_value()?; + } + GeneratedField::CompactionThreshold => { + if compaction_threshold__.is_some() { + return Err(serde::de::Error::duplicate_field("compactionThreshold")); + } + compaction_threshold__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::Workspaces => { + if workspaces__.is_some() { + return Err(serde::de::Error::duplicate_field("workspaces")); + } + workspaces__ = Some(map_.next_value()?); + } + GeneratedField::SkillsPaths => { + if skills_paths__.is_some() { + return Err(serde::de::Error::duplicate_field("skillsPaths")); + } + skills_paths__ = Some(map_.next_value()?); + } + GeneratedField::FinishToolSchemaJson => { + if finish_tool_schema_json__.is_some() { + return Err(serde::de::Error::duplicate_field("finishToolSchemaJson")); + } + finish_tool_schema_json__ = map_.next_value()?; + } + GeneratedField::InitialTrajectory => { + if initial_trajectory__.is_some() { + return Err(serde::de::Error::duplicate_field("initialTrajectory")); + } + initial_trajectory__ = + map_.next_value::<::std::option::Option<::pbjson::private::BytesDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::AppDataDir => { + if app_data_dir__.is_some() { + return Err(serde::de::Error::duplicate_field("appDataDir")); + } + app_data_dir__ = map_.next_value()?; + } + GeneratedField::McpServers => { + if mcp_servers__.is_some() { + return Err(serde::de::Error::duplicate_field("mcpServers")); + } + mcp_servers__ = Some(map_.next_value()?); + } + GeneratedField::Models => { + if models__.is_some() { + return Err(serde::de::Error::duplicate_field("models")); + } + models__ = Some(map_.next_value()?); + } + GeneratedField::EnabledHooks => { + if enabled_hooks__.is_some() { + return Err(serde::de::Error::duplicate_field("enabledHooks")); + } + enabled_hooks__ = Some(map_.next_value::>()?.into_iter().map(|x| x as i32).collect()); + } + GeneratedField::CustomSubagents => { + if custom_subagents__.is_some() { + return Err(serde::de::Error::duplicate_field("customSubagents")); + } + custom_subagents__ = Some(map_.next_value()?); + } + GeneratedField::ToolOutputTruncation => { + if tool_output_truncation__.is_some() { + return Err(serde::de::Error::duplicate_field("toolOutputTruncation")); + } + tool_output_truncation__ = map_.next_value()?; + } + GeneratedField::RetryConfig => { + if retry_config__.is_some() { + return Err(serde::de::Error::duplicate_field("retryConfig")); + } + retry_config__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(HarnessConfig { + cascade_id: cascade_id__, + session_continuation_mode: session_continuation_mode__, + system_instructions: system_instructions__, + tools: tools__.unwrap_or_default(), + harness_side_tools: harness_side_tools__, + compaction_threshold: compaction_threshold__, + workspaces: workspaces__.unwrap_or_default(), + skills_paths: skills_paths__.unwrap_or_default(), + finish_tool_schema_json: finish_tool_schema_json__, + initial_trajectory: initial_trajectory__, + app_data_dir: app_data_dir__, + mcp_servers: mcp_servers__.unwrap_or_default(), + models: models__.unwrap_or_default(), + enabled_hooks: enabled_hooks__.unwrap_or_default(), + custom_subagents: custom_subagents__.unwrap_or_default(), + tool_output_truncation: tool_output_truncation__, + retry_config: retry_config__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.HarnessConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for harness_config::SessionContinuationMode { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + let variant = match self { + Self::Unspecified => "SESSION_CONTINUATION_MODE_UNSPECIFIED", + Self::Resume => "RESUME", + Self::CreateOrResume => "CREATE_OR_RESUME", + Self::CreateOnly => "CREATE_ONLY", + }; + serializer.serialize_str(variant) + } +} +impl<'de> serde::Deserialize<'de> for harness_config::SessionContinuationMode { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "SESSION_CONTINUATION_MODE_UNSPECIFIED", + "RESUME", + "CREATE_OR_RESUME", + "CREATE_ONLY", + ]; + + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = harness_config::SessionContinuationMode; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + fn visit_i64(self, v: i64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Signed(v), &self) + }) + } + + fn visit_u64(self, v: u64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Unsigned(v), &self) + }) + } + + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "SESSION_CONTINUATION_MODE_UNSPECIFIED" => Ok(harness_config::SessionContinuationMode::Unspecified), + "RESUME" => Ok(harness_config::SessionContinuationMode::Resume), + "CREATE_OR_RESUME" => Ok(harness_config::SessionContinuationMode::CreateOrResume), + "CREATE_ONLY" => Ok(harness_config::SessionContinuationMode::CreateOnly), + _ => Err(serde::de::Error::unknown_variant(value, FIELDS)), + } + } + } + deserializer.deserialize_any(GeneratedVisitor) + } +} +impl serde::Serialize for HarnessSideTools { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.find.is_some() { + len += 1; + } + if self.run_command.is_some() { + len += 1; + } + if self.subagents.is_some() { + len += 1; + } + if self.user_questions.is_some() { + len += 1; + } + if self.file_edit.is_some() { + len += 1; + } + if self.view_file.is_some() { + len += 1; + } + if self.write_to_file.is_some() { + len += 1; + } + if self.grep_search.is_some() { + len += 1; + } + if self.list_dir.is_some() { + len += 1; + } + if self.permissions.is_some() { + len += 1; + } + if self.generate_image.is_some() { + len += 1; + } + if self.search_web.is_some() { + len += 1; + } + if self.read_url_content.is_some() { + len += 1; + } + if self.tool_search_config.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.HarnessSideTools", len)?; + if let Some(v) = self.find.as_ref() { + struct_ser.serialize_field("find", v)?; + } + if let Some(v) = self.run_command.as_ref() { + struct_ser.serialize_field("runCommand", v)?; + } + if let Some(v) = self.subagents.as_ref() { + struct_ser.serialize_field("subagents", v)?; + } + if let Some(v) = self.user_questions.as_ref() { + struct_ser.serialize_field("userQuestions", v)?; + } + if let Some(v) = self.file_edit.as_ref() { + struct_ser.serialize_field("fileEdit", v)?; + } + if let Some(v) = self.view_file.as_ref() { + struct_ser.serialize_field("viewFile", v)?; + } + if let Some(v) = self.write_to_file.as_ref() { + struct_ser.serialize_field("writeToFile", v)?; + } + if let Some(v) = self.grep_search.as_ref() { + struct_ser.serialize_field("grepSearch", v)?; + } + if let Some(v) = self.list_dir.as_ref() { + struct_ser.serialize_field("listDir", v)?; + } + if let Some(v) = self.permissions.as_ref() { + struct_ser.serialize_field("permissions", v)?; + } + if let Some(v) = self.generate_image.as_ref() { + struct_ser.serialize_field("generateImage", v)?; + } + if let Some(v) = self.search_web.as_ref() { + struct_ser.serialize_field("searchWeb", v)?; + } + if let Some(v) = self.read_url_content.as_ref() { + struct_ser.serialize_field("readUrlContent", v)?; + } + if let Some(v) = self.tool_search_config.as_ref() { + struct_ser.serialize_field("toolSearchConfig", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for HarnessSideTools { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "find", + "run_command", + "runCommand", + "subagents", + "user_questions", + "userQuestions", + "file_edit", + "fileEdit", + "view_file", + "viewFile", + "write_to_file", + "writeToFile", + "grep_search", + "grepSearch", + "list_dir", + "listDir", + "permissions", + "generate_image", + "generateImage", + "search_web", + "searchWeb", + "read_url_content", + "readUrlContent", + "tool_search_config", + "toolSearchConfig", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Find, + RunCommand, + Subagents, + UserQuestions, + FileEdit, + ViewFile, + WriteToFile, + GrepSearch, + ListDir, + Permissions, + GenerateImage, + SearchWeb, + ReadUrlContent, + ToolSearchConfig, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "find" => Ok(GeneratedField::Find), + "runCommand" | "run_command" => Ok(GeneratedField::RunCommand), + "subagents" => Ok(GeneratedField::Subagents), + "userQuestions" | "user_questions" => Ok(GeneratedField::UserQuestions), + "fileEdit" | "file_edit" => Ok(GeneratedField::FileEdit), + "viewFile" | "view_file" => Ok(GeneratedField::ViewFile), + "writeToFile" | "write_to_file" => Ok(GeneratedField::WriteToFile), + "grepSearch" | "grep_search" => Ok(GeneratedField::GrepSearch), + "listDir" | "list_dir" => Ok(GeneratedField::ListDir), + "permissions" => Ok(GeneratedField::Permissions), + "generateImage" | "generate_image" => Ok(GeneratedField::GenerateImage), + "searchWeb" | "search_web" => Ok(GeneratedField::SearchWeb), + "readUrlContent" | "read_url_content" => Ok(GeneratedField::ReadUrlContent), + "toolSearchConfig" | "tool_search_config" => Ok(GeneratedField::ToolSearchConfig), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = HarnessSideTools; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.HarnessSideTools") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut find__ = None; + let mut run_command__ = None; + let mut subagents__ = None; + let mut user_questions__ = None; + let mut file_edit__ = None; + let mut view_file__ = None; + let mut write_to_file__ = None; + let mut grep_search__ = None; + let mut list_dir__ = None; + let mut permissions__ = None; + let mut generate_image__ = None; + let mut search_web__ = None; + let mut read_url_content__ = None; + let mut tool_search_config__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Find => { + if find__.is_some() { + return Err(serde::de::Error::duplicate_field("find")); + } + find__ = map_.next_value()?; + } + GeneratedField::RunCommand => { + if run_command__.is_some() { + return Err(serde::de::Error::duplicate_field("runCommand")); + } + run_command__ = map_.next_value()?; + } + GeneratedField::Subagents => { + if subagents__.is_some() { + return Err(serde::de::Error::duplicate_field("subagents")); + } + subagents__ = map_.next_value()?; + } + GeneratedField::UserQuestions => { + if user_questions__.is_some() { + return Err(serde::de::Error::duplicate_field("userQuestions")); + } + user_questions__ = map_.next_value()?; + } + GeneratedField::FileEdit => { + if file_edit__.is_some() { + return Err(serde::de::Error::duplicate_field("fileEdit")); + } + file_edit__ = map_.next_value()?; + } + GeneratedField::ViewFile => { + if view_file__.is_some() { + return Err(serde::de::Error::duplicate_field("viewFile")); + } + view_file__ = map_.next_value()?; + } + GeneratedField::WriteToFile => { + if write_to_file__.is_some() { + return Err(serde::de::Error::duplicate_field("writeToFile")); + } + write_to_file__ = map_.next_value()?; + } + GeneratedField::GrepSearch => { + if grep_search__.is_some() { + return Err(serde::de::Error::duplicate_field("grepSearch")); + } + grep_search__ = map_.next_value()?; + } + GeneratedField::ListDir => { + if list_dir__.is_some() { + return Err(serde::de::Error::duplicate_field("listDir")); + } + list_dir__ = map_.next_value()?; + } + GeneratedField::Permissions => { + if permissions__.is_some() { + return Err(serde::de::Error::duplicate_field("permissions")); + } + permissions__ = map_.next_value()?; + } + GeneratedField::GenerateImage => { + if generate_image__.is_some() { + return Err(serde::de::Error::duplicate_field("generateImage")); + } + generate_image__ = map_.next_value()?; + } + GeneratedField::SearchWeb => { + if search_web__.is_some() { + return Err(serde::de::Error::duplicate_field("searchWeb")); + } + search_web__ = map_.next_value()?; + } + GeneratedField::ReadUrlContent => { + if read_url_content__.is_some() { + return Err(serde::de::Error::duplicate_field("readUrlContent")); + } + read_url_content__ = map_.next_value()?; + } + GeneratedField::ToolSearchConfig => { + if tool_search_config__.is_some() { + return Err(serde::de::Error::duplicate_field("toolSearchConfig")); + } + tool_search_config__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(HarnessSideTools { + find: find__, + run_command: run_command__, + subagents: subagents__, + user_questions: user_questions__, + file_edit: file_edit__, + view_file: view_file__, + write_to_file: write_to_file__, + grep_search: grep_search__, + list_dir: list_dir__, + permissions: permissions__, + generate_image: generate_image__, + search_web: search_web__, + read_url_content: read_url_content__, + tool_search_config: tool_search_config__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.HarnessSideTools", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for InitializeConversationEvent { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.config.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.InitializeConversationEvent", len)?; + if let Some(v) = self.config.as_ref() { + struct_ser.serialize_field("config", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for InitializeConversationEvent { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "config", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Config, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "config" => Ok(GeneratedField::Config), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = InitializeConversationEvent; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.InitializeConversationEvent") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut config__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Config => { + if config__.is_some() { + return Err(serde::de::Error::duplicate_field("config")); + } + config__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(InitializeConversationEvent { + config: config__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.InitializeConversationEvent", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for InitializeConversationResponse { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.cascade_id.is_some() { + len += 1; + } + if !self.history.is_empty() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.InitializeConversationResponse", len)?; + if let Some(v) = self.cascade_id.as_ref() { + struct_ser.serialize_field("cascadeId", v)?; + } + if !self.history.is_empty() { + struct_ser.serialize_field("history", &self.history)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for InitializeConversationResponse { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "cascade_id", + "cascadeId", + "history", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + CascadeId, + History, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "cascadeId" | "cascade_id" => Ok(GeneratedField::CascadeId), + "history" => Ok(GeneratedField::History), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = InitializeConversationResponse; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.InitializeConversationResponse") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut cascade_id__ = None; + let mut history__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::CascadeId => { + if cascade_id__.is_some() { + return Err(serde::de::Error::duplicate_field("cascadeId")); + } + cascade_id__ = map_.next_value()?; + } + GeneratedField::History => { + if history__.is_some() { + return Err(serde::de::Error::duplicate_field("history")); + } + history__ = Some(map_.next_value()?); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(InitializeConversationResponse { + cascade_id: cascade_id__, + history: history__.unwrap_or_default(), + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.InitializeConversationResponse", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for InputConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.storage_directory.is_some() { + len += 1; + } + if self.port.is_some() { + len += 1; + } + if self.bind_address.is_some() { + len += 1; + } + if self.client_info.is_some() { + len += 1; + } + if !self.env.is_empty() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.InputConfig", len)?; + if let Some(v) = self.storage_directory.as_ref() { + struct_ser.serialize_field("storageDirectory", v)?; + } + if let Some(v) = self.port.as_ref() { + struct_ser.serialize_field("port", v)?; + } + if let Some(v) = self.bind_address.as_ref() { + struct_ser.serialize_field("bindAddress", v)?; + } + if let Some(v) = self.client_info.as_ref() { + struct_ser.serialize_field("clientInfo", v)?; + } + if !self.env.is_empty() { + struct_ser.serialize_field("env", &self.env)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for InputConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "storage_directory", + "storageDirectory", + "port", + "bind_address", + "bindAddress", + "client_info", + "clientInfo", + "env", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + StorageDirectory, + Port, + BindAddress, + ClientInfo, + Env, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "storageDirectory" | "storage_directory" => Ok(GeneratedField::StorageDirectory), + "port" => Ok(GeneratedField::Port), + "bindAddress" | "bind_address" => Ok(GeneratedField::BindAddress), + "clientInfo" | "client_info" => Ok(GeneratedField::ClientInfo), + "env" => Ok(GeneratedField::Env), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = InputConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.InputConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut storage_directory__ = None; + let mut port__ = None; + let mut bind_address__ = None; + let mut client_info__ = None; + let mut env__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::StorageDirectory => { + if storage_directory__.is_some() { + return Err(serde::de::Error::duplicate_field("storageDirectory")); + } + storage_directory__ = map_.next_value()?; + } + GeneratedField::Port => { + if port__.is_some() { + return Err(serde::de::Error::duplicate_field("port")); + } + port__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::BindAddress => { + if bind_address__.is_some() { + return Err(serde::de::Error::duplicate_field("bindAddress")); + } + bind_address__ = map_.next_value()?; + } + GeneratedField::ClientInfo => { + if client_info__.is_some() { + return Err(serde::de::Error::duplicate_field("clientInfo")); + } + client_info__ = map_.next_value()?; + } + GeneratedField::Env => { + if env__.is_some() { + return Err(serde::de::Error::duplicate_field("env")); + } + env__ = Some( + map_.next_value::>()? + ); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(InputConfig { + storage_directory: storage_directory__, + port: port__, + bind_address: bind_address__, + client_info: client_info__, + env: env__.unwrap_or_default(), + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.InputConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for InputEvent { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.event.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.InputEvent", len)?; + if let Some(v) = self.event.as_ref() { + match v { + input_event::Event::UserInput(v) => { + struct_ser.serialize_field("userInput", v)?; + } + input_event::Event::ComplexUserInput(v) => { + struct_ser.serialize_field("complexUserInput", v)?; + } + input_event::Event::ToolConfirmation(v) => { + struct_ser.serialize_field("toolConfirmation", v)?; + } + input_event::Event::ToolResponse(v) => { + struct_ser.serialize_field("toolResponse", v)?; + } + input_event::Event::QuestionResponse(v) => { + struct_ser.serialize_field("questionResponse", v)?; + } + input_event::Event::HaltRequest(v) => { + struct_ser.serialize_field("haltRequest", v)?; + } + input_event::Event::AutomatedTrigger(v) => { + struct_ser.serialize_field("automatedTrigger", v)?; + } + input_event::Event::CallHookResponse(v) => { + struct_ser.serialize_field("callHookResponse", v)?; + } + input_event::Event::SessionEndRequest(v) => { + struct_ser.serialize_field("sessionEndRequest", v)?; + } + } + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for InputEvent { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "user_input", + "userInput", + "complex_user_input", + "complexUserInput", + "tool_confirmation", + "toolConfirmation", + "tool_response", + "toolResponse", + "question_response", + "questionResponse", + "halt_request", + "haltRequest", + "automated_trigger", + "automatedTrigger", + "call_hook_response", + "callHookResponse", + "session_end_request", + "sessionEndRequest", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + UserInput, + ComplexUserInput, + ToolConfirmation, + ToolResponse, + QuestionResponse, + HaltRequest, + AutomatedTrigger, + CallHookResponse, + SessionEndRequest, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "userInput" | "user_input" => Ok(GeneratedField::UserInput), + "complexUserInput" | "complex_user_input" => Ok(GeneratedField::ComplexUserInput), + "toolConfirmation" | "tool_confirmation" => Ok(GeneratedField::ToolConfirmation), + "toolResponse" | "tool_response" => Ok(GeneratedField::ToolResponse), + "questionResponse" | "question_response" => Ok(GeneratedField::QuestionResponse), + "haltRequest" | "halt_request" => Ok(GeneratedField::HaltRequest), + "automatedTrigger" | "automated_trigger" => Ok(GeneratedField::AutomatedTrigger), + "callHookResponse" | "call_hook_response" => Ok(GeneratedField::CallHookResponse), + "sessionEndRequest" | "session_end_request" => Ok(GeneratedField::SessionEndRequest), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = InputEvent; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.InputEvent") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut event__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::UserInput => { + if event__.is_some() { + return Err(serde::de::Error::duplicate_field("userInput")); + } + event__ = map_.next_value::<::std::option::Option<_>>()?.map(input_event::Event::UserInput); + } + GeneratedField::ComplexUserInput => { + if event__.is_some() { + return Err(serde::de::Error::duplicate_field("complexUserInput")); + } + event__ = map_.next_value::<::std::option::Option<_>>()?.map(input_event::Event::ComplexUserInput) +; + } + GeneratedField::ToolConfirmation => { + if event__.is_some() { + return Err(serde::de::Error::duplicate_field("toolConfirmation")); + } + event__ = map_.next_value::<::std::option::Option<_>>()?.map(input_event::Event::ToolConfirmation) +; + } + GeneratedField::ToolResponse => { + if event__.is_some() { + return Err(serde::de::Error::duplicate_field("toolResponse")); + } + event__ = map_.next_value::<::std::option::Option<_>>()?.map(input_event::Event::ToolResponse) +; + } + GeneratedField::QuestionResponse => { + if event__.is_some() { + return Err(serde::de::Error::duplicate_field("questionResponse")); + } + event__ = map_.next_value::<::std::option::Option<_>>()?.map(input_event::Event::QuestionResponse) +; + } + GeneratedField::HaltRequest => { + if event__.is_some() { + return Err(serde::de::Error::duplicate_field("haltRequest")); + } + event__ = map_.next_value::<::std::option::Option<_>>()?.map(input_event::Event::HaltRequest); + } + GeneratedField::AutomatedTrigger => { + if event__.is_some() { + return Err(serde::de::Error::duplicate_field("automatedTrigger")); + } + event__ = map_.next_value::<::std::option::Option<_>>()?.map(input_event::Event::AutomatedTrigger); + } + GeneratedField::CallHookResponse => { + if event__.is_some() { + return Err(serde::de::Error::duplicate_field("callHookResponse")); + } + event__ = map_.next_value::<::std::option::Option<_>>()?.map(input_event::Event::CallHookResponse) +; + } + GeneratedField::SessionEndRequest => { + if event__.is_some() { + return Err(serde::de::Error::duplicate_field("sessionEndRequest")); + } + event__ = map_.next_value::<::std::option::Option<_>>()?.map(input_event::Event::SessionEndRequest); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(InputEvent { + event: event__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.InputEvent", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for LifecycleHook { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + let variant = match self { + Self::Unspecified => "LIFECYCLE_HOOK_UNSPECIFIED", + Self::OnSessionStart => "LIFECYCLE_HOOK_ON_SESSION_START", + Self::OnSessionEnd => "LIFECYCLE_HOOK_ON_SESSION_END", + Self::PreTurn => "LIFECYCLE_HOOK_PRE_TURN", + Self::PostTurn => "LIFECYCLE_HOOK_POST_TURN", + Self::PreTool => "LIFECYCLE_HOOK_PRE_TOOL", + Self::PostTool => "LIFECYCLE_HOOK_POST_TOOL", + Self::OnToolError => "LIFECYCLE_HOOK_ON_TOOL_ERROR", + }; + serializer.serialize_str(variant) + } +} +impl<'de> serde::Deserialize<'de> for LifecycleHook { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "LIFECYCLE_HOOK_UNSPECIFIED", + "LIFECYCLE_HOOK_ON_SESSION_START", + "LIFECYCLE_HOOK_ON_SESSION_END", + "LIFECYCLE_HOOK_PRE_TURN", + "LIFECYCLE_HOOK_POST_TURN", + "LIFECYCLE_HOOK_PRE_TOOL", + "LIFECYCLE_HOOK_POST_TOOL", + "LIFECYCLE_HOOK_ON_TOOL_ERROR", + ]; + + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = LifecycleHook; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + fn visit_i64(self, v: i64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Signed(v), &self) + }) + } + + fn visit_u64(self, v: u64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Unsigned(v), &self) + }) + } + + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "LIFECYCLE_HOOK_UNSPECIFIED" => Ok(LifecycleHook::Unspecified), + "LIFECYCLE_HOOK_ON_SESSION_START" => Ok(LifecycleHook::OnSessionStart), + "LIFECYCLE_HOOK_ON_SESSION_END" => Ok(LifecycleHook::OnSessionEnd), + "LIFECYCLE_HOOK_PRE_TURN" => Ok(LifecycleHook::PreTurn), + "LIFECYCLE_HOOK_POST_TURN" => Ok(LifecycleHook::PostTurn), + "LIFECYCLE_HOOK_PRE_TOOL" => Ok(LifecycleHook::PreTool), + "LIFECYCLE_HOOK_POST_TOOL" => Ok(LifecycleHook::PostTool), + "LIFECYCLE_HOOK_ON_TOOL_ERROR" => Ok(LifecycleHook::OnToolError), + _ => Err(serde::de::Error::unknown_variant(value, FIELDS)), + } + } + } + deserializer.deserialize_any(GeneratedVisitor) + } +} +impl serde::Serialize for ListDirToolConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.enabled.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ListDirToolConfig", len)?; + if let Some(v) = self.enabled.as_ref() { + struct_ser.serialize_field("enabled", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ListDirToolConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "enabled", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Enabled, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "enabled" => Ok(GeneratedField::Enabled), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ListDirToolConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ListDirToolConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut enabled__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Enabled => { + if enabled__.is_some() { + return Err(serde::de::Error::duplicate_field("enabled")); + } + enabled__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ListDirToolConfig { + enabled: enabled__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ListDirToolConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for McpHttpTransport { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.url.is_some() { + len += 1; + } + if !self.headers.is_empty() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.McpHttpTransport", len)?; + if let Some(v) = self.url.as_ref() { + struct_ser.serialize_field("url", v)?; + } + if !self.headers.is_empty() { + struct_ser.serialize_field("headers", &self.headers)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for McpHttpTransport { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "url", + "headers", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Url, + Headers, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "url" => Ok(GeneratedField::Url), + "headers" => Ok(GeneratedField::Headers), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = McpHttpTransport; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.McpHttpTransport") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut url__ = None; + let mut headers__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Url => { + if url__.is_some() { + return Err(serde::de::Error::duplicate_field("url")); + } + url__ = map_.next_value()?; + } + GeneratedField::Headers => { + if headers__.is_some() { + return Err(serde::de::Error::duplicate_field("headers")); + } + headers__ = Some( + map_.next_value::>()? + ); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(McpHttpTransport { + url: url__, + headers: headers__.unwrap_or_default(), + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.McpHttpTransport", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for McpServerConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.name.is_some() { + len += 1; + } + if !self.enabled_tools.is_empty() { + len += 1; + } + if !self.disabled_tools.is_empty() { + len += 1; + } + if self.auth_provider_type.is_some() { + len += 1; + } + if self.timeout_seconds.is_some() { + len += 1; + } + if self.transport.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.McpServerConfig", len)?; + if let Some(v) = self.name.as_ref() { + struct_ser.serialize_field("name", v)?; + } + if !self.enabled_tools.is_empty() { + struct_ser.serialize_field("enabledTools", &self.enabled_tools)?; + } + if !self.disabled_tools.is_empty() { + struct_ser.serialize_field("disabledTools", &self.disabled_tools)?; + } + if let Some(v) = self.auth_provider_type.as_ref() { + let v = mcp_server_config::AuthProviderType::try_from(*v) + .map_err(|_| serde::ser::Error::custom(format!("Invalid variant {}", *v)))?; + struct_ser.serialize_field("authProviderType", &v)?; + } + if let Some(v) = self.timeout_seconds.as_ref() { + struct_ser.serialize_field("timeoutSeconds", v)?; + } + if let Some(v) = self.transport.as_ref() { + match v { + mcp_server_config::Transport::Stdio(v) => { + struct_ser.serialize_field("stdio", v)?; + } + mcp_server_config::Transport::Http(v) => { + struct_ser.serialize_field("http", v)?; + } + } + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for McpServerConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "name", + "enabled_tools", + "enabledTools", + "disabled_tools", + "disabledTools", + "auth_provider_type", + "authProviderType", + "timeout_seconds", + "timeoutSeconds", + "stdio", + "http", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Name, + EnabledTools, + DisabledTools, + AuthProviderType, + TimeoutSeconds, + Stdio, + Http, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "name" => Ok(GeneratedField::Name), + "enabledTools" | "enabled_tools" => Ok(GeneratedField::EnabledTools), + "disabledTools" | "disabled_tools" => Ok(GeneratedField::DisabledTools), + "authProviderType" | "auth_provider_type" => Ok(GeneratedField::AuthProviderType), + "timeoutSeconds" | "timeout_seconds" => Ok(GeneratedField::TimeoutSeconds), + "stdio" => Ok(GeneratedField::Stdio), + "http" => Ok(GeneratedField::Http), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = McpServerConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.McpServerConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut name__ = None; + let mut enabled_tools__ = None; + let mut disabled_tools__ = None; + let mut auth_provider_type__ = None; + let mut timeout_seconds__ = None; + let mut transport__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Name => { + if name__.is_some() { + return Err(serde::de::Error::duplicate_field("name")); + } + name__ = map_.next_value()?; + } + GeneratedField::EnabledTools => { + if enabled_tools__.is_some() { + return Err(serde::de::Error::duplicate_field("enabledTools")); + } + enabled_tools__ = Some(map_.next_value()?); + } + GeneratedField::DisabledTools => { + if disabled_tools__.is_some() { + return Err(serde::de::Error::duplicate_field("disabledTools")); + } + disabled_tools__ = Some(map_.next_value()?); + } + GeneratedField::AuthProviderType => { + if auth_provider_type__.is_some() { + return Err(serde::de::Error::duplicate_field("authProviderType")); + } + auth_provider_type__ = map_.next_value::<::std::option::Option>()?.map(|x| x as i32); + } + GeneratedField::TimeoutSeconds => { + if timeout_seconds__.is_some() { + return Err(serde::de::Error::duplicate_field("timeoutSeconds")); + } + timeout_seconds__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::Stdio => { + if transport__.is_some() { + return Err(serde::de::Error::duplicate_field("stdio")); + } + transport__ = map_.next_value::<::std::option::Option<_>>()?.map(mcp_server_config::Transport::Stdio) +; + } + GeneratedField::Http => { + if transport__.is_some() { + return Err(serde::de::Error::duplicate_field("http")); + } + transport__ = map_.next_value::<::std::option::Option<_>>()?.map(mcp_server_config::Transport::Http) +; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(McpServerConfig { + name: name__, + enabled_tools: enabled_tools__.unwrap_or_default(), + disabled_tools: disabled_tools__.unwrap_or_default(), + auth_provider_type: auth_provider_type__, + timeout_seconds: timeout_seconds__, + transport: transport__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.McpServerConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for mcp_server_config::AuthProviderType { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + let variant = match self { + Self::Unspecified => "AUTH_PROVIDER_TYPE_UNSPECIFIED", + Self::GoogleCredentials => "AUTH_PROVIDER_TYPE_GOOGLE_CREDENTIALS", + }; + serializer.serialize_str(variant) + } +} +impl<'de> serde::Deserialize<'de> for mcp_server_config::AuthProviderType { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "AUTH_PROVIDER_TYPE_UNSPECIFIED", + "AUTH_PROVIDER_TYPE_GOOGLE_CREDENTIALS", + ]; + + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = mcp_server_config::AuthProviderType; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + fn visit_i64(self, v: i64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Signed(v), &self) + }) + } + + fn visit_u64(self, v: u64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Unsigned(v), &self) + }) + } + + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "AUTH_PROVIDER_TYPE_UNSPECIFIED" => Ok(mcp_server_config::AuthProviderType::Unspecified), + "AUTH_PROVIDER_TYPE_GOOGLE_CREDENTIALS" => Ok(mcp_server_config::AuthProviderType::GoogleCredentials), + _ => Err(serde::de::Error::unknown_variant(value, FIELDS)), + } + } + } + deserializer.deserialize_any(GeneratedVisitor) + } +} +impl serde::Serialize for McpStdioTransport { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.command.is_some() { + len += 1; + } + if !self.args.is_empty() { + len += 1; + } + if !self.env.is_empty() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.McpStdioTransport", len)?; + if let Some(v) = self.command.as_ref() { + struct_ser.serialize_field("command", v)?; + } + if !self.args.is_empty() { + struct_ser.serialize_field("args", &self.args)?; + } + if !self.env.is_empty() { + struct_ser.serialize_field("env", &self.env)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for McpStdioTransport { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "command", + "args", + "env", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Command, + Args, + Env, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "command" => Ok(GeneratedField::Command), + "args" => Ok(GeneratedField::Args), + "env" => Ok(GeneratedField::Env), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = McpStdioTransport; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.McpStdioTransport") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut command__ = None; + let mut args__ = None; + let mut env__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Command => { + if command__.is_some() { + return Err(serde::de::Error::duplicate_field("command")); + } + command__ = map_.next_value()?; + } + GeneratedField::Args => { + if args__.is_some() { + return Err(serde::de::Error::duplicate_field("args")); + } + args__ = Some(map_.next_value()?); + } + GeneratedField::Env => { + if env__.is_some() { + return Err(serde::de::Error::duplicate_field("env")); + } + env__ = Some( + map_.next_value::>()? + ); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(McpStdioTransport { + command: command__, + args: args__.unwrap_or_default(), + env: env__.unwrap_or_default(), + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.McpStdioTransport", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for Media { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.mime_type.is_some() { + len += 1; + } + if self.description.is_some() { + len += 1; + } + if self.data.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.Media", len)?; + if let Some(v) = self.mime_type.as_ref() { + struct_ser.serialize_field("mimeType", v)?; + } + if let Some(v) = self.description.as_ref() { + struct_ser.serialize_field("description", v)?; + } + if let Some(v) = self.data.as_ref() { + #[allow(clippy::needless_borrow)] + struct_ser.serialize_field("data", pbjson::private::base64::encode(&v).as_str())?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for Media { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "mime_type", + "mimeType", + "description", + "data", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + MimeType, + Description, + Data, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "mimeType" | "mime_type" => Ok(GeneratedField::MimeType), + "description" => Ok(GeneratedField::Description), + "data" => Ok(GeneratedField::Data), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = Media; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.Media") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut mime_type__ = None; + let mut description__ = None; + let mut data__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::MimeType => { + if mime_type__.is_some() { + return Err(serde::de::Error::duplicate_field("mimeType")); + } + mime_type__ = map_.next_value()?; + } + GeneratedField::Description => { + if description__.is_some() { + return Err(serde::de::Error::duplicate_field("description")); + } + description__ = map_.next_value()?; + } + GeneratedField::Data => { + if data__.is_some() { + return Err(serde::de::Error::duplicate_field("data")); + } + data__ = + map_.next_value::<::std::option::Option<::pbjson::private::BytesDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(Media { + mime_type: mime_type__, + description: description__, + data: data__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.Media", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ModelApiRetryConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.max_retries.is_some() { + len += 1; + } + if self.initial_sleep_duration_ms.is_some() { + len += 1; + } + if self.exponential_multiplier.is_some() { + len += 1; + } + if self.jitter_range.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ModelAPIRetryConfig", len)?; + if let Some(v) = self.max_retries.as_ref() { + struct_ser.serialize_field("maxRetries", v)?; + } + if let Some(v) = self.initial_sleep_duration_ms.as_ref() { + struct_ser.serialize_field("initialSleepDurationMs", v)?; + } + if let Some(v) = self.exponential_multiplier.as_ref() { + struct_ser.serialize_field("exponentialMultiplier", v)?; + } + if let Some(v) = self.jitter_range.as_ref() { + struct_ser.serialize_field("jitterRange", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ModelApiRetryConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "max_retries", + "maxRetries", + "initial_sleep_duration_ms", + "initialSleepDurationMs", + "exponential_multiplier", + "exponentialMultiplier", + "jitter_range", + "jitterRange", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + MaxRetries, + InitialSleepDurationMs, + ExponentialMultiplier, + JitterRange, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "maxRetries" | "max_retries" => Ok(GeneratedField::MaxRetries), + "initialSleepDurationMs" | "initial_sleep_duration_ms" => Ok(GeneratedField::InitialSleepDurationMs), + "exponentialMultiplier" | "exponential_multiplier" => Ok(GeneratedField::ExponentialMultiplier), + "jitterRange" | "jitter_range" => Ok(GeneratedField::JitterRange), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ModelApiRetryConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ModelAPIRetryConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut max_retries__ = None; + let mut initial_sleep_duration_ms__ = None; + let mut exponential_multiplier__ = None; + let mut jitter_range__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::MaxRetries => { + if max_retries__.is_some() { + return Err(serde::de::Error::duplicate_field("maxRetries")); + } + max_retries__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::InitialSleepDurationMs => { + if initial_sleep_duration_ms__.is_some() { + return Err(serde::de::Error::duplicate_field("initialSleepDurationMs")); + } + initial_sleep_duration_ms__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::ExponentialMultiplier => { + if exponential_multiplier__.is_some() { + return Err(serde::de::Error::duplicate_field("exponentialMultiplier")); + } + exponential_multiplier__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::JitterRange => { + if jitter_range__.is_some() { + return Err(serde::de::Error::duplicate_field("jitterRange")); + } + jitter_range__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ModelApiRetryConfig { + max_retries: max_retries__, + initial_sleep_duration_ms: initial_sleep_duration_ms__, + exponential_multiplier: exponential_multiplier__, + jitter_range: jitter_range__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ModelAPIRetryConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ModelConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.name.is_some() { + len += 1; + } + if !self.types.is_empty() { + len += 1; + } + if self.endpoint.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ModelConfig", len)?; + if let Some(v) = self.name.as_ref() { + struct_ser.serialize_field("name", v)?; + } + if !self.types.is_empty() { + let v = self.types.iter().cloned().map(|v| { + ModelType::try_from(v) + .map_err(|_| serde::ser::Error::custom(format!("Invalid variant {}", v))) + }).collect::, _>>()?; + struct_ser.serialize_field("types", &v)?; + } + if let Some(v) = self.endpoint.as_ref() { + match v { + model_config::Endpoint::GeminiApiEndpoint(v) => { + struct_ser.serialize_field("geminiApiEndpoint", v)?; + } + model_config::Endpoint::VertexEndpoint(v) => { + struct_ser.serialize_field("vertexEndpoint", v)?; + } + model_config::Endpoint::GemmaEndpoint(v) => { + struct_ser.serialize_field("gemmaEndpoint", v)?; + } + model_config::Endpoint::CustomEndpoint(v) => { + struct_ser.serialize_field("customEndpoint", v)?; + } + } + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ModelConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "name", + "types", + "gemini_api_endpoint", + "geminiApiEndpoint", + "vertex_endpoint", + "vertexEndpoint", + "gemma_endpoint", + "gemmaEndpoint", + "custom_endpoint", + "customEndpoint", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Name, + Types, + GeminiApiEndpoint, + VertexEndpoint, + GemmaEndpoint, + CustomEndpoint, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "name" => Ok(GeneratedField::Name), + "types" => Ok(GeneratedField::Types), + "geminiApiEndpoint" | "gemini_api_endpoint" => Ok(GeneratedField::GeminiApiEndpoint), + "vertexEndpoint" | "vertex_endpoint" => Ok(GeneratedField::VertexEndpoint), + "gemmaEndpoint" | "gemma_endpoint" => Ok(GeneratedField::GemmaEndpoint), + "customEndpoint" | "custom_endpoint" => Ok(GeneratedField::CustomEndpoint), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ModelConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ModelConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut name__ = None; + let mut types__ = None; + let mut endpoint__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Name => { + if name__.is_some() { + return Err(serde::de::Error::duplicate_field("name")); + } + name__ = map_.next_value()?; + } + GeneratedField::Types => { + if types__.is_some() { + return Err(serde::de::Error::duplicate_field("types")); + } + types__ = Some(map_.next_value::>()?.into_iter().map(|x| x as i32).collect()); + } + GeneratedField::GeminiApiEndpoint => { + if endpoint__.is_some() { + return Err(serde::de::Error::duplicate_field("geminiApiEndpoint")); + } + endpoint__ = map_.next_value::<::std::option::Option<_>>()?.map(model_config::Endpoint::GeminiApiEndpoint) +; + } + GeneratedField::VertexEndpoint => { + if endpoint__.is_some() { + return Err(serde::de::Error::duplicate_field("vertexEndpoint")); + } + endpoint__ = map_.next_value::<::std::option::Option<_>>()?.map(model_config::Endpoint::VertexEndpoint) +; + } + GeneratedField::GemmaEndpoint => { + if endpoint__.is_some() { + return Err(serde::de::Error::duplicate_field("gemmaEndpoint")); + } + endpoint__ = map_.next_value::<::std::option::Option<_>>()?.map(model_config::Endpoint::GemmaEndpoint) +; + } + GeneratedField::CustomEndpoint => { + if endpoint__.is_some() { + return Err(serde::de::Error::duplicate_field("customEndpoint")); + } + endpoint__ = map_.next_value::<::std::option::Option<_>>()?.map(model_config::Endpoint::CustomEndpoint) +; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ModelConfig { + name: name__, + types: types__.unwrap_or_default(), + endpoint: endpoint__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ModelConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ModelOutputRetryConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.max_retries.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ModelOutputRetryConfig", len)?; + if let Some(v) = self.max_retries.as_ref() { + struct_ser.serialize_field("maxRetries", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ModelOutputRetryConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "max_retries", + "maxRetries", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + MaxRetries, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "maxRetries" | "max_retries" => Ok(GeneratedField::MaxRetries), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ModelOutputRetryConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ModelOutputRetryConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut max_retries__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::MaxRetries => { + if max_retries__.is_some() { + return Err(serde::de::Error::duplicate_field("maxRetries")); + } + max_retries__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ModelOutputRetryConfig { + max_retries: max_retries__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ModelOutputRetryConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ModelType { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + let variant = match self { + Self::Unspecified => "MODEL_TYPE_UNSPECIFIED", + Self::Text => "MODEL_TYPE_TEXT", + Self::Image => "MODEL_TYPE_IMAGE", + }; + serializer.serialize_str(variant) + } +} +impl<'de> serde::Deserialize<'de> for ModelType { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "MODEL_TYPE_UNSPECIFIED", + "MODEL_TYPE_TEXT", + "MODEL_TYPE_IMAGE", + ]; + + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ModelType; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + fn visit_i64(self, v: i64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Signed(v), &self) + }) + } + + fn visit_u64(self, v: u64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Unsigned(v), &self) + }) + } + + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "MODEL_TYPE_UNSPECIFIED" => Ok(ModelType::Unspecified), + "MODEL_TYPE_TEXT" => Ok(ModelType::Text), + "MODEL_TYPE_IMAGE" => Ok(ModelType::Image), + _ => Err(serde::de::Error::unknown_variant(value, FIELDS)), + } + } + } + deserializer.deserialize_any(GeneratedVisitor) + } +} +impl serde::Serialize for MultipleChoice { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.question.is_some() { + len += 1; + } + if !self.choices.is_empty() { + len += 1; + } + if self.is_multi_select.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.MultipleChoice", len)?; + if let Some(v) = self.question.as_ref() { + struct_ser.serialize_field("question", v)?; + } + if !self.choices.is_empty() { + struct_ser.serialize_field("choices", &self.choices)?; + } + if let Some(v) = self.is_multi_select.as_ref() { + struct_ser.serialize_field("isMultiSelect", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for MultipleChoice { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "question", + "choices", + "is_multi_select", + "isMultiSelect", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Question, + Choices, + IsMultiSelect, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "question" => Ok(GeneratedField::Question), + "choices" => Ok(GeneratedField::Choices), + "isMultiSelect" | "is_multi_select" => Ok(GeneratedField::IsMultiSelect), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = MultipleChoice; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.MultipleChoice") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut question__ = None; + let mut choices__ = None; + let mut is_multi_select__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Question => { + if question__.is_some() { + return Err(serde::de::Error::duplicate_field("question")); + } + question__ = map_.next_value()?; + } + GeneratedField::Choices => { + if choices__.is_some() { + return Err(serde::de::Error::duplicate_field("choices")); + } + choices__ = Some(map_.next_value()?); + } + GeneratedField::IsMultiSelect => { + if is_multi_select__.is_some() { + return Err(serde::de::Error::duplicate_field("isMultiSelect")); + } + is_multi_select__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(MultipleChoice { + question: question__, + choices: choices__.unwrap_or_default(), + is_multi_select: is_multi_select__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.MultipleChoice", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for MultipleChoiceAnswer { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if !self.selected_choice_indices.is_empty() { + len += 1; + } + if self.freeform_response.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.MultipleChoiceAnswer", len)?; + if !self.selected_choice_indices.is_empty() { + struct_ser.serialize_field("selectedChoiceIndices", &self.selected_choice_indices)?; + } + if let Some(v) = self.freeform_response.as_ref() { + struct_ser.serialize_field("freeformResponse", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for MultipleChoiceAnswer { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "selected_choice_indices", + "selectedChoiceIndices", + "freeform_response", + "freeformResponse", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + SelectedChoiceIndices, + FreeformResponse, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "selectedChoiceIndices" | "selected_choice_indices" => Ok(GeneratedField::SelectedChoiceIndices), + "freeformResponse" | "freeform_response" => Ok(GeneratedField::FreeformResponse), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = MultipleChoiceAnswer; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.MultipleChoiceAnswer") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut selected_choice_indices__ = None; + let mut freeform_response__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::SelectedChoiceIndices => { + if selected_choice_indices__.is_some() { + return Err(serde::de::Error::duplicate_field("selectedChoiceIndices")); + } + selected_choice_indices__ = + Some(map_.next_value::>>()? + .into_iter().map(|x| x.0).collect()) + ; + } + GeneratedField::FreeformResponse => { + if freeform_response__.is_some() { + return Err(serde::de::Error::duplicate_field("freeformResponse")); + } + freeform_response__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(MultipleChoiceAnswer { + selected_choice_indices: selected_choice_indices__.unwrap_or_default(), + freeform_response: freeform_response__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.MultipleChoiceAnswer", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for OnToolErrorArgs { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.tool_name.is_some() { + len += 1; + } + if self.error_message.is_some() { + len += 1; + } + if self.server_name.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.OnToolErrorArgs", len)?; + if let Some(v) = self.tool_name.as_ref() { + struct_ser.serialize_field("toolName", v)?; + } + if let Some(v) = self.error_message.as_ref() { + struct_ser.serialize_field("errorMessage", v)?; + } + if let Some(v) = self.server_name.as_ref() { + struct_ser.serialize_field("serverName", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for OnToolErrorArgs { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "tool_name", + "toolName", + "error_message", + "errorMessage", + "server_name", + "serverName", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + ToolName, + ErrorMessage, + ServerName, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "toolName" | "tool_name" => Ok(GeneratedField::ToolName), + "errorMessage" | "error_message" => Ok(GeneratedField::ErrorMessage), + "serverName" | "server_name" => Ok(GeneratedField::ServerName), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = OnToolErrorArgs; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.OnToolErrorArgs") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut tool_name__ = None; + let mut error_message__ = None; + let mut server_name__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::ToolName => { + if tool_name__.is_some() { + return Err(serde::de::Error::duplicate_field("toolName")); + } + tool_name__ = map_.next_value()?; + } + GeneratedField::ErrorMessage => { + if error_message__.is_some() { + return Err(serde::de::Error::duplicate_field("errorMessage")); + } + error_message__ = map_.next_value()?; + } + GeneratedField::ServerName => { + if server_name__.is_some() { + return Err(serde::de::Error::duplicate_field("serverName")); + } + server_name__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(OnToolErrorArgs { + tool_name: tool_name__, + error_message: error_message__, + server_name: server_name__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.OnToolErrorArgs", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for OnToolErrorResult { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.custom_error_message.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.OnToolErrorResult", len)?; + if let Some(v) = self.custom_error_message.as_ref() { + struct_ser.serialize_field("customErrorMessage", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for OnToolErrorResult { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "custom_error_message", + "customErrorMessage", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + CustomErrorMessage, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "customErrorMessage" | "custom_error_message" => Ok(GeneratedField::CustomErrorMessage), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = OnToolErrorResult; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.OnToolErrorResult") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut custom_error_message__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::CustomErrorMessage => { + if custom_error_message__.is_some() { + return Err(serde::de::Error::duplicate_field("customErrorMessage")); + } + custom_error_message__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(OnToolErrorResult { + custom_error_message: custom_error_message__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.OnToolErrorResult", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for OutputConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.port.is_some() { + len += 1; + } + if self.api_key.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.OutputConfig", len)?; + if let Some(v) = self.port.as_ref() { + struct_ser.serialize_field("port", v)?; + } + if let Some(v) = self.api_key.as_ref() { + struct_ser.serialize_field("apiKey", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for OutputConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "port", + "api_key", + "apiKey", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Port, + ApiKey, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "port" => Ok(GeneratedField::Port), + "apiKey" | "api_key" => Ok(GeneratedField::ApiKey), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = OutputConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.OutputConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut port__ = None; + let mut api_key__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Port => { + if port__.is_some() { + return Err(serde::de::Error::duplicate_field("port")); + } + port__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::ApiKey => { + if api_key__.is_some() { + return Err(serde::de::Error::duplicate_field("apiKey")); + } + api_key__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(OutputConfig { + port: port__, + api_key: api_key__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.OutputConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for OutputEvent { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.seq_num.is_some() { + len += 1; + } + if self.timestamp_micros.is_some() { + len += 1; + } + if self.usage_metadata.is_some() { + len += 1; + } + if self.event.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.OutputEvent", len)?; + if let Some(v) = self.seq_num.as_ref() { + #[allow(clippy::needless_borrow)] + struct_ser.serialize_field("seqNum", ToString::to_string(&v).as_str())?; + } + if let Some(v) = self.timestamp_micros.as_ref() { + #[allow(clippy::needless_borrow)] + struct_ser.serialize_field("timestampMicros", ToString::to_string(&v).as_str())?; + } + if let Some(v) = self.usage_metadata.as_ref() { + struct_ser.serialize_field("usageMetadata", v)?; + } + if let Some(v) = self.event.as_ref() { + match v { + output_event::Event::StepUpdate(v) => { + struct_ser.serialize_field("stepUpdate", v)?; + } + output_event::Event::TrajectoryStateUpdate(v) => { + struct_ser.serialize_field("trajectoryStateUpdate", v)?; + } + output_event::Event::ToolCall(v) => { + struct_ser.serialize_field("toolCall", v)?; + } + output_event::Event::InitializeConversationResponse(v) => { + struct_ser.serialize_field("initializeConversationResponse", v)?; + } + output_event::Event::CallHookRequest(v) => { + struct_ser.serialize_field("callHookRequest", v)?; + } + output_event::Event::SessionEndResponse(v) => { + struct_ser.serialize_field("sessionEndResponse", v)?; + } + } + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for OutputEvent { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "seq_num", + "seqNum", + "timestamp_micros", + "timestampMicros", + "usage_metadata", + "usageMetadata", + "step_update", + "stepUpdate", + "trajectory_state_update", + "trajectoryStateUpdate", + "tool_call", + "toolCall", + "initialize_conversation_response", + "initializeConversationResponse", + "call_hook_request", + "callHookRequest", + "session_end_response", + "sessionEndResponse", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + SeqNum, + TimestampMicros, + UsageMetadata, + StepUpdate, + TrajectoryStateUpdate, + ToolCall, + InitializeConversationResponse, + CallHookRequest, + SessionEndResponse, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "seqNum" | "seq_num" => Ok(GeneratedField::SeqNum), + "timestampMicros" | "timestamp_micros" => Ok(GeneratedField::TimestampMicros), + "usageMetadata" | "usage_metadata" => Ok(GeneratedField::UsageMetadata), + "stepUpdate" | "step_update" => Ok(GeneratedField::StepUpdate), + "trajectoryStateUpdate" | "trajectory_state_update" => Ok(GeneratedField::TrajectoryStateUpdate), + "toolCall" | "tool_call" => Ok(GeneratedField::ToolCall), + "initializeConversationResponse" | "initialize_conversation_response" => Ok(GeneratedField::InitializeConversationResponse), + "callHookRequest" | "call_hook_request" => Ok(GeneratedField::CallHookRequest), + "sessionEndResponse" | "session_end_response" => Ok(GeneratedField::SessionEndResponse), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = OutputEvent; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.OutputEvent") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut seq_num__ = None; + let mut timestamp_micros__ = None; + let mut usage_metadata__ = None; + let mut event__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::SeqNum => { + if seq_num__.is_some() { + return Err(serde::de::Error::duplicate_field("seqNum")); + } + seq_num__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::TimestampMicros => { + if timestamp_micros__.is_some() { + return Err(serde::de::Error::duplicate_field("timestampMicros")); + } + timestamp_micros__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::UsageMetadata => { + if usage_metadata__.is_some() { + return Err(serde::de::Error::duplicate_field("usageMetadata")); + } + usage_metadata__ = map_.next_value()?; + } + GeneratedField::StepUpdate => { + if event__.is_some() { + return Err(serde::de::Error::duplicate_field("stepUpdate")); + } + event__ = map_.next_value::<::std::option::Option<_>>()?.map(output_event::Event::StepUpdate) +; + } + GeneratedField::TrajectoryStateUpdate => { + if event__.is_some() { + return Err(serde::de::Error::duplicate_field("trajectoryStateUpdate")); + } + event__ = map_.next_value::<::std::option::Option<_>>()?.map(output_event::Event::TrajectoryStateUpdate) +; + } + GeneratedField::ToolCall => { + if event__.is_some() { + return Err(serde::de::Error::duplicate_field("toolCall")); + } + event__ = map_.next_value::<::std::option::Option<_>>()?.map(output_event::Event::ToolCall) +; + } + GeneratedField::InitializeConversationResponse => { + if event__.is_some() { + return Err(serde::de::Error::duplicate_field("initializeConversationResponse")); + } + event__ = map_.next_value::<::std::option::Option<_>>()?.map(output_event::Event::InitializeConversationResponse) +; + } + GeneratedField::CallHookRequest => { + if event__.is_some() { + return Err(serde::de::Error::duplicate_field("callHookRequest")); + } + event__ = map_.next_value::<::std::option::Option<_>>()?.map(output_event::Event::CallHookRequest) +; + } + GeneratedField::SessionEndResponse => { + if event__.is_some() { + return Err(serde::de::Error::duplicate_field("sessionEndResponse")); + } + event__ = map_.next_value::<::std::option::Option<_>>()?.map(output_event::Event::SessionEndResponse); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(OutputEvent { + seq_num: seq_num__, + timestamp_micros: timestamp_micros__, + usage_metadata: usage_metadata__, + event: event__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.OutputEvent", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for PermissionsConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.enforce_workspace_validation.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.PermissionsConfig", len)?; + if let Some(v) = self.enforce_workspace_validation.as_ref() { + struct_ser.serialize_field("enforceWorkspaceValidation", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for PermissionsConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "enforce_workspace_validation", + "enforceWorkspaceValidation", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + EnforceWorkspaceValidation, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "enforceWorkspaceValidation" | "enforce_workspace_validation" => Ok(GeneratedField::EnforceWorkspaceValidation), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = PermissionsConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.PermissionsConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut enforce_workspace_validation__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::EnforceWorkspaceValidation => { + if enforce_workspace_validation__.is_some() { + return Err(serde::de::Error::duplicate_field("enforceWorkspaceValidation")); + } + enforce_workspace_validation__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(PermissionsConfig { + enforce_workspace_validation: enforce_workspace_validation__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.PermissionsConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for PostToolArgs { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.tool_name.is_some() { + len += 1; + } + if self.result.is_some() { + len += 1; + } + if self.error.is_some() { + len += 1; + } + if self.server_name.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.PostToolArgs", len)?; + if let Some(v) = self.tool_name.as_ref() { + struct_ser.serialize_field("toolName", v)?; + } + if let Some(v) = self.result.as_ref() { + struct_ser.serialize_field("result", v)?; + } + if let Some(v) = self.error.as_ref() { + struct_ser.serialize_field("error", v)?; + } + if let Some(v) = self.server_name.as_ref() { + struct_ser.serialize_field("serverName", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for PostToolArgs { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "tool_name", + "toolName", + "result", + "error", + "server_name", + "serverName", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + ToolName, + Result, + Error, + ServerName, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "toolName" | "tool_name" => Ok(GeneratedField::ToolName), + "result" => Ok(GeneratedField::Result), + "error" => Ok(GeneratedField::Error), + "serverName" | "server_name" => Ok(GeneratedField::ServerName), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = PostToolArgs; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.PostToolArgs") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut tool_name__ = None; + let mut result__ = None; + let mut error__ = None; + let mut server_name__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::ToolName => { + if tool_name__.is_some() { + return Err(serde::de::Error::duplicate_field("toolName")); + } + tool_name__ = map_.next_value()?; + } + GeneratedField::Result => { + if result__.is_some() { + return Err(serde::de::Error::duplicate_field("result")); + } + result__ = map_.next_value()?; + } + GeneratedField::Error => { + if error__.is_some() { + return Err(serde::de::Error::duplicate_field("error")); + } + error__ = map_.next_value()?; + } + GeneratedField::ServerName => { + if server_name__.is_some() { + return Err(serde::de::Error::duplicate_field("serverName")); + } + server_name__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(PostToolArgs { + tool_name: tool_name__, + result: result__, + error: error__, + server_name: server_name__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.PostToolArgs", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for PostTurnArgs { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.response_text.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.PostTurnArgs", len)?; + if let Some(v) = self.response_text.as_ref() { + struct_ser.serialize_field("responseText", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for PostTurnArgs { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "response_text", + "responseText", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + ResponseText, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "responseText" | "response_text" => Ok(GeneratedField::ResponseText), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = PostTurnArgs; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.PostTurnArgs") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut response_text__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::ResponseText => { + if response_text__.is_some() { + return Err(serde::de::Error::duplicate_field("responseText")); + } + response_text__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(PostTurnArgs { + response_text: response_text__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.PostTurnArgs", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for PreToolArgs { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.tool_name.is_some() { + len += 1; + } + if self.arguments_json.is_some() { + len += 1; + } + if self.server_name.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.PreToolArgs", len)?; + if let Some(v) = self.tool_name.as_ref() { + struct_ser.serialize_field("toolName", v)?; + } + if let Some(v) = self.arguments_json.as_ref() { + struct_ser.serialize_field("argumentsJson", v)?; + } + if let Some(v) = self.server_name.as_ref() { + struct_ser.serialize_field("serverName", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for PreToolArgs { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "tool_name", + "toolName", + "arguments_json", + "argumentsJson", + "server_name", + "serverName", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + ToolName, + ArgumentsJson, + ServerName, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "toolName" | "tool_name" => Ok(GeneratedField::ToolName), + "argumentsJson" | "arguments_json" => Ok(GeneratedField::ArgumentsJson), + "serverName" | "server_name" => Ok(GeneratedField::ServerName), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = PreToolArgs; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.PreToolArgs") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut tool_name__ = None; + let mut arguments_json__ = None; + let mut server_name__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::ToolName => { + if tool_name__.is_some() { + return Err(serde::de::Error::duplicate_field("toolName")); + } + tool_name__ = map_.next_value()?; + } + GeneratedField::ArgumentsJson => { + if arguments_json__.is_some() { + return Err(serde::de::Error::duplicate_field("argumentsJson")); + } + arguments_json__ = map_.next_value()?; + } + GeneratedField::ServerName => { + if server_name__.is_some() { + return Err(serde::de::Error::duplicate_field("serverName")); + } + server_name__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(PreToolArgs { + tool_name: tool_name__, + arguments_json: arguments_json__, + server_name: server_name__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.PreToolArgs", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for PreToolResult { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.decision.is_some() { + len += 1; + } + if self.reason.is_some() { + len += 1; + } + if self.modified_arguments_json.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.PreToolResult", len)?; + if let Some(v) = self.decision.as_ref() { + let v = pre_tool_result::Decision::try_from(*v) + .map_err(|_| serde::ser::Error::custom(format!("Invalid variant {}", *v)))?; + struct_ser.serialize_field("decision", &v)?; + } + if let Some(v) = self.reason.as_ref() { + struct_ser.serialize_field("reason", v)?; + } + if let Some(v) = self.modified_arguments_json.as_ref() { + struct_ser.serialize_field("modifiedArgumentsJson", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for PreToolResult { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "decision", + "reason", + "modified_arguments_json", + "modifiedArgumentsJson", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Decision, + Reason, + ModifiedArgumentsJson, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "decision" => Ok(GeneratedField::Decision), + "reason" => Ok(GeneratedField::Reason), + "modifiedArgumentsJson" | "modified_arguments_json" => Ok(GeneratedField::ModifiedArgumentsJson), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = PreToolResult; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.PreToolResult") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut decision__ = None; + let mut reason__ = None; + let mut modified_arguments_json__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Decision => { + if decision__.is_some() { + return Err(serde::de::Error::duplicate_field("decision")); + } + decision__ = map_.next_value::<::std::option::Option>()?.map(|x| x as i32); + } + GeneratedField::Reason => { + if reason__.is_some() { + return Err(serde::de::Error::duplicate_field("reason")); + } + reason__ = map_.next_value()?; + } + GeneratedField::ModifiedArgumentsJson => { + if modified_arguments_json__.is_some() { + return Err(serde::de::Error::duplicate_field("modifiedArgumentsJson")); + } + modified_arguments_json__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(PreToolResult { + decision: decision__, + reason: reason__, + modified_arguments_json: modified_arguments_json__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.PreToolResult", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for pre_tool_result::Decision { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + let variant = match self { + Self::Unspecified => "DECISION_UNSPECIFIED", + Self::Allow => "ALLOW", + Self::Deny => "DENY", + }; + serializer.serialize_str(variant) + } +} +impl<'de> serde::Deserialize<'de> for pre_tool_result::Decision { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "DECISION_UNSPECIFIED", + "ALLOW", + "DENY", + ]; + + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = pre_tool_result::Decision; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + fn visit_i64(self, v: i64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Signed(v), &self) + }) + } + + fn visit_u64(self, v: u64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Unsigned(v), &self) + }) + } + + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "DECISION_UNSPECIFIED" => Ok(pre_tool_result::Decision::Unspecified), + "ALLOW" => Ok(pre_tool_result::Decision::Allow), + "DENY" => Ok(pre_tool_result::Decision::Deny), + _ => Err(serde::de::Error::unknown_variant(value, FIELDS)), + } + } + } + deserializer.deserialize_any(GeneratedVisitor) + } +} +impl serde::Serialize for PreTurnArgs { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.user_input.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.PreTurnArgs", len)?; + if let Some(v) = self.user_input.as_ref() { + struct_ser.serialize_field("userInput", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for PreTurnArgs { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "user_input", + "userInput", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + UserInput, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "userInput" | "user_input" => Ok(GeneratedField::UserInput), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = PreTurnArgs; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.PreTurnArgs") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut user_input__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::UserInput => { + if user_input__.is_some() { + return Err(serde::de::Error::duplicate_field("userInput")); + } + user_input__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(PreTurnArgs { + user_input: user_input__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.PreTurnArgs", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for PreTurnResult { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.decision.is_some() { + len += 1; + } + if self.reason.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.PreTurnResult", len)?; + if let Some(v) = self.decision.as_ref() { + let v = pre_turn_result::Decision::try_from(*v) + .map_err(|_| serde::ser::Error::custom(format!("Invalid variant {}", *v)))?; + struct_ser.serialize_field("decision", &v)?; + } + if let Some(v) = self.reason.as_ref() { + struct_ser.serialize_field("reason", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for PreTurnResult { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "decision", + "reason", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Decision, + Reason, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "decision" => Ok(GeneratedField::Decision), + "reason" => Ok(GeneratedField::Reason), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = PreTurnResult; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.PreTurnResult") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut decision__ = None; + let mut reason__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Decision => { + if decision__.is_some() { + return Err(serde::de::Error::duplicate_field("decision")); + } + decision__ = map_.next_value::<::std::option::Option>()?.map(|x| x as i32); + } + GeneratedField::Reason => { + if reason__.is_some() { + return Err(serde::de::Error::duplicate_field("reason")); + } + reason__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(PreTurnResult { + decision: decision__, + reason: reason__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.PreTurnResult", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for pre_turn_result::Decision { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + let variant = match self { + Self::Unspecified => "DECISION_UNSPECIFIED", + Self::Allow => "ALLOW", + Self::Deny => "DENY", + }; + serializer.serialize_str(variant) + } +} +impl<'de> serde::Deserialize<'de> for pre_turn_result::Decision { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "DECISION_UNSPECIFIED", + "ALLOW", + "DENY", + ]; + + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = pre_turn_result::Decision; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + fn visit_i64(self, v: i64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Signed(v), &self) + }) + } + + fn visit_u64(self, v: u64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Unsigned(v), &self) + }) + } + + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "DECISION_UNSPECIFIED" => Ok(pre_turn_result::Decision::Unspecified), + "ALLOW" => Ok(pre_turn_result::Decision::Allow), + "DENY" => Ok(pre_turn_result::Decision::Deny), + _ => Err(serde::de::Error::unknown_variant(value, FIELDS)), + } + } + } + deserializer.deserialize_any(GeneratedVisitor) + } +} +impl serde::Serialize for ReadUrlContentToolConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.enabled.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ReadUrlContentToolConfig", len)?; + if let Some(v) = self.enabled.as_ref() { + struct_ser.serialize_field("enabled", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ReadUrlContentToolConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "enabled", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Enabled, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "enabled" => Ok(GeneratedField::Enabled), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ReadUrlContentToolConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ReadUrlContentToolConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut enabled__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Enabled => { + if enabled__.is_some() { + return Err(serde::de::Error::duplicate_field("enabled")); + } + enabled__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ReadUrlContentToolConfig { + enabled: enabled__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ReadUrlContentToolConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for RetryConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.api_retry.is_some() { + len += 1; + } + if self.model_output_retry.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.RetryConfig", len)?; + if let Some(v) = self.api_retry.as_ref() { + struct_ser.serialize_field("apiRetry", v)?; + } + if let Some(v) = self.model_output_retry.as_ref() { + struct_ser.serialize_field("modelOutputRetry", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for RetryConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "api_retry", + "apiRetry", + "model_output_retry", + "modelOutputRetry", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + ApiRetry, + ModelOutputRetry, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "apiRetry" | "api_retry" => Ok(GeneratedField::ApiRetry), + "modelOutputRetry" | "model_output_retry" => Ok(GeneratedField::ModelOutputRetry), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = RetryConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.RetryConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut api_retry__ = None; + let mut model_output_retry__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::ApiRetry => { + if api_retry__.is_some() { + return Err(serde::de::Error::duplicate_field("apiRetry")); + } + api_retry__ = map_.next_value()?; + } + GeneratedField::ModelOutputRetry => { + if model_output_retry__.is_some() { + return Err(serde::de::Error::duplicate_field("modelOutputRetry")); + } + model_output_retry__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(RetryConfig { + api_retry: api_retry__, + model_output_retry: model_output_retry__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.RetryConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for RunCommandToolConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.enabled.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.RunCommandToolConfig", len)?; + if let Some(v) = self.enabled.as_ref() { + struct_ser.serialize_field("enabled", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for RunCommandToolConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "enabled", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Enabled, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "enabled" => Ok(GeneratedField::Enabled), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = RunCommandToolConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.RunCommandToolConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut enabled__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Enabled => { + if enabled__.is_some() { + return Err(serde::de::Error::duplicate_field("enabled")); + } + enabled__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(RunCommandToolConfig { + enabled: enabled__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.RunCommandToolConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for SearchWebToolConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.enabled.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.SearchWebToolConfig", len)?; + if let Some(v) = self.enabled.as_ref() { + struct_ser.serialize_field("enabled", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for SearchWebToolConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "enabled", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Enabled, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "enabled" => Ok(GeneratedField::Enabled), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = SearchWebToolConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.SearchWebToolConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut enabled__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Enabled => { + if enabled__.is_some() { + return Err(serde::de::Error::duplicate_field("enabled")); + } + enabled__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(SearchWebToolConfig { + enabled: enabled__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.SearchWebToolConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for StepUpdate { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.cascade_id.is_some() { + len += 1; + } + if self.trajectory_id.is_some() { + len += 1; + } + if self.step_index.is_some() { + len += 1; + } + if self.state.is_some() { + len += 1; + } + if self.source.is_some() { + len += 1; + } + if self.target.is_some() { + len += 1; + } + if self.error_message.is_some() { + len += 1; + } + if self.thinking.is_some() { + len += 1; + } + if self.text_delta.is_some() { + len += 1; + } + if self.thinking_delta.is_some() { + len += 1; + } + if self.text.is_some() { + len += 1; + } + if self.list_directory.is_some() { + len += 1; + } + if self.find_file.is_some() { + len += 1; + } + if self.search_directory.is_some() { + len += 1; + } + if self.view_file.is_some() { + len += 1; + } + if self.create_file.is_some() { + len += 1; + } + if self.edit_file.is_some() { + len += 1; + } + if self.run_command.is_some() { + len += 1; + } + if self.compaction.is_some() { + len += 1; + } + if self.invoke_subagent.is_some() { + len += 1; + } + if self.generate_image.is_some() { + len += 1; + } + if self.finish.is_some() { + len += 1; + } + if self.error.is_some() { + len += 1; + } + if self.mcp_tool.is_some() { + len += 1; + } + if self.search_web.is_some() { + len += 1; + } + if self.read_url_content.is_some() { + len += 1; + } + if self.custom_tool.is_some() { + len += 1; + } + if self.request_text.is_some() { + len += 1; + } + if self.tool_confirmation_request.is_some() { + len += 1; + } + if self.questions_request.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.StepUpdate", len)?; + if let Some(v) = self.cascade_id.as_ref() { + struct_ser.serialize_field("cascadeId", v)?; + } + if let Some(v) = self.trajectory_id.as_ref() { + struct_ser.serialize_field("trajectoryId", v)?; + } + if let Some(v) = self.step_index.as_ref() { + struct_ser.serialize_field("stepIndex", v)?; + } + if let Some(v) = self.state.as_ref() { + let v = step_update::State::try_from(*v) + .map_err(|_| serde::ser::Error::custom(format!("Invalid variant {}", *v)))?; + struct_ser.serialize_field("state", &v)?; + } + if let Some(v) = self.source.as_ref() { + let v = step_update::Source::try_from(*v) + .map_err(|_| serde::ser::Error::custom(format!("Invalid variant {}", *v)))?; + struct_ser.serialize_field("source", &v)?; + } + if let Some(v) = self.target.as_ref() { + let v = step_update::Target::try_from(*v) + .map_err(|_| serde::ser::Error::custom(format!("Invalid variant {}", *v)))?; + struct_ser.serialize_field("target", &v)?; + } + if let Some(v) = self.error_message.as_ref() { + struct_ser.serialize_field("errorMessage", v)?; + } + if let Some(v) = self.thinking.as_ref() { + struct_ser.serialize_field("thinking", v)?; + } + if let Some(v) = self.text_delta.as_ref() { + struct_ser.serialize_field("textDelta", v)?; + } + if let Some(v) = self.thinking_delta.as_ref() { + struct_ser.serialize_field("thinkingDelta", v)?; + } + if let Some(v) = self.text.as_ref() { + struct_ser.serialize_field("text", v)?; + } + if let Some(v) = self.list_directory.as_ref() { + struct_ser.serialize_field("listDirectory", v)?; + } + if let Some(v) = self.find_file.as_ref() { + struct_ser.serialize_field("findFile", v)?; + } + if let Some(v) = self.search_directory.as_ref() { + struct_ser.serialize_field("searchDirectory", v)?; + } + if let Some(v) = self.view_file.as_ref() { + struct_ser.serialize_field("viewFile", v)?; + } + if let Some(v) = self.create_file.as_ref() { + struct_ser.serialize_field("createFile", v)?; + } + if let Some(v) = self.edit_file.as_ref() { + struct_ser.serialize_field("editFile", v)?; + } + if let Some(v) = self.run_command.as_ref() { + struct_ser.serialize_field("runCommand", v)?; + } + if let Some(v) = self.compaction.as_ref() { + struct_ser.serialize_field("compaction", v)?; + } + if let Some(v) = self.invoke_subagent.as_ref() { + struct_ser.serialize_field("invokeSubagent", v)?; + } + if let Some(v) = self.generate_image.as_ref() { + struct_ser.serialize_field("generateImage", v)?; + } + if let Some(v) = self.finish.as_ref() { + struct_ser.serialize_field("finish", v)?; + } + if let Some(v) = self.error.as_ref() { + struct_ser.serialize_field("error", v)?; + } + if let Some(v) = self.mcp_tool.as_ref() { + struct_ser.serialize_field("mcpTool", v)?; + } + if let Some(v) = self.search_web.as_ref() { + struct_ser.serialize_field("searchWeb", v)?; + } + if let Some(v) = self.read_url_content.as_ref() { + struct_ser.serialize_field("readUrlContent", v)?; + } + if let Some(v) = self.custom_tool.as_ref() { + struct_ser.serialize_field("customTool", v)?; + } + if let Some(v) = self.request_text.as_ref() { + struct_ser.serialize_field("requestText", v)?; + } + if let Some(v) = self.tool_confirmation_request.as_ref() { + struct_ser.serialize_field("toolConfirmationRequest", v)?; + } + if let Some(v) = self.questions_request.as_ref() { + struct_ser.serialize_field("questionsRequest", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for StepUpdate { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "cascade_id", + "cascadeId", + "trajectory_id", + "trajectoryId", + "step_index", + "stepIndex", + "state", + "source", + "target", + "error_message", + "errorMessage", + "thinking", + "text_delta", + "textDelta", + "thinking_delta", + "thinkingDelta", + "text", + "list_directory", + "listDirectory", + "find_file", + "findFile", + "search_directory", + "searchDirectory", + "view_file", + "viewFile", + "create_file", + "createFile", + "edit_file", + "editFile", + "run_command", + "runCommand", + "compaction", + "invoke_subagent", + "invokeSubagent", + "generate_image", + "generateImage", + "finish", + "error", + "mcp_tool", + "mcpTool", + "search_web", + "searchWeb", + "read_url_content", + "readUrlContent", + "custom_tool", + "customTool", + "request_text", + "requestText", + "tool_confirmation_request", + "toolConfirmationRequest", + "questions_request", + "questionsRequest", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + CascadeId, + TrajectoryId, + StepIndex, + State, + Source, + Target, + ErrorMessage, + Thinking, + TextDelta, + ThinkingDelta, + Text, + ListDirectory, + FindFile, + SearchDirectory, + ViewFile, + CreateFile, + EditFile, + RunCommand, + Compaction, + InvokeSubagent, + GenerateImage, + Finish, + Error, + McpTool, + SearchWeb, + ReadUrlContent, + CustomTool, + RequestText, + ToolConfirmationRequest, + QuestionsRequest, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "cascadeId" | "cascade_id" => Ok(GeneratedField::CascadeId), + "trajectoryId" | "trajectory_id" => Ok(GeneratedField::TrajectoryId), + "stepIndex" | "step_index" => Ok(GeneratedField::StepIndex), + "state" => Ok(GeneratedField::State), + "source" => Ok(GeneratedField::Source), + "target" => Ok(GeneratedField::Target), + "errorMessage" | "error_message" => Ok(GeneratedField::ErrorMessage), + "thinking" => Ok(GeneratedField::Thinking), + "textDelta" | "text_delta" => Ok(GeneratedField::TextDelta), + "thinkingDelta" | "thinking_delta" => Ok(GeneratedField::ThinkingDelta), + "text" => Ok(GeneratedField::Text), + "listDirectory" | "list_directory" => Ok(GeneratedField::ListDirectory), + "findFile" | "find_file" => Ok(GeneratedField::FindFile), + "searchDirectory" | "search_directory" => Ok(GeneratedField::SearchDirectory), + "viewFile" | "view_file" => Ok(GeneratedField::ViewFile), + "createFile" | "create_file" => Ok(GeneratedField::CreateFile), + "editFile" | "edit_file" => Ok(GeneratedField::EditFile), + "runCommand" | "run_command" => Ok(GeneratedField::RunCommand), + "compaction" => Ok(GeneratedField::Compaction), + "invokeSubagent" | "invoke_subagent" => Ok(GeneratedField::InvokeSubagent), + "generateImage" | "generate_image" => Ok(GeneratedField::GenerateImage), + "finish" => Ok(GeneratedField::Finish), + "error" => Ok(GeneratedField::Error), + "mcpTool" | "mcp_tool" => Ok(GeneratedField::McpTool), + "searchWeb" | "search_web" => Ok(GeneratedField::SearchWeb), + "readUrlContent" | "read_url_content" => Ok(GeneratedField::ReadUrlContent), + "customTool" | "custom_tool" => Ok(GeneratedField::CustomTool), + "requestText" | "request_text" => Ok(GeneratedField::RequestText), + "toolConfirmationRequest" | "tool_confirmation_request" => Ok(GeneratedField::ToolConfirmationRequest), + "questionsRequest" | "questions_request" => Ok(GeneratedField::QuestionsRequest), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = StepUpdate; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.StepUpdate") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut cascade_id__ = None; + let mut trajectory_id__ = None; + let mut step_index__ = None; + let mut state__ = None; + let mut source__ = None; + let mut target__ = None; + let mut error_message__ = None; + let mut thinking__ = None; + let mut text_delta__ = None; + let mut thinking_delta__ = None; + let mut text__ = None; + let mut list_directory__ = None; + let mut find_file__ = None; + let mut search_directory__ = None; + let mut view_file__ = None; + let mut create_file__ = None; + let mut edit_file__ = None; + let mut run_command__ = None; + let mut compaction__ = None; + let mut invoke_subagent__ = None; + let mut generate_image__ = None; + let mut finish__ = None; + let mut error__ = None; + let mut mcp_tool__ = None; + let mut search_web__ = None; + let mut read_url_content__ = None; + let mut custom_tool__ = None; + let mut request_text__ = None; + let mut tool_confirmation_request__ = None; + let mut questions_request__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::CascadeId => { + if cascade_id__.is_some() { + return Err(serde::de::Error::duplicate_field("cascadeId")); + } + cascade_id__ = map_.next_value()?; + } + GeneratedField::TrajectoryId => { + if trajectory_id__.is_some() { + return Err(serde::de::Error::duplicate_field("trajectoryId")); + } + trajectory_id__ = map_.next_value()?; + } + GeneratedField::StepIndex => { + if step_index__.is_some() { + return Err(serde::de::Error::duplicate_field("stepIndex")); + } + step_index__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::State => { + if state__.is_some() { + return Err(serde::de::Error::duplicate_field("state")); + } + state__ = map_.next_value::<::std::option::Option>()?.map(|x| x as i32); + } + GeneratedField::Source => { + if source__.is_some() { + return Err(serde::de::Error::duplicate_field("source")); + } + source__ = map_.next_value::<::std::option::Option>()?.map(|x| x as i32); + } + GeneratedField::Target => { + if target__.is_some() { + return Err(serde::de::Error::duplicate_field("target")); + } + target__ = map_.next_value::<::std::option::Option>()?.map(|x| x as i32); + } + GeneratedField::ErrorMessage => { + if error_message__.is_some() { + return Err(serde::de::Error::duplicate_field("errorMessage")); + } + error_message__ = map_.next_value()?; + } + GeneratedField::Thinking => { + if thinking__.is_some() { + return Err(serde::de::Error::duplicate_field("thinking")); + } + thinking__ = map_.next_value()?; + } + GeneratedField::TextDelta => { + if text_delta__.is_some() { + return Err(serde::de::Error::duplicate_field("textDelta")); + } + text_delta__ = map_.next_value()?; + } + GeneratedField::ThinkingDelta => { + if thinking_delta__.is_some() { + return Err(serde::de::Error::duplicate_field("thinkingDelta")); + } + thinking_delta__ = map_.next_value()?; + } + GeneratedField::Text => { + if text__.is_some() { + return Err(serde::de::Error::duplicate_field("text")); + } + text__ = map_.next_value()?; + } + GeneratedField::ListDirectory => { + if list_directory__.is_some() { + return Err(serde::de::Error::duplicate_field("listDirectory")); + } + list_directory__ = map_.next_value()?; + } + GeneratedField::FindFile => { + if find_file__.is_some() { + return Err(serde::de::Error::duplicate_field("findFile")); + } + find_file__ = map_.next_value()?; + } + GeneratedField::SearchDirectory => { + if search_directory__.is_some() { + return Err(serde::de::Error::duplicate_field("searchDirectory")); + } + search_directory__ = map_.next_value()?; + } + GeneratedField::ViewFile => { + if view_file__.is_some() { + return Err(serde::de::Error::duplicate_field("viewFile")); + } + view_file__ = map_.next_value()?; + } + GeneratedField::CreateFile => { + if create_file__.is_some() { + return Err(serde::de::Error::duplicate_field("createFile")); + } + create_file__ = map_.next_value()?; + } + GeneratedField::EditFile => { + if edit_file__.is_some() { + return Err(serde::de::Error::duplicate_field("editFile")); + } + edit_file__ = map_.next_value()?; + } + GeneratedField::RunCommand => { + if run_command__.is_some() { + return Err(serde::de::Error::duplicate_field("runCommand")); + } + run_command__ = map_.next_value()?; + } + GeneratedField::Compaction => { + if compaction__.is_some() { + return Err(serde::de::Error::duplicate_field("compaction")); + } + compaction__ = map_.next_value()?; + } + GeneratedField::InvokeSubagent => { + if invoke_subagent__.is_some() { + return Err(serde::de::Error::duplicate_field("invokeSubagent")); + } + invoke_subagent__ = map_.next_value()?; + } + GeneratedField::GenerateImage => { + if generate_image__.is_some() { + return Err(serde::de::Error::duplicate_field("generateImage")); + } + generate_image__ = map_.next_value()?; + } + GeneratedField::Finish => { + if finish__.is_some() { + return Err(serde::de::Error::duplicate_field("finish")); + } + finish__ = map_.next_value()?; + } + GeneratedField::Error => { + if error__.is_some() { + return Err(serde::de::Error::duplicate_field("error")); + } + error__ = map_.next_value()?; + } + GeneratedField::McpTool => { + if mcp_tool__.is_some() { + return Err(serde::de::Error::duplicate_field("mcpTool")); + } + mcp_tool__ = map_.next_value()?; + } + GeneratedField::SearchWeb => { + if search_web__.is_some() { + return Err(serde::de::Error::duplicate_field("searchWeb")); + } + search_web__ = map_.next_value()?; + } + GeneratedField::ReadUrlContent => { + if read_url_content__.is_some() { + return Err(serde::de::Error::duplicate_field("readUrlContent")); + } + read_url_content__ = map_.next_value()?; + } + GeneratedField::CustomTool => { + if custom_tool__.is_some() { + return Err(serde::de::Error::duplicate_field("customTool")); + } + custom_tool__ = map_.next_value()?; + } + GeneratedField::RequestText => { + if request_text__.is_some() { + return Err(serde::de::Error::duplicate_field("requestText")); + } + request_text__ = map_.next_value()?; + } + GeneratedField::ToolConfirmationRequest => { + if tool_confirmation_request__.is_some() { + return Err(serde::de::Error::duplicate_field("toolConfirmationRequest")); + } + tool_confirmation_request__ = map_.next_value()?; + } + GeneratedField::QuestionsRequest => { + if questions_request__.is_some() { + return Err(serde::de::Error::duplicate_field("questionsRequest")); + } + questions_request__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(StepUpdate { + cascade_id: cascade_id__, + trajectory_id: trajectory_id__, + step_index: step_index__, + state: state__, + source: source__, + target: target__, + error_message: error_message__, + thinking: thinking__, + text_delta: text_delta__, + thinking_delta: thinking_delta__, + text: text__, + list_directory: list_directory__, + find_file: find_file__, + search_directory: search_directory__, + view_file: view_file__, + create_file: create_file__, + edit_file: edit_file__, + run_command: run_command__, + compaction: compaction__, + invoke_subagent: invoke_subagent__, + generate_image: generate_image__, + finish: finish__, + error: error__, + mcp_tool: mcp_tool__, + search_web: search_web__, + read_url_content: read_url_content__, + custom_tool: custom_tool__, + request_text: request_text__, + tool_confirmation_request: tool_confirmation_request__, + questions_request: questions_request__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.StepUpdate", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for step_update::Source { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + let variant = match self { + Self::Unspecified => "SOURCE_UNSPECIFIED", + Self::System => "SOURCE_SYSTEM", + Self::User => "SOURCE_USER", + Self::Model => "SOURCE_MODEL", + }; + serializer.serialize_str(variant) + } +} +impl<'de> serde::Deserialize<'de> for step_update::Source { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "SOURCE_UNSPECIFIED", + "SOURCE_SYSTEM", + "SOURCE_USER", + "SOURCE_MODEL", + ]; + + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = step_update::Source; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + fn visit_i64(self, v: i64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Signed(v), &self) + }) + } + + fn visit_u64(self, v: u64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Unsigned(v), &self) + }) + } + + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "SOURCE_UNSPECIFIED" => Ok(step_update::Source::Unspecified), + "SOURCE_SYSTEM" => Ok(step_update::Source::System), + "SOURCE_USER" => Ok(step_update::Source::User), + "SOURCE_MODEL" => Ok(step_update::Source::Model), + _ => Err(serde::de::Error::unknown_variant(value, FIELDS)), + } + } + } + deserializer.deserialize_any(GeneratedVisitor) + } +} +impl serde::Serialize for step_update::State { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + let variant = match self { + Self::Unspecified => "STATE_UNSPECIFIED", + Self::Active => "STATE_ACTIVE", + Self::Done => "STATE_DONE", + Self::WaitingForUser => "STATE_WAITING_FOR_USER", + Self::Error => "STATE_ERROR", + }; + serializer.serialize_str(variant) + } +} +impl<'de> serde::Deserialize<'de> for step_update::State { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "STATE_UNSPECIFIED", + "STATE_ACTIVE", + "STATE_DONE", + "STATE_WAITING_FOR_USER", + "STATE_ERROR", + ]; + + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = step_update::State; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + fn visit_i64(self, v: i64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Signed(v), &self) + }) + } + + fn visit_u64(self, v: u64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Unsigned(v), &self) + }) + } + + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "STATE_UNSPECIFIED" => Ok(step_update::State::Unspecified), + "STATE_ACTIVE" => Ok(step_update::State::Active), + "STATE_DONE" => Ok(step_update::State::Done), + "STATE_WAITING_FOR_USER" => Ok(step_update::State::WaitingForUser), + "STATE_ERROR" => Ok(step_update::State::Error), + _ => Err(serde::de::Error::unknown_variant(value, FIELDS)), + } + } + } + deserializer.deserialize_any(GeneratedVisitor) + } +} +impl serde::Serialize for step_update::Target { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + let variant = match self { + Self::Unspecified => "TARGET_UNSPECIFIED", + Self::User => "TARGET_USER", + Self::Model => "TARGET_MODEL", + Self::Environment => "TARGET_ENVIRONMENT", + }; + serializer.serialize_str(variant) + } +} +impl<'de> serde::Deserialize<'de> for step_update::Target { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "TARGET_UNSPECIFIED", + "TARGET_USER", + "TARGET_MODEL", + "TARGET_ENVIRONMENT", + ]; + + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = step_update::Target; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + fn visit_i64(self, v: i64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Signed(v), &self) + }) + } + + fn visit_u64(self, v: u64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Unsigned(v), &self) + }) + } + + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "TARGET_UNSPECIFIED" => Ok(step_update::Target::Unspecified), + "TARGET_USER" => Ok(step_update::Target::User), + "TARGET_MODEL" => Ok(step_update::Target::Model), + "TARGET_ENVIRONMENT" => Ok(step_update::Target::Environment), + _ => Err(serde::de::Error::unknown_variant(value, FIELDS)), + } + } + } + deserializer.deserialize_any(GeneratedVisitor) + } +} +impl serde::Serialize for SubagentsConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.enabled.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.SubagentsConfig", len)?; + if let Some(v) = self.enabled.as_ref() { + struct_ser.serialize_field("enabled", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for SubagentsConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "enabled", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Enabled, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "enabled" => Ok(GeneratedField::Enabled), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = SubagentsConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.SubagentsConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut enabled__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Enabled => { + if enabled__.is_some() { + return Err(serde::de::Error::duplicate_field("enabled")); + } + enabled__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(SubagentsConfig { + enabled: enabled__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.SubagentsConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for SystemInstructions { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.r#type.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.SystemInstructions", len)?; + if let Some(v) = self.r#type.as_ref() { + match v { + system_instructions::Type::Custom(v) => { + struct_ser.serialize_field("custom", v)?; + } + system_instructions::Type::Appended(v) => { + struct_ser.serialize_field("appended", v)?; + } + } + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for SystemInstructions { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "custom", + "appended", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Custom, + Appended, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "custom" => Ok(GeneratedField::Custom), + "appended" => Ok(GeneratedField::Appended), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = SystemInstructions; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.SystemInstructions") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut r#type__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Custom => { + if r#type__.is_some() { + return Err(serde::de::Error::duplicate_field("custom")); + } + r#type__ = map_.next_value::<::std::option::Option<_>>()?.map(system_instructions::Type::Custom) +; + } + GeneratedField::Appended => { + if r#type__.is_some() { + return Err(serde::de::Error::duplicate_field("appended")); + } + r#type__ = map_.next_value::<::std::option::Option<_>>()?.map(system_instructions::Type::Appended) +; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(SystemInstructions { + r#type: r#type__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.SystemInstructions", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for Tool { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.name.is_some() { + len += 1; + } + if self.description.is_some() { + len += 1; + } + if self.parameters_json_schema.is_some() { + len += 1; + } + if self.response_json_schema.is_some() { + len += 1; + } + if self.defer_loading.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.Tool", len)?; + if let Some(v) = self.name.as_ref() { + struct_ser.serialize_field("name", v)?; + } + if let Some(v) = self.description.as_ref() { + struct_ser.serialize_field("description", v)?; + } + if let Some(v) = self.parameters_json_schema.as_ref() { + struct_ser.serialize_field("parametersJsonSchema", v)?; + } + if let Some(v) = self.response_json_schema.as_ref() { + struct_ser.serialize_field("responseJsonSchema", v)?; + } + if let Some(v) = self.defer_loading.as_ref() { + struct_ser.serialize_field("deferLoading", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for Tool { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "name", + "description", + "parameters_json_schema", + "parametersJsonSchema", + "response_json_schema", + "responseJsonSchema", + "defer_loading", + "deferLoading", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Name, + Description, + ParametersJsonSchema, + ResponseJsonSchema, + DeferLoading, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "name" => Ok(GeneratedField::Name), + "description" => Ok(GeneratedField::Description), + "parametersJsonSchema" | "parameters_json_schema" => Ok(GeneratedField::ParametersJsonSchema), + "responseJsonSchema" | "response_json_schema" => Ok(GeneratedField::ResponseJsonSchema), + "deferLoading" | "defer_loading" => Ok(GeneratedField::DeferLoading), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = Tool; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.Tool") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut name__ = None; + let mut description__ = None; + let mut parameters_json_schema__ = None; + let mut response_json_schema__ = None; + let mut defer_loading__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Name => { + if name__.is_some() { + return Err(serde::de::Error::duplicate_field("name")); + } + name__ = map_.next_value()?; + } + GeneratedField::Description => { + if description__.is_some() { + return Err(serde::de::Error::duplicate_field("description")); + } + description__ = map_.next_value()?; + } + GeneratedField::ParametersJsonSchema => { + if parameters_json_schema__.is_some() { + return Err(serde::de::Error::duplicate_field("parametersJsonSchema")); + } + parameters_json_schema__ = map_.next_value()?; + } + GeneratedField::ResponseJsonSchema => { + if response_json_schema__.is_some() { + return Err(serde::de::Error::duplicate_field("responseJsonSchema")); + } + response_json_schema__ = map_.next_value()?; + } + GeneratedField::DeferLoading => { + if defer_loading__.is_some() { + return Err(serde::de::Error::duplicate_field("deferLoading")); + } + defer_loading__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(Tool { + name: name__, + description: description__, + parameters_json_schema: parameters_json_schema__, + response_json_schema: response_json_schema__, + defer_loading: defer_loading__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.Tool", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ToolCall { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.id.is_some() { + len += 1; + } + if self.name.is_some() { + len += 1; + } + if self.arguments_json.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ToolCall", len)?; + if let Some(v) = self.id.as_ref() { + struct_ser.serialize_field("id", v)?; + } + if let Some(v) = self.name.as_ref() { + struct_ser.serialize_field("name", v)?; + } + if let Some(v) = self.arguments_json.as_ref() { + struct_ser.serialize_field("argumentsJson", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ToolCall { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "id", + "name", + "arguments_json", + "argumentsJson", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Id, + Name, + ArgumentsJson, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "id" => Ok(GeneratedField::Id), + "name" => Ok(GeneratedField::Name), + "argumentsJson" | "arguments_json" => Ok(GeneratedField::ArgumentsJson), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ToolCall; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ToolCall") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut id__ = None; + let mut name__ = None; + let mut arguments_json__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Id => { + if id__.is_some() { + return Err(serde::de::Error::duplicate_field("id")); + } + id__ = map_.next_value()?; + } + GeneratedField::Name => { + if name__.is_some() { + return Err(serde::de::Error::duplicate_field("name")); + } + name__ = map_.next_value()?; + } + GeneratedField::ArgumentsJson => { + if arguments_json__.is_some() { + return Err(serde::de::Error::duplicate_field("argumentsJson")); + } + arguments_json__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ToolCall { + id: id__, + name: name__, + arguments_json: arguments_json__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ToolCall", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ToolConfirmation { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.trajectory_id.is_some() { + len += 1; + } + if self.step_index.is_some() { + len += 1; + } + if self.accepted.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ToolConfirmation", len)?; + if let Some(v) = self.trajectory_id.as_ref() { + struct_ser.serialize_field("trajectoryId", v)?; + } + if let Some(v) = self.step_index.as_ref() { + struct_ser.serialize_field("stepIndex", v)?; + } + if let Some(v) = self.accepted.as_ref() { + struct_ser.serialize_field("accepted", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ToolConfirmation { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "trajectory_id", + "trajectoryId", + "step_index", + "stepIndex", + "accepted", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + TrajectoryId, + StepIndex, + Accepted, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "trajectoryId" | "trajectory_id" => Ok(GeneratedField::TrajectoryId), + "stepIndex" | "step_index" => Ok(GeneratedField::StepIndex), + "accepted" => Ok(GeneratedField::Accepted), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ToolConfirmation; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ToolConfirmation") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut trajectory_id__ = None; + let mut step_index__ = None; + let mut accepted__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::TrajectoryId => { + if trajectory_id__.is_some() { + return Err(serde::de::Error::duplicate_field("trajectoryId")); + } + trajectory_id__ = map_.next_value()?; + } + GeneratedField::StepIndex => { + if step_index__.is_some() { + return Err(serde::de::Error::duplicate_field("stepIndex")); + } + step_index__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::Accepted => { + if accepted__.is_some() { + return Err(serde::de::Error::duplicate_field("accepted")); + } + accepted__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ToolConfirmation { + trajectory_id: trajectory_id__, + step_index: step_index__, + accepted: accepted__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ToolConfirmation", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ToolConfirmationRequest { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let len = 0; + let struct_ser = serializer.serialize_struct("antigravity.localharness.ToolConfirmationRequest", len)?; + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ToolConfirmationRequest { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + Ok(GeneratedField::__SkipField__) + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ToolConfirmationRequest; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ToolConfirmationRequest") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + while map_.next_key::()?.is_some() { + let _ = map_.next_value::()?; + } + Ok(ToolConfirmationRequest { + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ToolConfirmationRequest", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ToolOutputTruncation { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.strategy.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ToolOutputTruncation", len)?; + if let Some(v) = self.strategy.as_ref() { + match v { + tool_output_truncation::Strategy::Truncate(v) => { + struct_ser.serialize_field("truncate", v)?; + } + tool_output_truncation::Strategy::Error(v) => { + struct_ser.serialize_field("error", v)?; + } + } + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ToolOutputTruncation { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "truncate", + "error", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Truncate, + Error, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "truncate" => Ok(GeneratedField::Truncate), + "error" => Ok(GeneratedField::Error), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ToolOutputTruncation; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ToolOutputTruncation") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut strategy__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Truncate => { + if strategy__.is_some() { + return Err(serde::de::Error::duplicate_field("truncate")); + } + strategy__ = map_.next_value::<::std::option::Option<_>>()?.map(tool_output_truncation::Strategy::Truncate) +; + } + GeneratedField::Error => { + if strategy__.is_some() { + return Err(serde::de::Error::duplicate_field("error")); + } + strategy__ = map_.next_value::<::std::option::Option<_>>()?.map(tool_output_truncation::Strategy::Error) +; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ToolOutputTruncation { + strategy: strategy__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ToolOutputTruncation", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for tool_output_truncation::ErrorStrategy { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.max_tokens.is_some() { + len += 1; + } + if self.error_message.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ToolOutputTruncation.ErrorStrategy", len)?; + if let Some(v) = self.max_tokens.as_ref() { + struct_ser.serialize_field("maxTokens", v)?; + } + if let Some(v) = self.error_message.as_ref() { + struct_ser.serialize_field("errorMessage", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for tool_output_truncation::ErrorStrategy { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "max_tokens", + "maxTokens", + "error_message", + "errorMessage", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + MaxTokens, + ErrorMessage, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "maxTokens" | "max_tokens" => Ok(GeneratedField::MaxTokens), + "errorMessage" | "error_message" => Ok(GeneratedField::ErrorMessage), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = tool_output_truncation::ErrorStrategy; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ToolOutputTruncation.ErrorStrategy") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut max_tokens__ = None; + let mut error_message__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::MaxTokens => { + if max_tokens__.is_some() { + return Err(serde::de::Error::duplicate_field("maxTokens")); + } + max_tokens__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::ErrorMessage => { + if error_message__.is_some() { + return Err(serde::de::Error::duplicate_field("errorMessage")); + } + error_message__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(tool_output_truncation::ErrorStrategy { + max_tokens: max_tokens__, + error_message: error_message__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ToolOutputTruncation.ErrorStrategy", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for tool_output_truncation::TruncateStrategy { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.max_tokens.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ToolOutputTruncation.TruncateStrategy", len)?; + if let Some(v) = self.max_tokens.as_ref() { + struct_ser.serialize_field("maxTokens", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for tool_output_truncation::TruncateStrategy { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "max_tokens", + "maxTokens", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + MaxTokens, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "maxTokens" | "max_tokens" => Ok(GeneratedField::MaxTokens), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = tool_output_truncation::TruncateStrategy; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ToolOutputTruncation.TruncateStrategy") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut max_tokens__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::MaxTokens => { + if max_tokens__.is_some() { + return Err(serde::de::Error::duplicate_field("maxTokens")); + } + max_tokens__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(tool_output_truncation::TruncateStrategy { + max_tokens: max_tokens__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ToolOutputTruncation.TruncateStrategy", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ToolResponse { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.id.is_some() { + len += 1; + } + if self.response_json.is_some() { + len += 1; + } + if !self.supplemental_media.is_empty() { + len += 1; + } + if self.error_message.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ToolResponse", len)?; + if let Some(v) = self.id.as_ref() { + struct_ser.serialize_field("id", v)?; + } + if let Some(v) = self.response_json.as_ref() { + struct_ser.serialize_field("responseJson", v)?; + } + if !self.supplemental_media.is_empty() { + struct_ser.serialize_field("supplementalMedia", &self.supplemental_media)?; + } + if let Some(v) = self.error_message.as_ref() { + struct_ser.serialize_field("errorMessage", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ToolResponse { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "id", + "response_json", + "responseJson", + "supplemental_media", + "supplementalMedia", + "error_message", + "errorMessage", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Id, + ResponseJson, + SupplementalMedia, + ErrorMessage, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "id" => Ok(GeneratedField::Id), + "responseJson" | "response_json" => Ok(GeneratedField::ResponseJson), + "supplementalMedia" | "supplemental_media" => Ok(GeneratedField::SupplementalMedia), + "errorMessage" | "error_message" => Ok(GeneratedField::ErrorMessage), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ToolResponse; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ToolResponse") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut id__ = None; + let mut response_json__ = None; + let mut supplemental_media__ = None; + let mut error_message__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Id => { + if id__.is_some() { + return Err(serde::de::Error::duplicate_field("id")); + } + id__ = map_.next_value()?; + } + GeneratedField::ResponseJson => { + if response_json__.is_some() { + return Err(serde::de::Error::duplicate_field("responseJson")); + } + response_json__ = map_.next_value()?; + } + GeneratedField::SupplementalMedia => { + if supplemental_media__.is_some() { + return Err(serde::de::Error::duplicate_field("supplementalMedia")); + } + supplemental_media__ = Some(map_.next_value()?); + } + GeneratedField::ErrorMessage => { + if error_message__.is_some() { + return Err(serde::de::Error::duplicate_field("errorMessage")); + } + error_message__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ToolResponse { + id: id__, + response_json: response_json__, + supplemental_media: supplemental_media__.unwrap_or_default(), + error_message: error_message__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ToolResponse", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ToolSearchConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.enabled.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ToolSearchConfig", len)?; + if let Some(v) = self.enabled.as_ref() { + struct_ser.serialize_field("enabled", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ToolSearchConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "enabled", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Enabled, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "enabled" => Ok(GeneratedField::Enabled), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ToolSearchConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ToolSearchConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut enabled__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Enabled => { + if enabled__.is_some() { + return Err(serde::de::Error::duplicate_field("enabled")); + } + enabled__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ToolSearchConfig { + enabled: enabled__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ToolSearchConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for TrajectoryStateUpdate { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.trajectory_id.is_some() { + len += 1; + } + if self.state.is_some() { + len += 1; + } + if self.error.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.TrajectoryStateUpdate", len)?; + if let Some(v) = self.trajectory_id.as_ref() { + struct_ser.serialize_field("trajectoryId", v)?; + } + if let Some(v) = self.state.as_ref() { + let v = trajectory_state_update::State::try_from(*v) + .map_err(|_| serde::ser::Error::custom(format!("Invalid variant {}", *v)))?; + struct_ser.serialize_field("state", &v)?; + } + if let Some(v) = self.error.as_ref() { + struct_ser.serialize_field("error", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for TrajectoryStateUpdate { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "trajectory_id", + "trajectoryId", + "state", + "error", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + TrajectoryId, + State, + Error, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "trajectoryId" | "trajectory_id" => Ok(GeneratedField::TrajectoryId), + "state" => Ok(GeneratedField::State), + "error" => Ok(GeneratedField::Error), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = TrajectoryStateUpdate; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.TrajectoryStateUpdate") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut trajectory_id__ = None; + let mut state__ = None; + let mut error__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::TrajectoryId => { + if trajectory_id__.is_some() { + return Err(serde::de::Error::duplicate_field("trajectoryId")); + } + trajectory_id__ = map_.next_value()?; + } + GeneratedField::State => { + if state__.is_some() { + return Err(serde::de::Error::duplicate_field("state")); + } + state__ = map_.next_value::<::std::option::Option>()?.map(|x| x as i32); + } + GeneratedField::Error => { + if error__.is_some() { + return Err(serde::de::Error::duplicate_field("error")); + } + error__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(TrajectoryStateUpdate { + trajectory_id: trajectory_id__, + state: state__, + error: error__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.TrajectoryStateUpdate", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for trajectory_state_update::State { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + let variant = match self { + Self::Unspecified => "STATE_UNSPECIFIED", + Self::Running => "STATE_RUNNING", + Self::FullyIdle => "STATE_FULLY_IDLE", + Self::Cancelled => "STATE_CANCELLED", + }; + serializer.serialize_str(variant) + } +} +impl<'de> serde::Deserialize<'de> for trajectory_state_update::State { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "STATE_UNSPECIFIED", + "STATE_RUNNING", + "STATE_FULLY_IDLE", + "STATE_CANCELLED", + ]; + + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = trajectory_state_update::State; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + fn visit_i64(self, v: i64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Signed(v), &self) + }) + } + + fn visit_u64(self, v: u64) -> std::result::Result + where + E: serde::de::Error, + { + i32::try_from(v) + .ok() + .and_then(|x| x.try_into().ok()) + .ok_or_else(|| { + serde::de::Error::invalid_value(serde::de::Unexpected::Unsigned(v), &self) + }) + } + + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "STATE_UNSPECIFIED" => Ok(trajectory_state_update::State::Unspecified), + "STATE_RUNNING" => Ok(trajectory_state_update::State::Running), + "STATE_FULLY_IDLE" => Ok(trajectory_state_update::State::FullyIdle), + "STATE_CANCELLED" => Ok(trajectory_state_update::State::Cancelled), + _ => Err(serde::de::Error::unknown_variant(value, FIELDS)), + } + } + } + deserializer.deserialize_any(GeneratedVisitor) + } +} +impl serde::Serialize for UsageMetadata { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.prompt_token_count.is_some() { + len += 1; + } + if self.cached_content_token_count.is_some() { + len += 1; + } + if self.candidates_token_count.is_some() { + len += 1; + } + if self.thoughts_token_count.is_some() { + len += 1; + } + if self.total_token_count.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.UsageMetadata", len)?; + if let Some(v) = self.prompt_token_count.as_ref() { + #[allow(clippy::needless_borrow)] + struct_ser.serialize_field("promptTokenCount", ToString::to_string(&v).as_str())?; + } + if let Some(v) = self.cached_content_token_count.as_ref() { + #[allow(clippy::needless_borrow)] + struct_ser.serialize_field("cachedContentTokenCount", ToString::to_string(&v).as_str())?; + } + if let Some(v) = self.candidates_token_count.as_ref() { + #[allow(clippy::needless_borrow)] + struct_ser.serialize_field("candidatesTokenCount", ToString::to_string(&v).as_str())?; + } + if let Some(v) = self.thoughts_token_count.as_ref() { + #[allow(clippy::needless_borrow)] + struct_ser.serialize_field("thoughtsTokenCount", ToString::to_string(&v).as_str())?; + } + if let Some(v) = self.total_token_count.as_ref() { + #[allow(clippy::needless_borrow)] + struct_ser.serialize_field("totalTokenCount", ToString::to_string(&v).as_str())?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for UsageMetadata { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "prompt_token_count", + "promptTokenCount", + "cached_content_token_count", + "cachedContentTokenCount", + "candidates_token_count", + "candidatesTokenCount", + "thoughts_token_count", + "thoughtsTokenCount", + "total_token_count", + "totalTokenCount", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + PromptTokenCount, + CachedContentTokenCount, + CandidatesTokenCount, + ThoughtsTokenCount, + TotalTokenCount, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "promptTokenCount" | "prompt_token_count" => Ok(GeneratedField::PromptTokenCount), + "cachedContentTokenCount" | "cached_content_token_count" => Ok(GeneratedField::CachedContentTokenCount), + "candidatesTokenCount" | "candidates_token_count" => Ok(GeneratedField::CandidatesTokenCount), + "thoughtsTokenCount" | "thoughts_token_count" => Ok(GeneratedField::ThoughtsTokenCount), + "totalTokenCount" | "total_token_count" => Ok(GeneratedField::TotalTokenCount), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = UsageMetadata; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.UsageMetadata") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut prompt_token_count__ = None; + let mut cached_content_token_count__ = None; + let mut candidates_token_count__ = None; + let mut thoughts_token_count__ = None; + let mut total_token_count__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::PromptTokenCount => { + if prompt_token_count__.is_some() { + return Err(serde::de::Error::duplicate_field("promptTokenCount")); + } + prompt_token_count__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::CachedContentTokenCount => { + if cached_content_token_count__.is_some() { + return Err(serde::de::Error::duplicate_field("cachedContentTokenCount")); + } + cached_content_token_count__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::CandidatesTokenCount => { + if candidates_token_count__.is_some() { + return Err(serde::de::Error::duplicate_field("candidatesTokenCount")); + } + candidates_token_count__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::ThoughtsTokenCount => { + if thoughts_token_count__.is_some() { + return Err(serde::de::Error::duplicate_field("thoughtsTokenCount")); + } + thoughts_token_count__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::TotalTokenCount => { + if total_token_count__.is_some() { + return Err(serde::de::Error::duplicate_field("totalTokenCount")); + } + total_token_count__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(UsageMetadata { + prompt_token_count: prompt_token_count__, + cached_content_token_count: cached_content_token_count__, + candidates_token_count: candidates_token_count__, + thoughts_token_count: thoughts_token_count__, + total_token_count: total_token_count__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.UsageMetadata", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for UserInput { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if !self.parts.is_empty() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.UserInput", len)?; + if !self.parts.is_empty() { + struct_ser.serialize_field("parts", &self.parts)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for UserInput { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "parts", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Parts, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "parts" => Ok(GeneratedField::Parts), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = UserInput; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.UserInput") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut parts__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Parts => { + if parts__.is_some() { + return Err(serde::de::Error::duplicate_field("parts")); + } + parts__ = Some(map_.next_value()?); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(UserInput { + parts: parts__.unwrap_or_default(), + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.UserInput", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for user_input::Media { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.mime_type.is_some() { + len += 1; + } + if self.description.is_some() { + len += 1; + } + if self.data.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.UserInput.Media", len)?; + if let Some(v) = self.mime_type.as_ref() { + struct_ser.serialize_field("mimeType", v)?; + } + if let Some(v) = self.description.as_ref() { + struct_ser.serialize_field("description", v)?; + } + if let Some(v) = self.data.as_ref() { + #[allow(clippy::needless_borrow)] + struct_ser.serialize_field("data", pbjson::private::base64::encode(&v).as_str())?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for user_input::Media { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "mime_type", + "mimeType", + "description", + "data", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + MimeType, + Description, + Data, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "mimeType" | "mime_type" => Ok(GeneratedField::MimeType), + "description" => Ok(GeneratedField::Description), + "data" => Ok(GeneratedField::Data), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = user_input::Media; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.UserInput.Media") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut mime_type__ = None; + let mut description__ = None; + let mut data__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::MimeType => { + if mime_type__.is_some() { + return Err(serde::de::Error::duplicate_field("mimeType")); + } + mime_type__ = map_.next_value()?; + } + GeneratedField::Description => { + if description__.is_some() { + return Err(serde::de::Error::duplicate_field("description")); + } + description__ = map_.next_value()?; + } + GeneratedField::Data => { + if data__.is_some() { + return Err(serde::de::Error::duplicate_field("data")); + } + data__ = + map_.next_value::<::std::option::Option<::pbjson::private::BytesDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(user_input::Media { + mime_type: mime_type__, + description: description__, + data: data__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.UserInput.Media", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for user_input::Part { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.part.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.UserInput.Part", len)?; + if let Some(v) = self.part.as_ref() { + match v { + user_input::part::Part::Text(v) => { + struct_ser.serialize_field("text", v)?; + } + user_input::part::Part::Media(v) => { + struct_ser.serialize_field("media", v)?; + } + user_input::part::Part::SlashCommand(v) => { + struct_ser.serialize_field("slashCommand", v)?; + } + } + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for user_input::Part { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "text", + "media", + "slash_command", + "slashCommand", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Text, + Media, + SlashCommand, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "text" => Ok(GeneratedField::Text), + "media" => Ok(GeneratedField::Media), + "slashCommand" | "slash_command" => Ok(GeneratedField::SlashCommand), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = user_input::Part; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.UserInput.Part") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut part__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Text => { + if part__.is_some() { + return Err(serde::de::Error::duplicate_field("text")); + } + part__ = map_.next_value::<::std::option::Option<_>>()?.map(user_input::part::Part::Text); + } + GeneratedField::Media => { + if part__.is_some() { + return Err(serde::de::Error::duplicate_field("media")); + } + part__ = map_.next_value::<::std::option::Option<_>>()?.map(user_input::part::Part::Media) +; + } + GeneratedField::SlashCommand => { + if part__.is_some() { + return Err(serde::de::Error::duplicate_field("slashCommand")); + } + part__ = map_.next_value::<::std::option::Option<_>>()?.map(user_input::part::Part::SlashCommand) +; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(user_input::Part { + part: part__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.UserInput.Part", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for user_input::SlashCommand { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.name.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.UserInput.SlashCommand", len)?; + if let Some(v) = self.name.as_ref() { + struct_ser.serialize_field("name", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for user_input::SlashCommand { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "name", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Name, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "name" => Ok(GeneratedField::Name), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = user_input::SlashCommand; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.UserInput.SlashCommand") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut name__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Name => { + if name__.is_some() { + return Err(serde::de::Error::duplicate_field("name")); + } + name__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(user_input::SlashCommand { + name: name__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.UserInput.SlashCommand", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for UserQuestion { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.question_type.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.UserQuestion", len)?; + if let Some(v) = self.question_type.as_ref() { + match v { + user_question::QuestionType::MultipleChoice(v) => { + struct_ser.serialize_field("multipleChoice", v)?; + } + } + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for UserQuestion { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "multiple_choice", + "multipleChoice", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + MultipleChoice, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "multipleChoice" | "multiple_choice" => Ok(GeneratedField::MultipleChoice), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = UserQuestion; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.UserQuestion") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut question_type__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::MultipleChoice => { + if question_type__.is_some() { + return Err(serde::de::Error::duplicate_field("multipleChoice")); + } + question_type__ = map_.next_value::<::std::option::Option<_>>()?.map(user_question::QuestionType::MultipleChoice) +; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(UserQuestion { + question_type: question_type__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.UserQuestion", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for UserQuestionAnswer { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.answer.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.UserQuestionAnswer", len)?; + if let Some(v) = self.answer.as_ref() { + match v { + user_question_answer::Answer::Unanswered(v) => { + struct_ser.serialize_field("unanswered", v)?; + } + user_question_answer::Answer::MultipleChoiceAnswer(v) => { + struct_ser.serialize_field("multipleChoiceAnswer", v)?; + } + } + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for UserQuestionAnswer { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "unanswered", + "multiple_choice_answer", + "multipleChoiceAnswer", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Unanswered, + MultipleChoiceAnswer, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "unanswered" => Ok(GeneratedField::Unanswered), + "multipleChoiceAnswer" | "multiple_choice_answer" => Ok(GeneratedField::MultipleChoiceAnswer), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = UserQuestionAnswer; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.UserQuestionAnswer") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut answer__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Unanswered => { + if answer__.is_some() { + return Err(serde::de::Error::duplicate_field("unanswered")); + } + answer__ = map_.next_value::<::std::option::Option<_>>()?.map(user_question_answer::Answer::Unanswered); + } + GeneratedField::MultipleChoiceAnswer => { + if answer__.is_some() { + return Err(serde::de::Error::duplicate_field("multipleChoiceAnswer")); + } + answer__ = map_.next_value::<::std::option::Option<_>>()?.map(user_question_answer::Answer::MultipleChoiceAnswer) +; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(UserQuestionAnswer { + answer: answer__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.UserQuestionAnswer", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for UserQuestionsConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.enabled.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.UserQuestionsConfig", len)?; + if let Some(v) = self.enabled.as_ref() { + struct_ser.serialize_field("enabled", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for UserQuestionsConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "enabled", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Enabled, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "enabled" => Ok(GeneratedField::Enabled), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = UserQuestionsConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.UserQuestionsConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut enabled__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Enabled => { + if enabled__.is_some() { + return Err(serde::de::Error::duplicate_field("enabled")); + } + enabled__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(UserQuestionsConfig { + enabled: enabled__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.UserQuestionsConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for UserQuestionsRequest { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if !self.questions.is_empty() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.UserQuestionsRequest", len)?; + if !self.questions.is_empty() { + struct_ser.serialize_field("questions", &self.questions)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for UserQuestionsRequest { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "questions", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Questions, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "questions" => Ok(GeneratedField::Questions), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = UserQuestionsRequest; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.UserQuestionsRequest") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut questions__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Questions => { + if questions__.is_some() { + return Err(serde::de::Error::duplicate_field("questions")); + } + questions__ = Some(map_.next_value()?); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(UserQuestionsRequest { + questions: questions__.unwrap_or_default(), + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.UserQuestionsRequest", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for UserQuestionsResponse { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.trajectory_id.is_some() { + len += 1; + } + if self.step_index.is_some() { + len += 1; + } + if self.result.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.UserQuestionsResponse", len)?; + if let Some(v) = self.trajectory_id.as_ref() { + struct_ser.serialize_field("trajectoryId", v)?; + } + if let Some(v) = self.step_index.as_ref() { + struct_ser.serialize_field("stepIndex", v)?; + } + if let Some(v) = self.result.as_ref() { + match v { + user_questions_response::Result::Cancelled(v) => { + struct_ser.serialize_field("cancelled", v)?; + } + user_questions_response::Result::Response(v) => { + struct_ser.serialize_field("response", v)?; + } + } + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for UserQuestionsResponse { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "trajectory_id", + "trajectoryId", + "step_index", + "stepIndex", + "cancelled", + "response", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + TrajectoryId, + StepIndex, + Cancelled, + Response, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "trajectoryId" | "trajectory_id" => Ok(GeneratedField::TrajectoryId), + "stepIndex" | "step_index" => Ok(GeneratedField::StepIndex), + "cancelled" => Ok(GeneratedField::Cancelled), + "response" => Ok(GeneratedField::Response), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = UserQuestionsResponse; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.UserQuestionsResponse") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut trajectory_id__ = None; + let mut step_index__ = None; + let mut result__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::TrajectoryId => { + if trajectory_id__.is_some() { + return Err(serde::de::Error::duplicate_field("trajectoryId")); + } + trajectory_id__ = map_.next_value()?; + } + GeneratedField::StepIndex => { + if step_index__.is_some() { + return Err(serde::de::Error::duplicate_field("stepIndex")); + } + step_index__ = + map_.next_value::<::std::option::Option<::pbjson::private::NumberDeserialize<_>>>()?.map(|x| x.0) + ; + } + GeneratedField::Cancelled => { + if result__.is_some() { + return Err(serde::de::Error::duplicate_field("cancelled")); + } + result__ = map_.next_value::<::std::option::Option<_>>()?.map(user_questions_response::Result::Cancelled); + } + GeneratedField::Response => { + if result__.is_some() { + return Err(serde::de::Error::duplicate_field("response")); + } + result__ = map_.next_value::<::std::option::Option<_>>()?.map(user_questions_response::Result::Response) +; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(UserQuestionsResponse { + trajectory_id: trajectory_id__, + step_index: step_index__, + result: result__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.UserQuestionsResponse", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for user_questions_response::QuestionsResponse { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if !self.answers.is_empty() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.UserQuestionsResponse.QuestionsResponse", len)?; + if !self.answers.is_empty() { + struct_ser.serialize_field("answers", &self.answers)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for user_questions_response::QuestionsResponse { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "answers", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Answers, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "answers" => Ok(GeneratedField::Answers), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = user_questions_response::QuestionsResponse; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.UserQuestionsResponse.QuestionsResponse") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut answers__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Answers => { + if answers__.is_some() { + return Err(serde::de::Error::duplicate_field("answers")); + } + answers__ = Some(map_.next_value()?); + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(user_questions_response::QuestionsResponse { + answers: answers__.unwrap_or_default(), + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.UserQuestionsResponse.QuestionsResponse", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for VertexEndpoint { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.base_url.is_some() { + len += 1; + } + if !self.http_headers.is_empty() { + len += 1; + } + if self.project.is_some() { + len += 1; + } + if self.location.is_some() { + len += 1; + } + if self.options.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.VertexEndpoint", len)?; + if let Some(v) = self.base_url.as_ref() { + struct_ser.serialize_field("baseUrl", v)?; + } + if !self.http_headers.is_empty() { + struct_ser.serialize_field("httpHeaders", &self.http_headers)?; + } + if let Some(v) = self.project.as_ref() { + struct_ser.serialize_field("project", v)?; + } + if let Some(v) = self.location.as_ref() { + struct_ser.serialize_field("location", v)?; + } + if let Some(v) = self.options.as_ref() { + struct_ser.serialize_field("options", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for VertexEndpoint { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "base_url", + "baseUrl", + "http_headers", + "httpHeaders", + "project", + "location", + "options", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + BaseUrl, + HttpHeaders, + Project, + Location, + Options, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "baseUrl" | "base_url" => Ok(GeneratedField::BaseUrl), + "httpHeaders" | "http_headers" => Ok(GeneratedField::HttpHeaders), + "project" => Ok(GeneratedField::Project), + "location" => Ok(GeneratedField::Location), + "options" => Ok(GeneratedField::Options), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = VertexEndpoint; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.VertexEndpoint") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut base_url__ = None; + let mut http_headers__ = None; + let mut project__ = None; + let mut location__ = None; + let mut options__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::BaseUrl => { + if base_url__.is_some() { + return Err(serde::de::Error::duplicate_field("baseUrl")); + } + base_url__ = map_.next_value()?; + } + GeneratedField::HttpHeaders => { + if http_headers__.is_some() { + return Err(serde::de::Error::duplicate_field("httpHeaders")); + } + http_headers__ = Some( + map_.next_value::>()? + ); + } + GeneratedField::Project => { + if project__.is_some() { + return Err(serde::de::Error::duplicate_field("project")); + } + project__ = map_.next_value()?; + } + GeneratedField::Location => { + if location__.is_some() { + return Err(serde::de::Error::duplicate_field("location")); + } + location__ = map_.next_value()?; + } + GeneratedField::Options => { + if options__.is_some() { + return Err(serde::de::Error::duplicate_field("options")); + } + options__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(VertexEndpoint { + base_url: base_url__, + http_headers: http_headers__.unwrap_or_default(), + project: project__, + location: location__, + options: options__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.VertexEndpoint", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for ViewFileToolConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.enabled.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.ViewFileToolConfig", len)?; + if let Some(v) = self.enabled.as_ref() { + struct_ser.serialize_field("enabled", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for ViewFileToolConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "enabled", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Enabled, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "enabled" => Ok(GeneratedField::Enabled), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = ViewFileToolConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.ViewFileToolConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut enabled__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Enabled => { + if enabled__.is_some() { + return Err(serde::de::Error::duplicate_field("enabled")); + } + enabled__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(ViewFileToolConfig { + enabled: enabled__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.ViewFileToolConfig", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for Workspace { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.workspace_type.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.Workspace", len)?; + if let Some(v) = self.workspace_type.as_ref() { + match v { + workspace::WorkspaceType::FilesystemWorkspace(v) => { + struct_ser.serialize_field("filesystemWorkspace", v)?; + } + } + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for Workspace { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "filesystem_workspace", + "filesystemWorkspace", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + FilesystemWorkspace, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "filesystemWorkspace" | "filesystem_workspace" => Ok(GeneratedField::FilesystemWorkspace), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = Workspace; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.Workspace") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut workspace_type__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::FilesystemWorkspace => { + if workspace_type__.is_some() { + return Err(serde::de::Error::duplicate_field("filesystemWorkspace")); + } + workspace_type__ = map_.next_value::<::std::option::Option<_>>()?.map(workspace::WorkspaceType::FilesystemWorkspace) +; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(Workspace { + workspace_type: workspace_type__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.Workspace", FIELDS, GeneratedVisitor) + } +} +impl serde::Serialize for WriteToFileToolConfig { + #[allow(deprecated)] + fn serialize(&self, serializer: S) -> std::result::Result + where + S: serde::Serializer, + { + use serde::ser::SerializeStruct; + let mut len = 0; + if self.enabled.is_some() { + len += 1; + } + let mut struct_ser = serializer.serialize_struct("antigravity.localharness.WriteToFileToolConfig", len)?; + if let Some(v) = self.enabled.as_ref() { + struct_ser.serialize_field("enabled", v)?; + } + struct_ser.end() + } +} +impl<'de> serde::Deserialize<'de> for WriteToFileToolConfig { + #[allow(deprecated)] + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + const FIELDS: &[&str] = &[ + "enabled", + ]; + + #[allow(clippy::enum_variant_names)] + enum GeneratedField { + Enabled, + __SkipField__, + } + impl<'de> serde::Deserialize<'de> for GeneratedField { + fn deserialize(deserializer: D) -> std::result::Result + where + D: serde::Deserializer<'de>, + { + struct GeneratedVisitor; + + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = GeneratedField; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + write!(formatter, "expected one of: {:?}", &FIELDS) + } + + #[allow(unused_variables)] + fn visit_str(self, value: &str) -> std::result::Result + where + E: serde::de::Error, + { + match value { + "enabled" => Ok(GeneratedField::Enabled), + _ => Ok(GeneratedField::__SkipField__), + } + } + } + deserializer.deserialize_identifier(GeneratedVisitor) + } + } + struct GeneratedVisitor; + impl<'de> serde::de::Visitor<'de> for GeneratedVisitor { + type Value = WriteToFileToolConfig; + + fn expecting(&self, formatter: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + formatter.write_str("struct antigravity.localharness.WriteToFileToolConfig") + } + + fn visit_map(self, mut map_: V) -> std::result::Result + where + V: serde::de::MapAccess<'de>, + { + let mut enabled__ = None; + while let Some(k) = map_.next_key()? { + match k { + GeneratedField::Enabled => { + if enabled__.is_some() { + return Err(serde::de::Error::duplicate_field("enabled")); + } + enabled__ = map_.next_value()?; + } + GeneratedField::__SkipField__ => { + let _ = map_.next_value::()?; + } + } + } + Ok(WriteToFileToolConfig { + enabled: enabled__, + }) + } + } + deserializer.deserialize_struct("antigravity.localharness.WriteToFileToolConfig", FIELDS, GeneratedVisitor) + } +} diff --git a/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/out/proto_descriptor.bin b/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/out/proto_descriptor.bin new file mode 100644 index 0000000..8524075 Binary files /dev/null and b/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/out/proto_descriptor.bin differ diff --git a/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/output b/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/output new file mode 100644 index 0000000..c46e58a --- /dev/null +++ b/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/output @@ -0,0 +1 @@ +cargo:rustc-env=RUSTC_VERSION=/root/.rustup/toolchains/1.97.1-x86_64-unknown-linux-gnu/bin/rustc diff --git a/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/root-output b/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/root-output new file mode 100644 index 0000000..1d48fc2 --- /dev/null +++ b/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/stderr b/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/anyhow-30de1fe9efd21a23/invoked.timestamp b/examples/agent_server/target/debug/build/anyhow-30de1fe9efd21a23/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/anyhow-30de1fe9efd21a23/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/anyhow-30de1fe9efd21a23/output b/examples/agent_server/target/debug/build/anyhow-30de1fe9efd21a23/output new file mode 100644 index 0000000..81d9fc4 --- /dev/null +++ b/examples/agent_server/target/debug/build/anyhow-30de1fe9efd21a23/output @@ -0,0 +1,7 @@ +cargo:rerun-if-changed=src/nightly.rs +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP +cargo:rustc-check-cfg=cfg(anyhow_build_probe) +cargo:rustc-check-cfg=cfg(anyhow_nightly_testing) +cargo:rustc-check-cfg=cfg(anyhow_no_clippy_format_args) +cargo:rustc-check-cfg=cfg(anyhow_no_core_error) +cargo:rustc-check-cfg=cfg(error_generic_member_access) diff --git a/examples/agent_server/target/debug/build/anyhow-30de1fe9efd21a23/root-output b/examples/agent_server/target/debug/build/anyhow-30de1fe9efd21a23/root-output new file mode 100644 index 0000000..1c20b47 --- /dev/null +++ b/examples/agent_server/target/debug/build/anyhow-30de1fe9efd21a23/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/anyhow-30de1fe9efd21a23/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/anyhow-30de1fe9efd21a23/stderr b/examples/agent_server/target/debug/build/anyhow-30de1fe9efd21a23/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/anyhow-fbd2417508b87357/build-script-build b/examples/agent_server/target/debug/build/anyhow-fbd2417508b87357/build-script-build new file mode 100755 index 0000000..736f229 Binary files /dev/null and b/examples/agent_server/target/debug/build/anyhow-fbd2417508b87357/build-script-build differ diff --git a/examples/agent_server/target/debug/build/anyhow-fbd2417508b87357/build_script_build-fbd2417508b87357 b/examples/agent_server/target/debug/build/anyhow-fbd2417508b87357/build_script_build-fbd2417508b87357 new file mode 100755 index 0000000..736f229 Binary files /dev/null and b/examples/agent_server/target/debug/build/anyhow-fbd2417508b87357/build_script_build-fbd2417508b87357 differ diff --git a/examples/agent_server/target/debug/build/anyhow-fbd2417508b87357/build_script_build-fbd2417508b87357.d b/examples/agent_server/target/debug/build/anyhow-fbd2417508b87357/build_script_build-fbd2417508b87357.d new file mode 100644 index 0000000..44e7bfd --- /dev/null +++ b/examples/agent_server/target/debug/build/anyhow-fbd2417508b87357/build_script_build-fbd2417508b87357.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/anyhow-fbd2417508b87357/build_script_build-fbd2417508b87357.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/anyhow-fbd2417508b87357/build_script_build-fbd2417508b87357: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/build.rs: diff --git a/examples/agent_server/target/debug/build/generic-array-7523bc943aaae0d9/invoked.timestamp b/examples/agent_server/target/debug/build/generic-array-7523bc943aaae0d9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/generic-array-7523bc943aaae0d9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/generic-array-7523bc943aaae0d9/output b/examples/agent_server/target/debug/build/generic-array-7523bc943aaae0d9/output new file mode 100644 index 0000000..a67c3a8 --- /dev/null +++ b/examples/agent_server/target/debug/build/generic-array-7523bc943aaae0d9/output @@ -0,0 +1 @@ +cargo:rustc-cfg=relaxed_coherence diff --git a/examples/agent_server/target/debug/build/generic-array-7523bc943aaae0d9/root-output b/examples/agent_server/target/debug/build/generic-array-7523bc943aaae0d9/root-output new file mode 100644 index 0000000..fb5b1f0 --- /dev/null +++ b/examples/agent_server/target/debug/build/generic-array-7523bc943aaae0d9/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/generic-array-7523bc943aaae0d9/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/generic-array-7523bc943aaae0d9/stderr b/examples/agent_server/target/debug/build/generic-array-7523bc943aaae0d9/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/generic-array-7f343a2386109d39/build-script-build b/examples/agent_server/target/debug/build/generic-array-7f343a2386109d39/build-script-build new file mode 100755 index 0000000..9dbce8f Binary files /dev/null and b/examples/agent_server/target/debug/build/generic-array-7f343a2386109d39/build-script-build differ diff --git a/examples/agent_server/target/debug/build/generic-array-7f343a2386109d39/build_script_build-7f343a2386109d39 b/examples/agent_server/target/debug/build/generic-array-7f343a2386109d39/build_script_build-7f343a2386109d39 new file mode 100755 index 0000000..9dbce8f Binary files /dev/null and b/examples/agent_server/target/debug/build/generic-array-7f343a2386109d39/build_script_build-7f343a2386109d39 differ diff --git a/examples/agent_server/target/debug/build/generic-array-7f343a2386109d39/build_script_build-7f343a2386109d39.d b/examples/agent_server/target/debug/build/generic-array-7f343a2386109d39/build_script_build-7f343a2386109d39.d new file mode 100644 index 0000000..744edc8 --- /dev/null +++ b/examples/agent_server/target/debug/build/generic-array-7f343a2386109d39/build_script_build-7f343a2386109d39.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/generic-array-7f343a2386109d39/build_script_build-7f343a2386109d39.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/generic-array-7f343a2386109d39/build_script_build-7f343a2386109d39: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/build.rs: diff --git a/examples/agent_server/target/debug/build/getrandom-aecce89476706edf/build-script-build b/examples/agent_server/target/debug/build/getrandom-aecce89476706edf/build-script-build new file mode 100755 index 0000000..b3d4d79 Binary files /dev/null and b/examples/agent_server/target/debug/build/getrandom-aecce89476706edf/build-script-build differ diff --git a/examples/agent_server/target/debug/build/getrandom-aecce89476706edf/build_script_build-aecce89476706edf b/examples/agent_server/target/debug/build/getrandom-aecce89476706edf/build_script_build-aecce89476706edf new file mode 100755 index 0000000..b3d4d79 Binary files /dev/null and b/examples/agent_server/target/debug/build/getrandom-aecce89476706edf/build_script_build-aecce89476706edf differ diff --git a/examples/agent_server/target/debug/build/getrandom-aecce89476706edf/build_script_build-aecce89476706edf.d b/examples/agent_server/target/debug/build/getrandom-aecce89476706edf/build_script_build-aecce89476706edf.d new file mode 100644 index 0000000..ca1d7b3 --- /dev/null +++ b/examples/agent_server/target/debug/build/getrandom-aecce89476706edf/build_script_build-aecce89476706edf.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/getrandom-aecce89476706edf/build_script_build-aecce89476706edf.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/getrandom-aecce89476706edf/build_script_build-aecce89476706edf: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/build.rs: diff --git a/examples/agent_server/target/debug/build/getrandom-d35b6c2445598084/invoked.timestamp b/examples/agent_server/target/debug/build/getrandom-d35b6c2445598084/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/getrandom-d35b6c2445598084/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/getrandom-d35b6c2445598084/output b/examples/agent_server/target/debug/build/getrandom-d35b6c2445598084/output new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/examples/agent_server/target/debug/build/getrandom-d35b6c2445598084/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=build.rs diff --git a/examples/agent_server/target/debug/build/getrandom-d35b6c2445598084/root-output b/examples/agent_server/target/debug/build/getrandom-d35b6c2445598084/root-output new file mode 100644 index 0000000..a34cf5a --- /dev/null +++ b/examples/agent_server/target/debug/build/getrandom-d35b6c2445598084/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/getrandom-d35b6c2445598084/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/getrandom-d35b6c2445598084/stderr b/examples/agent_server/target/debug/build/getrandom-d35b6c2445598084/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/httparse-052f35d69ef80cf8/build-script-build b/examples/agent_server/target/debug/build/httparse-052f35d69ef80cf8/build-script-build new file mode 100755 index 0000000..50dbdaa Binary files /dev/null and b/examples/agent_server/target/debug/build/httparse-052f35d69ef80cf8/build-script-build differ diff --git a/examples/agent_server/target/debug/build/httparse-052f35d69ef80cf8/build_script_build-052f35d69ef80cf8 b/examples/agent_server/target/debug/build/httparse-052f35d69ef80cf8/build_script_build-052f35d69ef80cf8 new file mode 100755 index 0000000..50dbdaa Binary files /dev/null and b/examples/agent_server/target/debug/build/httparse-052f35d69ef80cf8/build_script_build-052f35d69ef80cf8 differ diff --git a/examples/agent_server/target/debug/build/httparse-052f35d69ef80cf8/build_script_build-052f35d69ef80cf8.d b/examples/agent_server/target/debug/build/httparse-052f35d69ef80cf8/build_script_build-052f35d69ef80cf8.d new file mode 100644 index 0000000..319288c --- /dev/null +++ b/examples/agent_server/target/debug/build/httparse-052f35d69ef80cf8/build_script_build-052f35d69ef80cf8.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/httparse-052f35d69ef80cf8/build_script_build-052f35d69ef80cf8.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/httparse-052f35d69ef80cf8/build_script_build-052f35d69ef80cf8: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/build.rs: diff --git a/examples/agent_server/target/debug/build/httparse-53fe1ce4676ef55c/invoked.timestamp b/examples/agent_server/target/debug/build/httparse-53fe1ce4676ef55c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/httparse-53fe1ce4676ef55c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/httparse-53fe1ce4676ef55c/output b/examples/agent_server/target/debug/build/httparse-53fe1ce4676ef55c/output new file mode 100644 index 0000000..aac2d6a --- /dev/null +++ b/examples/agent_server/target/debug/build/httparse-53fe1ce4676ef55c/output @@ -0,0 +1,2 @@ +cargo:rustc-cfg=httparse_simd_neon_intrinsics +cargo:rustc-cfg=httparse_simd diff --git a/examples/agent_server/target/debug/build/httparse-53fe1ce4676ef55c/root-output b/examples/agent_server/target/debug/build/httparse-53fe1ce4676ef55c/root-output new file mode 100644 index 0000000..dfa412b --- /dev/null +++ b/examples/agent_server/target/debug/build/httparse-53fe1ce4676ef55c/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/httparse-53fe1ce4676ef55c/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/httparse-53fe1ce4676ef55c/stderr b/examples/agent_server/target/debug/build/httparse-53fe1ce4676ef55c/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/invoked.timestamp b/examples/agent_server/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/output b/examples/agent_server/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/output new file mode 100644 index 0000000..30ced52 --- /dev/null +++ b/examples/agent_server/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/output @@ -0,0 +1,2 @@ +cargo:rerun-if-env-changed=ICU4X_DATA_DIR +cargo:rustc-check-cfg=cfg(icu4c_enable_renaming) diff --git a/examples/agent_server/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/root-output b/examples/agent_server/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/root-output new file mode 100644 index 0000000..0c90eb5 --- /dev/null +++ b/examples/agent_server/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/stderr b/examples/agent_server/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build-script-build b/examples/agent_server/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build-script-build new file mode 100755 index 0000000..a14b152 Binary files /dev/null and b/examples/agent_server/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build-script-build differ diff --git a/examples/agent_server/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build_script_build-972e8c05ead035c0 b/examples/agent_server/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build_script_build-972e8c05ead035c0 new file mode 100755 index 0000000..a14b152 Binary files /dev/null and b/examples/agent_server/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build_script_build-972e8c05ead035c0 differ diff --git a/examples/agent_server/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build_script_build-972e8c05ead035c0.d b/examples/agent_server/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build_script_build-972e8c05ead035c0.d new file mode 100644 index 0000000..159af08 --- /dev/null +++ b/examples/agent_server/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build_script_build-972e8c05ead035c0.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build_script_build-972e8c05ead035c0.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build_script_build-972e8c05ead035c0: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/build.rs: diff --git a/examples/agent_server/target/debug/build/icu_properties_data-c25c7adf66567e52/invoked.timestamp b/examples/agent_server/target/debug/build/icu_properties_data-c25c7adf66567e52/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/icu_properties_data-c25c7adf66567e52/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/icu_properties_data-c25c7adf66567e52/output b/examples/agent_server/target/debug/build/icu_properties_data-c25c7adf66567e52/output new file mode 100644 index 0000000..30ced52 --- /dev/null +++ b/examples/agent_server/target/debug/build/icu_properties_data-c25c7adf66567e52/output @@ -0,0 +1,2 @@ +cargo:rerun-if-env-changed=ICU4X_DATA_DIR +cargo:rustc-check-cfg=cfg(icu4c_enable_renaming) diff --git a/examples/agent_server/target/debug/build/icu_properties_data-c25c7adf66567e52/root-output b/examples/agent_server/target/debug/build/icu_properties_data-c25c7adf66567e52/root-output new file mode 100644 index 0000000..6e2a552 --- /dev/null +++ b/examples/agent_server/target/debug/build/icu_properties_data-c25c7adf66567e52/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/icu_properties_data-c25c7adf66567e52/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/icu_properties_data-c25c7adf66567e52/stderr b/examples/agent_server/target/debug/build/icu_properties_data-c25c7adf66567e52/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/icu_properties_data-c6a58e264774ca8f/build-script-build b/examples/agent_server/target/debug/build/icu_properties_data-c6a58e264774ca8f/build-script-build new file mode 100755 index 0000000..e780471 Binary files /dev/null and b/examples/agent_server/target/debug/build/icu_properties_data-c6a58e264774ca8f/build-script-build differ diff --git a/examples/agent_server/target/debug/build/icu_properties_data-c6a58e264774ca8f/build_script_build-c6a58e264774ca8f b/examples/agent_server/target/debug/build/icu_properties_data-c6a58e264774ca8f/build_script_build-c6a58e264774ca8f new file mode 100755 index 0000000..e780471 Binary files /dev/null and b/examples/agent_server/target/debug/build/icu_properties_data-c6a58e264774ca8f/build_script_build-c6a58e264774ca8f differ diff --git a/examples/agent_server/target/debug/build/icu_properties_data-c6a58e264774ca8f/build_script_build-c6a58e264774ca8f.d b/examples/agent_server/target/debug/build/icu_properties_data-c6a58e264774ca8f/build_script_build-c6a58e264774ca8f.d new file mode 100644 index 0000000..91dbe70 --- /dev/null +++ b/examples/agent_server/target/debug/build/icu_properties_data-c6a58e264774ca8f/build_script_build-c6a58e264774ca8f.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/icu_properties_data-c6a58e264774ca8f/build_script_build-c6a58e264774ca8f.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/icu_properties_data-c6a58e264774ca8f/build_script_build-c6a58e264774ca8f: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/build.rs: diff --git a/examples/agent_server/target/debug/build/libc-19124a20af635abc/build-script-build b/examples/agent_server/target/debug/build/libc-19124a20af635abc/build-script-build new file mode 100755 index 0000000..cf27dbe Binary files /dev/null and b/examples/agent_server/target/debug/build/libc-19124a20af635abc/build-script-build differ diff --git a/examples/agent_server/target/debug/build/libc-19124a20af635abc/build_script_build-19124a20af635abc b/examples/agent_server/target/debug/build/libc-19124a20af635abc/build_script_build-19124a20af635abc new file mode 100755 index 0000000..cf27dbe Binary files /dev/null and b/examples/agent_server/target/debug/build/libc-19124a20af635abc/build_script_build-19124a20af635abc differ diff --git a/examples/agent_server/target/debug/build/libc-19124a20af635abc/build_script_build-19124a20af635abc.d b/examples/agent_server/target/debug/build/libc-19124a20af635abc/build_script_build-19124a20af635abc.d new file mode 100644 index 0000000..6030d4f --- /dev/null +++ b/examples/agent_server/target/debug/build/libc-19124a20af635abc/build_script_build-19124a20af635abc.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/libc-19124a20af635abc/build_script_build-19124a20af635abc.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/libc-19124a20af635abc/build_script_build-19124a20af635abc: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/build.rs: diff --git a/examples/agent_server/target/debug/build/libc-a0156fe49325159f/invoked.timestamp b/examples/agent_server/target/debug/build/libc-a0156fe49325159f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/libc-a0156fe49325159f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/libc-a0156fe49325159f/output b/examples/agent_server/target/debug/build/libc-a0156fe49325159f/output new file mode 100644 index 0000000..4528d3b --- /dev/null +++ b/examples/agent_server/target/debug/build/libc-a0156fe49325159f/output @@ -0,0 +1,25 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-env-changed=LIBC_BUILD_VERBOSE +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION +cargo:rustc-cfg=freebsd12 +cargo:rustc-check-cfg=cfg(emscripten_old_stat_abi) +cargo:rustc-check-cfg=cfg(espidf_picolibc) +cargo:rustc-check-cfg=cfg(espidf_time32) +cargo:rustc-check-cfg=cfg(freebsd10) +cargo:rustc-check-cfg=cfg(freebsd11) +cargo:rustc-check-cfg=cfg(freebsd12) +cargo:rustc-check-cfg=cfg(freebsd13) +cargo:rustc-check-cfg=cfg(freebsd14) +cargo:rustc-check-cfg=cfg(freebsd15) +cargo:rustc-check-cfg=cfg(gnu_file_offset_bits64) +cargo:rustc-check-cfg=cfg(gnu_time_bits64) +cargo:rustc-check-cfg=cfg(libc_deny_warnings) +cargo:rustc-check-cfg=cfg(linux_time_bits64) +cargo:rustc-check-cfg=cfg(musl_v1_2_3) +cargo:rustc-check-cfg=cfg(musl32_time64) +cargo:rustc-check-cfg=cfg(musl_redir_time64) +cargo:rustc-check-cfg=cfg(vxworks_lt_25_09) +cargo:rustc-check-cfg=cfg(libc_pauthtest) +cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx","cygwin","qurt","qnx")) +cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos","nto71_iosock")) +cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) diff --git a/examples/agent_server/target/debug/build/libc-a0156fe49325159f/root-output b/examples/agent_server/target/debug/build/libc-a0156fe49325159f/root-output new file mode 100644 index 0000000..07d73ed --- /dev/null +++ b/examples/agent_server/target/debug/build/libc-a0156fe49325159f/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/libc-a0156fe49325159f/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/libc-a0156fe49325159f/stderr b/examples/agent_server/target/debug/build/libc-a0156fe49325159f/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/libc-a72ef1f50d94be8f/invoked.timestamp b/examples/agent_server/target/debug/build/libc-a72ef1f50d94be8f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/libc-a72ef1f50d94be8f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/libc-a72ef1f50d94be8f/output b/examples/agent_server/target/debug/build/libc-a72ef1f50d94be8f/output new file mode 100644 index 0000000..4528d3b --- /dev/null +++ b/examples/agent_server/target/debug/build/libc-a72ef1f50d94be8f/output @@ -0,0 +1,25 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-env-changed=LIBC_BUILD_VERBOSE +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION +cargo:rustc-cfg=freebsd12 +cargo:rustc-check-cfg=cfg(emscripten_old_stat_abi) +cargo:rustc-check-cfg=cfg(espidf_picolibc) +cargo:rustc-check-cfg=cfg(espidf_time32) +cargo:rustc-check-cfg=cfg(freebsd10) +cargo:rustc-check-cfg=cfg(freebsd11) +cargo:rustc-check-cfg=cfg(freebsd12) +cargo:rustc-check-cfg=cfg(freebsd13) +cargo:rustc-check-cfg=cfg(freebsd14) +cargo:rustc-check-cfg=cfg(freebsd15) +cargo:rustc-check-cfg=cfg(gnu_file_offset_bits64) +cargo:rustc-check-cfg=cfg(gnu_time_bits64) +cargo:rustc-check-cfg=cfg(libc_deny_warnings) +cargo:rustc-check-cfg=cfg(linux_time_bits64) +cargo:rustc-check-cfg=cfg(musl_v1_2_3) +cargo:rustc-check-cfg=cfg(musl32_time64) +cargo:rustc-check-cfg=cfg(musl_redir_time64) +cargo:rustc-check-cfg=cfg(vxworks_lt_25_09) +cargo:rustc-check-cfg=cfg(libc_pauthtest) +cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx","cygwin","qurt","qnx")) +cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos","nto71_iosock")) +cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) diff --git a/examples/agent_server/target/debug/build/libc-a72ef1f50d94be8f/root-output b/examples/agent_server/target/debug/build/libc-a72ef1f50d94be8f/root-output new file mode 100644 index 0000000..5522b6b --- /dev/null +++ b/examples/agent_server/target/debug/build/libc-a72ef1f50d94be8f/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/libc-a72ef1f50d94be8f/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/libc-a72ef1f50d94be8f/stderr b/examples/agent_server/target/debug/build/libc-a72ef1f50d94be8f/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/libc-fdafe8ebaf5b42a4/build-script-build b/examples/agent_server/target/debug/build/libc-fdafe8ebaf5b42a4/build-script-build new file mode 100755 index 0000000..4ce44b0 Binary files /dev/null and b/examples/agent_server/target/debug/build/libc-fdafe8ebaf5b42a4/build-script-build differ diff --git a/examples/agent_server/target/debug/build/libc-fdafe8ebaf5b42a4/build_script_build-fdafe8ebaf5b42a4 b/examples/agent_server/target/debug/build/libc-fdafe8ebaf5b42a4/build_script_build-fdafe8ebaf5b42a4 new file mode 100755 index 0000000..4ce44b0 Binary files /dev/null and b/examples/agent_server/target/debug/build/libc-fdafe8ebaf5b42a4/build_script_build-fdafe8ebaf5b42a4 differ diff --git a/examples/agent_server/target/debug/build/libc-fdafe8ebaf5b42a4/build_script_build-fdafe8ebaf5b42a4.d b/examples/agent_server/target/debug/build/libc-fdafe8ebaf5b42a4/build_script_build-fdafe8ebaf5b42a4.d new file mode 100644 index 0000000..c9be3fb --- /dev/null +++ b/examples/agent_server/target/debug/build/libc-fdafe8ebaf5b42a4/build_script_build-fdafe8ebaf5b42a4.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/libc-fdafe8ebaf5b42a4/build_script_build-fdafe8ebaf5b42a4.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/libc-fdafe8ebaf5b42a4/build_script_build-fdafe8ebaf5b42a4: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/build.rs: diff --git a/examples/agent_server/target/debug/build/parking_lot_core-52063db600f06e4d/build-script-build b/examples/agent_server/target/debug/build/parking_lot_core-52063db600f06e4d/build-script-build new file mode 100755 index 0000000..daeec50 Binary files /dev/null and b/examples/agent_server/target/debug/build/parking_lot_core-52063db600f06e4d/build-script-build differ diff --git a/examples/agent_server/target/debug/build/parking_lot_core-52063db600f06e4d/build_script_build-52063db600f06e4d b/examples/agent_server/target/debug/build/parking_lot_core-52063db600f06e4d/build_script_build-52063db600f06e4d new file mode 100755 index 0000000..daeec50 Binary files /dev/null and b/examples/agent_server/target/debug/build/parking_lot_core-52063db600f06e4d/build_script_build-52063db600f06e4d differ diff --git a/examples/agent_server/target/debug/build/parking_lot_core-52063db600f06e4d/build_script_build-52063db600f06e4d.d b/examples/agent_server/target/debug/build/parking_lot_core-52063db600f06e4d/build_script_build-52063db600f06e4d.d new file mode 100644 index 0000000..cc1064b --- /dev/null +++ b/examples/agent_server/target/debug/build/parking_lot_core-52063db600f06e4d/build_script_build-52063db600f06e4d.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/parking_lot_core-52063db600f06e4d/build_script_build-52063db600f06e4d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/parking_lot_core-52063db600f06e4d/build_script_build-52063db600f06e4d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs: diff --git a/examples/agent_server/target/debug/build/parking_lot_core-7278ab506aa01ffc/invoked.timestamp b/examples/agent_server/target/debug/build/parking_lot_core-7278ab506aa01ffc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/parking_lot_core-7278ab506aa01ffc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/parking_lot_core-7278ab506aa01ffc/output b/examples/agent_server/target/debug/build/parking_lot_core-7278ab506aa01ffc/output new file mode 100644 index 0000000..e4a87f2 --- /dev/null +++ b/examples/agent_server/target/debug/build/parking_lot_core-7278ab506aa01ffc/output @@ -0,0 +1,2 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(tsan_enabled) diff --git a/examples/agent_server/target/debug/build/parking_lot_core-7278ab506aa01ffc/root-output b/examples/agent_server/target/debug/build/parking_lot_core-7278ab506aa01ffc/root-output new file mode 100644 index 0000000..55fd21d --- /dev/null +++ b/examples/agent_server/target/debug/build/parking_lot_core-7278ab506aa01ffc/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/parking_lot_core-7278ab506aa01ffc/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/parking_lot_core-7278ab506aa01ffc/stderr b/examples/agent_server/target/debug/build/parking_lot_core-7278ab506aa01ffc/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/prettyplease-313503e4931fbd32/invoked.timestamp b/examples/agent_server/target/debug/build/prettyplease-313503e4931fbd32/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/prettyplease-313503e4931fbd32/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/prettyplease-313503e4931fbd32/output b/examples/agent_server/target/debug/build/prettyplease-313503e4931fbd32/output new file mode 100644 index 0000000..ef4528d --- /dev/null +++ b/examples/agent_server/target/debug/build/prettyplease-313503e4931fbd32/output @@ -0,0 +1,5 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(exhaustive) +cargo:rustc-check-cfg=cfg(prettyplease_debug) +cargo:rustc-check-cfg=cfg(prettyplease_debug_indent) +cargo:VERSION=0.2.37 diff --git a/examples/agent_server/target/debug/build/prettyplease-313503e4931fbd32/root-output b/examples/agent_server/target/debug/build/prettyplease-313503e4931fbd32/root-output new file mode 100644 index 0000000..aa3ca56 --- /dev/null +++ b/examples/agent_server/target/debug/build/prettyplease-313503e4931fbd32/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/prettyplease-313503e4931fbd32/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/prettyplease-313503e4931fbd32/stderr b/examples/agent_server/target/debug/build/prettyplease-313503e4931fbd32/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/prettyplease-4e660e93577719bd/build-script-build b/examples/agent_server/target/debug/build/prettyplease-4e660e93577719bd/build-script-build new file mode 100755 index 0000000..0275582 Binary files /dev/null and b/examples/agent_server/target/debug/build/prettyplease-4e660e93577719bd/build-script-build differ diff --git a/examples/agent_server/target/debug/build/prettyplease-4e660e93577719bd/build_script_build-4e660e93577719bd b/examples/agent_server/target/debug/build/prettyplease-4e660e93577719bd/build_script_build-4e660e93577719bd new file mode 100755 index 0000000..0275582 Binary files /dev/null and b/examples/agent_server/target/debug/build/prettyplease-4e660e93577719bd/build_script_build-4e660e93577719bd differ diff --git a/examples/agent_server/target/debug/build/prettyplease-4e660e93577719bd/build_script_build-4e660e93577719bd.d b/examples/agent_server/target/debug/build/prettyplease-4e660e93577719bd/build_script_build-4e660e93577719bd.d new file mode 100644 index 0000000..a4979d9 --- /dev/null +++ b/examples/agent_server/target/debug/build/prettyplease-4e660e93577719bd/build_script_build-4e660e93577719bd.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/prettyplease-4e660e93577719bd/build_script_build-4e660e93577719bd.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/prettyplease-4e660e93577719bd/build_script_build-4e660e93577719bd: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/build.rs: diff --git a/examples/agent_server/target/debug/build/proc-macro2-1075039a6f7f989d/invoked.timestamp b/examples/agent_server/target/debug/build/proc-macro2-1075039a6f7f989d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/proc-macro2-1075039a6f7f989d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/proc-macro2-1075039a6f7f989d/output b/examples/agent_server/target/debug/build/proc-macro2-1075039a6f7f989d/output new file mode 100644 index 0000000..d3d235a --- /dev/null +++ b/examples/agent_server/target/debug/build/proc-macro2-1075039a6f7f989d/output @@ -0,0 +1,23 @@ +cargo:rustc-check-cfg=cfg(fuzzing) +cargo:rustc-check-cfg=cfg(no_is_available) +cargo:rustc-check-cfg=cfg(no_literal_byte_character) +cargo:rustc-check-cfg=cfg(no_literal_c_string) +cargo:rustc-check-cfg=cfg(no_source_text) +cargo:rustc-check-cfg=cfg(proc_macro_span) +cargo:rustc-check-cfg=cfg(proc_macro_span_file) +cargo:rustc-check-cfg=cfg(proc_macro_span_location) +cargo:rustc-check-cfg=cfg(procmacro2_backtrace) +cargo:rustc-check-cfg=cfg(procmacro2_build_probe) +cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) +cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) +cargo:rustc-check-cfg=cfg(randomize_layout) +cargo:rustc-check-cfg=cfg(span_locations) +cargo:rustc-check-cfg=cfg(super_unstable) +cargo:rustc-check-cfg=cfg(wrap_proc_macro) +cargo:rerun-if-changed=src/probe/proc_macro_span.rs +cargo:rustc-cfg=wrap_proc_macro +cargo:rerun-if-changed=src/probe/proc_macro_span_location.rs +cargo:rustc-cfg=proc_macro_span_location +cargo:rerun-if-changed=src/probe/proc_macro_span_file.rs +cargo:rustc-cfg=proc_macro_span_file +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP diff --git a/examples/agent_server/target/debug/build/proc-macro2-1075039a6f7f989d/root-output b/examples/agent_server/target/debug/build/proc-macro2-1075039a6f7f989d/root-output new file mode 100644 index 0000000..c64df97 --- /dev/null +++ b/examples/agent_server/target/debug/build/proc-macro2-1075039a6f7f989d/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/proc-macro2-1075039a6f7f989d/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/proc-macro2-1075039a6f7f989d/stderr b/examples/agent_server/target/debug/build/proc-macro2-1075039a6f7f989d/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/proc-macro2-7d0ed4e509752a35/build-script-build b/examples/agent_server/target/debug/build/proc-macro2-7d0ed4e509752a35/build-script-build new file mode 100755 index 0000000..688b93c Binary files /dev/null and b/examples/agent_server/target/debug/build/proc-macro2-7d0ed4e509752a35/build-script-build differ diff --git a/examples/agent_server/target/debug/build/proc-macro2-7d0ed4e509752a35/build_script_build-7d0ed4e509752a35 b/examples/agent_server/target/debug/build/proc-macro2-7d0ed4e509752a35/build_script_build-7d0ed4e509752a35 new file mode 100755 index 0000000..688b93c Binary files /dev/null and b/examples/agent_server/target/debug/build/proc-macro2-7d0ed4e509752a35/build_script_build-7d0ed4e509752a35 differ diff --git a/examples/agent_server/target/debug/build/proc-macro2-7d0ed4e509752a35/build_script_build-7d0ed4e509752a35.d b/examples/agent_server/target/debug/build/proc-macro2-7d0ed4e509752a35/build_script_build-7d0ed4e509752a35.d new file mode 100644 index 0000000..c2d0453 --- /dev/null +++ b/examples/agent_server/target/debug/build/proc-macro2-7d0ed4e509752a35/build_script_build-7d0ed4e509752a35.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/proc-macro2-7d0ed4e509752a35/build_script_build-7d0ed4e509752a35.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/proc-macro2-7d0ed4e509752a35/build_script_build-7d0ed4e509752a35: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/build.rs: diff --git a/examples/agent_server/target/debug/build/quote-6dff9724e4e81362/build-script-build b/examples/agent_server/target/debug/build/quote-6dff9724e4e81362/build-script-build new file mode 100755 index 0000000..1dbb8e6 Binary files /dev/null and b/examples/agent_server/target/debug/build/quote-6dff9724e4e81362/build-script-build differ diff --git a/examples/agent_server/target/debug/build/quote-6dff9724e4e81362/build_script_build-6dff9724e4e81362 b/examples/agent_server/target/debug/build/quote-6dff9724e4e81362/build_script_build-6dff9724e4e81362 new file mode 100755 index 0000000..1dbb8e6 Binary files /dev/null and b/examples/agent_server/target/debug/build/quote-6dff9724e4e81362/build_script_build-6dff9724e4e81362 differ diff --git a/examples/agent_server/target/debug/build/quote-6dff9724e4e81362/build_script_build-6dff9724e4e81362.d b/examples/agent_server/target/debug/build/quote-6dff9724e4e81362/build_script_build-6dff9724e4e81362.d new file mode 100644 index 0000000..e6cc584 --- /dev/null +++ b/examples/agent_server/target/debug/build/quote-6dff9724e4e81362/build_script_build-6dff9724e4e81362.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/quote-6dff9724e4e81362/build_script_build-6dff9724e4e81362.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/quote-6dff9724e4e81362/build_script_build-6dff9724e4e81362: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/build.rs: diff --git a/examples/agent_server/target/debug/build/quote-dadf5ecac53f25b4/invoked.timestamp b/examples/agent_server/target/debug/build/quote-dadf5ecac53f25b4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/quote-dadf5ecac53f25b4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/quote-dadf5ecac53f25b4/output b/examples/agent_server/target/debug/build/quote-dadf5ecac53f25b4/output new file mode 100644 index 0000000..6d81eca --- /dev/null +++ b/examples/agent_server/target/debug/build/quote-dadf5ecac53f25b4/output @@ -0,0 +1,2 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) diff --git a/examples/agent_server/target/debug/build/quote-dadf5ecac53f25b4/root-output b/examples/agent_server/target/debug/build/quote-dadf5ecac53f25b4/root-output new file mode 100644 index 0000000..ce385bd --- /dev/null +++ b/examples/agent_server/target/debug/build/quote-dadf5ecac53f25b4/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/quote-dadf5ecac53f25b4/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/quote-dadf5ecac53f25b4/stderr b/examples/agent_server/target/debug/build/quote-dadf5ecac53f25b4/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/invoked.timestamp b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/00c879ee3285a50d-montgomery.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/00c879ee3285a50d-montgomery.o new file mode 100644 index 0000000..3d86b62 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/00c879ee3285a50d-montgomery.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/00c879ee3285a50d-montgomery_inv.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/00c879ee3285a50d-montgomery_inv.o new file mode 100644 index 0000000..890a22a Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/00c879ee3285a50d-montgomery_inv.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/0bbbd18bda93c05b-aes_nohw.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/0bbbd18bda93c05b-aes_nohw.o new file mode 100644 index 0000000..e21e5a2 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/0bbbd18bda93c05b-aes_nohw.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/25ac62e5b3c53843-curve25519.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/25ac62e5b3c53843-curve25519.o new file mode 100644 index 0000000..18e5f99 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/25ac62e5b3c53843-curve25519.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/25ac62e5b3c53843-curve25519_64_adx.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/25ac62e5b3c53843-curve25519_64_adx.o new file mode 100644 index 0000000..0537dec Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/25ac62e5b3c53843-curve25519_64_adx.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a0330e891e733f4e-ecp_nistz.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a0330e891e733f4e-ecp_nistz.o new file mode 100644 index 0000000..dc9f545 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a0330e891e733f4e-ecp_nistz.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a0330e891e733f4e-gfp_p256.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a0330e891e733f4e-gfp_p256.o new file mode 100644 index 0000000..490c84a Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a0330e891e733f4e-gfp_p256.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a0330e891e733f4e-gfp_p384.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a0330e891e733f4e-gfp_p384.o new file mode 100644 index 0000000..d49fad9 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a0330e891e733f4e-gfp_p384.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a0330e891e733f4e-p256-nistz.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a0330e891e733f4e-p256-nistz.o new file mode 100644 index 0000000..3bb9c97 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a0330e891e733f4e-p256-nistz.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a0330e891e733f4e-p256.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a0330e891e733f4e-p256.o new file mode 100644 index 0000000..76d68b0 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a0330e891e733f4e-p256.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a4019cc0736b0423-constant_time_test.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a4019cc0736b0423-constant_time_test.o new file mode 100644 index 0000000..b84ceb7 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a4019cc0736b0423-constant_time_test.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a4019cc0736b0423-cpu_intel.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a4019cc0736b0423-cpu_intel.o new file mode 100644 index 0000000..ff15eea Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a4019cc0736b0423-cpu_intel.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a4019cc0736b0423-crypto.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a4019cc0736b0423-crypto.o new file mode 100644 index 0000000..68a9a16 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a4019cc0736b0423-crypto.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a4019cc0736b0423-mem.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a4019cc0736b0423-mem.o new file mode 100644 index 0000000..d184954 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/a4019cc0736b0423-mem.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/aaa1ba3e455ee2e1-limbs.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/aaa1ba3e455ee2e1-limbs.o new file mode 100644 index 0000000..e2df208 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/aaa1ba3e455ee2e1-limbs.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-aes-gcm-avx2-x86_64-elf.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-aes-gcm-avx2-x86_64-elf.o new file mode 100644 index 0000000..11acbcb Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-aes-gcm-avx2-x86_64-elf.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-aesni-gcm-x86_64-elf.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-aesni-gcm-x86_64-elf.o new file mode 100644 index 0000000..a6b5852 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-aesni-gcm-x86_64-elf.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-aesni-x86_64-elf.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-aesni-x86_64-elf.o new file mode 100644 index 0000000..2f46ffe Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-aesni-x86_64-elf.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-chacha-x86_64-elf.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-chacha-x86_64-elf.o new file mode 100644 index 0000000..e00e5ba Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-chacha-x86_64-elf.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-chacha20_poly1305_x86_64-elf.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-chacha20_poly1305_x86_64-elf.o new file mode 100644 index 0000000..f4bc2a8 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-chacha20_poly1305_x86_64-elf.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-ghash-x86_64-elf.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-ghash-x86_64-elf.o new file mode 100644 index 0000000..cc4af98 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-ghash-x86_64-elf.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-p256-x86_64-asm-elf.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-p256-x86_64-asm-elf.o new file mode 100644 index 0000000..8bf62c4 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-p256-x86_64-asm-elf.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-sha256-x86_64-elf.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-sha256-x86_64-elf.o new file mode 100644 index 0000000..20c5f6d Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-sha256-x86_64-elf.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-sha512-x86_64-elf.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-sha512-x86_64-elf.o new file mode 100644 index 0000000..7e4b9a2 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-sha512-x86_64-elf.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-vpaes-x86_64-elf.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-vpaes-x86_64-elf.o new file mode 100644 index 0000000..7515b73 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-vpaes-x86_64-elf.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-x86_64-mont-elf.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-x86_64-mont-elf.o new file mode 100644 index 0000000..4a5306e Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-x86_64-mont-elf.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-x86_64-mont5-elf.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-x86_64-mont5-elf.o new file mode 100644 index 0000000..3f40711 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/c322a0bcc369f531-x86_64-mont5-elf.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/d5a9841f3dc6e253-poly1305.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/d5a9841f3dc6e253-poly1305.o new file mode 100644 index 0000000..1ce7fce Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/d5a9841f3dc6e253-poly1305.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/e165cd818145c705-fiat_curve25519_adx_mul.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/e165cd818145c705-fiat_curve25519_adx_mul.o new file mode 100644 index 0000000..c4e8238 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/e165cd818145c705-fiat_curve25519_adx_mul.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/e165cd818145c705-fiat_curve25519_adx_square.o b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/e165cd818145c705-fiat_curve25519_adx_square.o new file mode 100644 index 0000000..fa72d84 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/e165cd818145c705-fiat_curve25519_adx_square.o differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/libring_core_0_17_14_.a b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/libring_core_0_17_14_.a new file mode 100644 index 0000000..5b418dd Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/libring_core_0_17_14_.a differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/libring_core_0_17_14__test.a b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/libring_core_0_17_14__test.a new file mode 100644 index 0000000..c1bda95 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out/libring_core_0_17_14__test.a differ diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/output b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/output new file mode 100644 index 0000000..ebc5016 --- /dev/null +++ b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/output @@ -0,0 +1,142 @@ +cargo:rerun-if-env-changed=CARGO_MANIFEST_DIR +cargo:rerun-if-env-changed=CARGO_PKG_NAME +cargo:rerun-if-env-changed=CARGO_PKG_VERSION_MAJOR +cargo:rerun-if-env-changed=CARGO_PKG_VERSION_MINOR +cargo:rerun-if-env-changed=CARGO_PKG_VERSION_PATCH +cargo:rerun-if-env-changed=CARGO_PKG_VERSION_PRE +cargo:rerun-if-env-changed=CARGO_MANIFEST_LINKS +cargo:rerun-if-env-changed=RING_PREGENERATE_ASM +cargo:rerun-if-env-changed=OUT_DIR +cargo:rerun-if-env-changed=CARGO_CFG_TARGET_ARCH +cargo:rerun-if-env-changed=CARGO_CFG_TARGET_OS +cargo:rerun-if-env-changed=CARGO_CFG_TARGET_ENV +cargo:rerun-if-env-changed=CARGO_CFG_TARGET_ENDIAN +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CC_ENABLE_DEBUG_OUTPUT +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rustc-link-lib=static=ring_core_0_17_14_ +cargo:rerun-if-env-changed=CC_x86_64-unknown-linux-gnu +CC_x86_64-unknown-linux-gnu = None +cargo:rerun-if-env-changed=CC_x86_64_unknown_linux_gnu +CC_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=HOST_CC +HOST_CC = None +cargo:rerun-if-env-changed=CC +CC = None +cargo:rerun-if-env-changed=CC_ENABLE_DEBUG_OUTPUT +cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS +CRATE_CC_NO_DEFAULTS = None +cargo:rerun-if-env-changed=CFLAGS +CFLAGS = None +cargo:rerun-if-env-changed=HOST_CFLAGS +HOST_CFLAGS = None +cargo:rerun-if-env-changed=CFLAGS_x86_64_unknown_linux_gnu +CFLAGS_x86_64_unknown_linux_gnu = None +cargo:rerun-if-env-changed=CFLAGS_x86_64-unknown-linux-gnu +CFLAGS_x86_64-unknown-linux-gnu = None +cargo:rustc-link-lib=static=ring_core_0_17_14__test +cargo:rustc-link-search=native=/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out +cargo:rerun-if-changed=crypto/poly1305/poly1305.c +cargo:rerun-if-changed=crypto/poly1305/poly1305_arm.c +cargo:rerun-if-changed=crypto/poly1305/poly1305_arm_asm.S +cargo:rerun-if-changed=crypto/cipher/asm/chacha20_poly1305_armv8.pl +cargo:rerun-if-changed=crypto/cipher/asm/chacha20_poly1305_x86_64.pl +cargo:rerun-if-changed=crypto/cpu_intel.c +cargo:rerun-if-changed=crypto/chacha/asm/chacha-x86_64.pl +cargo:rerun-if-changed=crypto/chacha/asm/chacha-armv4.pl +cargo:rerun-if-changed=crypto/chacha/asm/chacha-armv8.pl +cargo:rerun-if-changed=crypto/chacha/asm/chacha-x86.pl +cargo:rerun-if-changed=crypto/curve25519/curve25519.c +cargo:rerun-if-changed=crypto/curve25519/curve25519_tables.h +cargo:rerun-if-changed=crypto/curve25519/asm/x25519-asm-arm.S +cargo:rerun-if-changed=crypto/curve25519/curve25519_64_adx.c +cargo:rerun-if-changed=crypto/curve25519/internal.h +cargo:rerun-if-changed=crypto/crypto.c +cargo:rerun-if-changed=crypto/constant_time_test.c +cargo:rerun-if-changed=crypto/fipsmodule/aes/asm/ghash-neon-armv8.pl +cargo:rerun-if-changed=crypto/fipsmodule/aes/asm/aesv8-armx.pl +cargo:rerun-if-changed=crypto/fipsmodule/aes/asm/bsaes-armv7.pl +cargo:rerun-if-changed=crypto/fipsmodule/aes/asm/vpaes-x86.pl +cargo:rerun-if-changed=crypto/fipsmodule/aes/asm/aesni-x86.pl +cargo:rerun-if-changed=crypto/fipsmodule/aes/asm/vpaes-x86_64.pl +cargo:rerun-if-changed=crypto/fipsmodule/aes/asm/ghash-x86.pl +cargo:rerun-if-changed=crypto/fipsmodule/aes/asm/aesni-gcm-x86_64.pl +cargo:rerun-if-changed=crypto/fipsmodule/aes/asm/vpaes-armv8.pl +cargo:rerun-if-changed=crypto/fipsmodule/aes/asm/aesv8-gcm-armv8.pl +cargo:rerun-if-changed=crypto/fipsmodule/aes/asm/aes-gcm-avx2-x86_64.pl +cargo:rerun-if-changed=crypto/fipsmodule/aes/asm/aesni-x86_64.pl +cargo:rerun-if-changed=crypto/fipsmodule/aes/asm/ghash-armv4.pl +cargo:rerun-if-changed=crypto/fipsmodule/aes/asm/vpaes-armv7.pl +cargo:rerun-if-changed=crypto/fipsmodule/aes/asm/ghash-x86_64.pl +cargo:rerun-if-changed=crypto/fipsmodule/aes/asm/ghashv8-armx.pl +cargo:rerun-if-changed=crypto/fipsmodule/aes/aes_nohw.c +cargo:rerun-if-changed=crypto/fipsmodule/bn/montgomery_inv.c +cargo:rerun-if-changed=crypto/fipsmodule/bn/asm/x86_64-mont5.pl +cargo:rerun-if-changed=crypto/fipsmodule/bn/asm/armv8-mont.pl +cargo:rerun-if-changed=crypto/fipsmodule/bn/asm/armv4-mont.pl +cargo:rerun-if-changed=crypto/fipsmodule/bn/asm/x86-mont.pl +cargo:rerun-if-changed=crypto/fipsmodule/bn/asm/x86_64-mont.pl +cargo:rerun-if-changed=crypto/fipsmodule/bn/montgomery.c +cargo:rerun-if-changed=crypto/fipsmodule/bn/internal.h +cargo:rerun-if-changed=crypto/fipsmodule/ec/ecp_nistz384.inl +cargo:rerun-if-changed=crypto/fipsmodule/ec/p256-nistz-table.h +cargo:rerun-if-changed=crypto/fipsmodule/ec/util.h +cargo:rerun-if-changed=crypto/fipsmodule/ec/p256-nistz.c +cargo:rerun-if-changed=crypto/fipsmodule/ec/p256_shared.h +cargo:rerun-if-changed=crypto/fipsmodule/ec/ecp_nistz.c +cargo:rerun-if-changed=crypto/fipsmodule/ec/gfp_p256.c +cargo:rerun-if-changed=crypto/fipsmodule/ec/p256_table.h +cargo:rerun-if-changed=crypto/fipsmodule/ec/p256-nistz.h +cargo:rerun-if-changed=crypto/fipsmodule/ec/asm/p256-x86_64-asm.pl +cargo:rerun-if-changed=crypto/fipsmodule/ec/asm/p256-armv8-asm.pl +cargo:rerun-if-changed=crypto/fipsmodule/ec/ecp_nistz384.h +cargo:rerun-if-changed=crypto/fipsmodule/ec/gfp_p384.c +cargo:rerun-if-changed=crypto/fipsmodule/ec/p256.c +cargo:rerun-if-changed=crypto/fipsmodule/ec/ecp_nistz.h +cargo:rerun-if-changed=crypto/fipsmodule/sha/asm/sha256-armv4.pl +cargo:rerun-if-changed=crypto/fipsmodule/sha/asm/sha512-x86_64.pl +cargo:rerun-if-changed=crypto/fipsmodule/sha/asm/sha512-armv8.pl +cargo:rerun-if-changed=crypto/fipsmodule/sha/asm/sha512-armv4.pl +cargo:rerun-if-changed=crypto/perlasm/x86asm.pl +cargo:rerun-if-changed=crypto/perlasm/arm-xlate.pl +cargo:rerun-if-changed=crypto/perlasm/x86nasm.pl +cargo:rerun-if-changed=crypto/perlasm/x86_64-xlate.pl +cargo:rerun-if-changed=crypto/perlasm/x86gas.pl +cargo:rerun-if-changed=crypto/mem.c +cargo:rerun-if-changed=crypto/limbs/limbs.h +cargo:rerun-if-changed=crypto/limbs/limbs.c +cargo:rerun-if-changed=crypto/limbs/limbs.inl +cargo:rerun-if-changed=crypto/internal.h +cargo:rerun-if-changed=include/ring-core/base.h +cargo:rerun-if-changed=include/ring-core/type_check.h +cargo:rerun-if-changed=include/ring-core/target.h +cargo:rerun-if-changed=include/ring-core/mem.h +cargo:rerun-if-changed=include/ring-core/asm_base.h +cargo:rerun-if-changed=include/ring-core/aes.h +cargo:rerun-if-changed=include/ring-core/check.h +cargo:rerun-if-changed=third_party/fiat/curve25519_64_adx.h +cargo:rerun-if-changed=third_party/fiat/curve25519_64.h +cargo:rerun-if-changed=third_party/fiat/curve25519_32.h +cargo:rerun-if-changed=third_party/fiat/p256_64.h +cargo:rerun-if-changed=third_party/fiat/p256_64_msvc.h +cargo:rerun-if-changed=third_party/fiat/LICENSE +cargo:rerun-if-changed=third_party/fiat/curve25519_64_msvc.h +cargo:rerun-if-changed=third_party/fiat/asm/fiat_curve25519_adx_mul.S +cargo:rerun-if-changed=third_party/fiat/asm/fiat_curve25519_adx_square.S +cargo:rerun-if-changed=third_party/fiat/p256_32.h diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/root-output b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/root-output new file mode 100644 index 0000000..6c22e46 --- /dev/null +++ b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/stderr b/examples/agent_server/target/debug/build/ring-09e0913fe4ae7a97/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/ring-62399fc5a14562d8/build-script-build b/examples/agent_server/target/debug/build/ring-62399fc5a14562d8/build-script-build new file mode 100755 index 0000000..85c6dd7 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-62399fc5a14562d8/build-script-build differ diff --git a/examples/agent_server/target/debug/build/ring-62399fc5a14562d8/build_script_build-62399fc5a14562d8 b/examples/agent_server/target/debug/build/ring-62399fc5a14562d8/build_script_build-62399fc5a14562d8 new file mode 100755 index 0000000..85c6dd7 Binary files /dev/null and b/examples/agent_server/target/debug/build/ring-62399fc5a14562d8/build_script_build-62399fc5a14562d8 differ diff --git a/examples/agent_server/target/debug/build/ring-62399fc5a14562d8/build_script_build-62399fc5a14562d8.d b/examples/agent_server/target/debug/build/ring-62399fc5a14562d8/build_script_build-62399fc5a14562d8.d new file mode 100644 index 0000000..ca0bc70 --- /dev/null +++ b/examples/agent_server/target/debug/build/ring-62399fc5a14562d8/build_script_build-62399fc5a14562d8.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/ring-62399fc5a14562d8/build_script_build-62399fc5a14562d8.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/ring-62399fc5a14562d8/build_script_build-62399fc5a14562d8: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/build.rs: diff --git a/examples/agent_server/target/debug/build/rustix-0b94ba85310e386f/invoked.timestamp b/examples/agent_server/target/debug/build/rustix-0b94ba85310e386f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/rustix-0b94ba85310e386f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/rustix-0b94ba85310e386f/out/rustix_test_can_compile b/examples/agent_server/target/debug/build/rustix-0b94ba85310e386f/out/rustix_test_can_compile new file mode 100644 index 0000000..8aecd8c Binary files /dev/null and b/examples/agent_server/target/debug/build/rustix-0b94ba85310e386f/out/rustix_test_can_compile differ diff --git a/examples/agent_server/target/debug/build/rustix-0b94ba85310e386f/output b/examples/agent_server/target/debug/build/rustix-0b94ba85310e386f/output new file mode 100644 index 0000000..e908152 --- /dev/null +++ b/examples/agent_server/target/debug/build/rustix-0b94ba85310e386f/output @@ -0,0 +1,13 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-cfg=static_assertions +cargo:rustc-cfg=lower_upper_exp_for_non_zero +cargo:rustc-cfg=rustc_diagnostics +cargo:rustc-cfg=linux_raw_dep +cargo:rustc-cfg=linux_raw +cargo:rustc-cfg=linux_like +cargo:rustc-cfg=linux_kernel +cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM +cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_LIBC +cargo:rerun-if-env-changed=CARGO_FEATURE_USE_LIBC +cargo:rerun-if-env-changed=CARGO_FEATURE_RUSTC_DEP_OF_STD +cargo:rerun-if-env-changed=CARGO_CFG_MIRI diff --git a/examples/agent_server/target/debug/build/rustix-0b94ba85310e386f/root-output b/examples/agent_server/target/debug/build/rustix-0b94ba85310e386f/root-output new file mode 100644 index 0000000..02e7513 --- /dev/null +++ b/examples/agent_server/target/debug/build/rustix-0b94ba85310e386f/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/rustix-0b94ba85310e386f/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/rustix-0b94ba85310e386f/stderr b/examples/agent_server/target/debug/build/rustix-0b94ba85310e386f/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/rustix-12abc008e3af5a98/build-script-build b/examples/agent_server/target/debug/build/rustix-12abc008e3af5a98/build-script-build new file mode 100755 index 0000000..2011637 Binary files /dev/null and b/examples/agent_server/target/debug/build/rustix-12abc008e3af5a98/build-script-build differ diff --git a/examples/agent_server/target/debug/build/rustix-12abc008e3af5a98/build_script_build-12abc008e3af5a98 b/examples/agent_server/target/debug/build/rustix-12abc008e3af5a98/build_script_build-12abc008e3af5a98 new file mode 100755 index 0000000..2011637 Binary files /dev/null and b/examples/agent_server/target/debug/build/rustix-12abc008e3af5a98/build_script_build-12abc008e3af5a98 differ diff --git a/examples/agent_server/target/debug/build/rustix-12abc008e3af5a98/build_script_build-12abc008e3af5a98.d b/examples/agent_server/target/debug/build/rustix-12abc008e3af5a98/build_script_build-12abc008e3af5a98.d new file mode 100644 index 0000000..3b9ae62 --- /dev/null +++ b/examples/agent_server/target/debug/build/rustix-12abc008e3af5a98/build_script_build-12abc008e3af5a98.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/rustix-12abc008e3af5a98/build_script_build-12abc008e3af5a98.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/rustix-12abc008e3af5a98/build_script_build-12abc008e3af5a98: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/build.rs: diff --git a/examples/agent_server/target/debug/build/rustls-3666a0c897a5836f/invoked.timestamp b/examples/agent_server/target/debug/build/rustls-3666a0c897a5836f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/rustls-3666a0c897a5836f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/rustls-3666a0c897a5836f/output b/examples/agent_server/target/debug/build/rustls-3666a0c897a5836f/output new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/rustls-3666a0c897a5836f/root-output b/examples/agent_server/target/debug/build/rustls-3666a0c897a5836f/root-output new file mode 100644 index 0000000..14ac9dc --- /dev/null +++ b/examples/agent_server/target/debug/build/rustls-3666a0c897a5836f/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/rustls-3666a0c897a5836f/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/rustls-3666a0c897a5836f/stderr b/examples/agent_server/target/debug/build/rustls-3666a0c897a5836f/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/rustls-fb47f5810de6553f/build-script-build b/examples/agent_server/target/debug/build/rustls-fb47f5810de6553f/build-script-build new file mode 100755 index 0000000..8f61787 Binary files /dev/null and b/examples/agent_server/target/debug/build/rustls-fb47f5810de6553f/build-script-build differ diff --git a/examples/agent_server/target/debug/build/rustls-fb47f5810de6553f/build_script_build-fb47f5810de6553f b/examples/agent_server/target/debug/build/rustls-fb47f5810de6553f/build_script_build-fb47f5810de6553f new file mode 100755 index 0000000..8f61787 Binary files /dev/null and b/examples/agent_server/target/debug/build/rustls-fb47f5810de6553f/build_script_build-fb47f5810de6553f differ diff --git a/examples/agent_server/target/debug/build/rustls-fb47f5810de6553f/build_script_build-fb47f5810de6553f.d b/examples/agent_server/target/debug/build/rustls-fb47f5810de6553f/build_script_build-fb47f5810de6553f.d new file mode 100644 index 0000000..1f122bd --- /dev/null +++ b/examples/agent_server/target/debug/build/rustls-fb47f5810de6553f/build_script_build-fb47f5810de6553f.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/rustls-fb47f5810de6553f/build_script_build-fb47f5810de6553f.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/rustls-fb47f5810de6553f/build_script_build-fb47f5810de6553f: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/build.rs: diff --git a/examples/agent_server/target/debug/build/serde-047fb28ec31c7b7d/build-script-build b/examples/agent_server/target/debug/build/serde-047fb28ec31c7b7d/build-script-build new file mode 100755 index 0000000..c0cf451 Binary files /dev/null and b/examples/agent_server/target/debug/build/serde-047fb28ec31c7b7d/build-script-build differ diff --git a/examples/agent_server/target/debug/build/serde-047fb28ec31c7b7d/build_script_build-047fb28ec31c7b7d b/examples/agent_server/target/debug/build/serde-047fb28ec31c7b7d/build_script_build-047fb28ec31c7b7d new file mode 100755 index 0000000..c0cf451 Binary files /dev/null and b/examples/agent_server/target/debug/build/serde-047fb28ec31c7b7d/build_script_build-047fb28ec31c7b7d differ diff --git a/examples/agent_server/target/debug/build/serde-047fb28ec31c7b7d/build_script_build-047fb28ec31c7b7d.d b/examples/agent_server/target/debug/build/serde-047fb28ec31c7b7d/build_script_build-047fb28ec31c7b7d.d new file mode 100644 index 0000000..d1a2813 --- /dev/null +++ b/examples/agent_server/target/debug/build/serde-047fb28ec31c7b7d/build_script_build-047fb28ec31c7b7d.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/serde-047fb28ec31c7b7d/build_script_build-047fb28ec31c7b7d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/serde-047fb28ec31c7b7d/build_script_build-047fb28ec31c7b7d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/build.rs: diff --git a/examples/agent_server/target/debug/build/serde-46367230ef002103/invoked.timestamp b/examples/agent_server/target/debug/build/serde-46367230ef002103/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/serde-46367230ef002103/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/serde-46367230ef002103/out/private.rs b/examples/agent_server/target/debug/build/serde-46367230ef002103/out/private.rs new file mode 100644 index 0000000..9200846 --- /dev/null +++ b/examples/agent_server/target/debug/build/serde-46367230ef002103/out/private.rs @@ -0,0 +1,6 @@ +#[doc(hidden)] +pub mod __private229 { + #[doc(hidden)] + pub use crate::private::*; +} +use serde_core::__private229 as serde_core_private; diff --git a/examples/agent_server/target/debug/build/serde-46367230ef002103/output b/examples/agent_server/target/debug/build/serde-46367230ef002103/output new file mode 100644 index 0000000..854cb53 --- /dev/null +++ b/examples/agent_server/target/debug/build/serde-46367230ef002103/output @@ -0,0 +1,13 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-cfg=if_docsrs_then_no_serde_core +cargo:rustc-check-cfg=cfg(feature, values("result")) +cargo:rustc-check-cfg=cfg(if_docsrs_then_no_serde_core) +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/examples/agent_server/target/debug/build/serde-46367230ef002103/root-output b/examples/agent_server/target/debug/build/serde-46367230ef002103/root-output new file mode 100644 index 0000000..ea6bad2 --- /dev/null +++ b/examples/agent_server/target/debug/build/serde-46367230ef002103/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/serde-46367230ef002103/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/serde-46367230ef002103/stderr b/examples/agent_server/target/debug/build/serde-46367230ef002103/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/invoked.timestamp b/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/out/private.rs b/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/out/private.rs new file mode 100644 index 0000000..2da7a58 --- /dev/null +++ b/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/out/private.rs @@ -0,0 +1,5 @@ +#[doc(hidden)] +pub mod __private229 { + #[doc(hidden)] + pub use crate::private::*; +} diff --git a/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/output b/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/output new file mode 100644 index 0000000..98a6653 --- /dev/null +++ b/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/output @@ -0,0 +1,11 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(if_docsrs_then_no_serde_core) +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/root-output b/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/root-output new file mode 100644 index 0000000..03764b9 --- /dev/null +++ b/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/stderr b/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/serde_core-e613c711ddfe8493/build-script-build b/examples/agent_server/target/debug/build/serde_core-e613c711ddfe8493/build-script-build new file mode 100755 index 0000000..6b438d0 Binary files /dev/null and b/examples/agent_server/target/debug/build/serde_core-e613c711ddfe8493/build-script-build differ diff --git a/examples/agent_server/target/debug/build/serde_core-e613c711ddfe8493/build_script_build-e613c711ddfe8493 b/examples/agent_server/target/debug/build/serde_core-e613c711ddfe8493/build_script_build-e613c711ddfe8493 new file mode 100755 index 0000000..6b438d0 Binary files /dev/null and b/examples/agent_server/target/debug/build/serde_core-e613c711ddfe8493/build_script_build-e613c711ddfe8493 differ diff --git a/examples/agent_server/target/debug/build/serde_core-e613c711ddfe8493/build_script_build-e613c711ddfe8493.d b/examples/agent_server/target/debug/build/serde_core-e613c711ddfe8493/build_script_build-e613c711ddfe8493.d new file mode 100644 index 0000000..c6188ec --- /dev/null +++ b/examples/agent_server/target/debug/build/serde_core-e613c711ddfe8493/build_script_build-e613c711ddfe8493.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/serde_core-e613c711ddfe8493/build_script_build-e613c711ddfe8493.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/serde_core-e613c711ddfe8493/build_script_build-e613c711ddfe8493: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/build.rs: diff --git a/examples/agent_server/target/debug/build/serde_json-b49918a39c7fb8c8/invoked.timestamp b/examples/agent_server/target/debug/build/serde_json-b49918a39c7fb8c8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/serde_json-b49918a39c7fb8c8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/serde_json-b49918a39c7fb8c8/output b/examples/agent_server/target/debug/build/serde_json-b49918a39c7fb8c8/output new file mode 100644 index 0000000..3201077 --- /dev/null +++ b/examples/agent_server/target/debug/build/serde_json-b49918a39c7fb8c8/output @@ -0,0 +1,3 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(fast_arithmetic, values("32", "64")) +cargo:rustc-cfg=fast_arithmetic="64" diff --git a/examples/agent_server/target/debug/build/serde_json-b49918a39c7fb8c8/root-output b/examples/agent_server/target/debug/build/serde_json-b49918a39c7fb8c8/root-output new file mode 100644 index 0000000..d879b6d --- /dev/null +++ b/examples/agent_server/target/debug/build/serde_json-b49918a39c7fb8c8/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/serde_json-b49918a39c7fb8c8/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/serde_json-b49918a39c7fb8c8/stderr b/examples/agent_server/target/debug/build/serde_json-b49918a39c7fb8c8/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/serde_json-e8bad665682f3bb4/build-script-build b/examples/agent_server/target/debug/build/serde_json-e8bad665682f3bb4/build-script-build new file mode 100755 index 0000000..7bcaf76 Binary files /dev/null and b/examples/agent_server/target/debug/build/serde_json-e8bad665682f3bb4/build-script-build differ diff --git a/examples/agent_server/target/debug/build/serde_json-e8bad665682f3bb4/build_script_build-e8bad665682f3bb4 b/examples/agent_server/target/debug/build/serde_json-e8bad665682f3bb4/build_script_build-e8bad665682f3bb4 new file mode 100755 index 0000000..7bcaf76 Binary files /dev/null and b/examples/agent_server/target/debug/build/serde_json-e8bad665682f3bb4/build_script_build-e8bad665682f3bb4 differ diff --git a/examples/agent_server/target/debug/build/serde_json-e8bad665682f3bb4/build_script_build-e8bad665682f3bb4.d b/examples/agent_server/target/debug/build/serde_json-e8bad665682f3bb4/build_script_build-e8bad665682f3bb4.d new file mode 100644 index 0000000..f5bc952 --- /dev/null +++ b/examples/agent_server/target/debug/build/serde_json-e8bad665682f3bb4/build_script_build-e8bad665682f3bb4.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/serde_json-e8bad665682f3bb4/build_script_build-e8bad665682f3bb4.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/serde_json-e8bad665682f3bb4/build_script_build-e8bad665682f3bb4: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/build.rs: diff --git a/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/invoked.timestamp b/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/out/private.rs b/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/out/private.rs new file mode 100644 index 0000000..3206fe0 --- /dev/null +++ b/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/out/private.rs @@ -0,0 +1,5 @@ +#[doc(hidden)] +pub mod __private19 { + #[doc(hidden)] + pub use crate::private::*; +} diff --git a/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/output b/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/output new file mode 100644 index 0000000..f62a8d1 --- /dev/null +++ b/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/output @@ -0,0 +1,5 @@ +cargo:rerun-if-changed=build/probe.rs +cargo:rustc-check-cfg=cfg(error_generic_member_access) +cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) +cargo:rustc-check-cfg=cfg(thiserror_no_backtrace_type) +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP diff --git a/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/root-output b/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/root-output new file mode 100644 index 0000000..5dbac09 --- /dev/null +++ b/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/stderr b/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/thiserror-2c86f3aea4f39327/invoked.timestamp b/examples/agent_server/target/debug/build/thiserror-2c86f3aea4f39327/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/thiserror-2c86f3aea4f39327/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/thiserror-2c86f3aea4f39327/output b/examples/agent_server/target/debug/build/thiserror-2c86f3aea4f39327/output new file mode 100644 index 0000000..3b23df4 --- /dev/null +++ b/examples/agent_server/target/debug/build/thiserror-2c86f3aea4f39327/output @@ -0,0 +1,4 @@ +cargo:rerun-if-changed=build/probe.rs +cargo:rustc-check-cfg=cfg(error_generic_member_access) +cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP diff --git a/examples/agent_server/target/debug/build/thiserror-2c86f3aea4f39327/root-output b/examples/agent_server/target/debug/build/thiserror-2c86f3aea4f39327/root-output new file mode 100644 index 0000000..78b9c0c --- /dev/null +++ b/examples/agent_server/target/debug/build/thiserror-2c86f3aea4f39327/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/thiserror-2c86f3aea4f39327/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/thiserror-2c86f3aea4f39327/stderr b/examples/agent_server/target/debug/build/thiserror-2c86f3aea4f39327/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/thiserror-529e636cb807cb66/build-script-build b/examples/agent_server/target/debug/build/thiserror-529e636cb807cb66/build-script-build new file mode 100755 index 0000000..98cae80 Binary files /dev/null and b/examples/agent_server/target/debug/build/thiserror-529e636cb807cb66/build-script-build differ diff --git a/examples/agent_server/target/debug/build/thiserror-529e636cb807cb66/build_script_build-529e636cb807cb66 b/examples/agent_server/target/debug/build/thiserror-529e636cb807cb66/build_script_build-529e636cb807cb66 new file mode 100755 index 0000000..98cae80 Binary files /dev/null and b/examples/agent_server/target/debug/build/thiserror-529e636cb807cb66/build_script_build-529e636cb807cb66 differ diff --git a/examples/agent_server/target/debug/build/thiserror-529e636cb807cb66/build_script_build-529e636cb807cb66.d b/examples/agent_server/target/debug/build/thiserror-529e636cb807cb66/build_script_build-529e636cb807cb66.d new file mode 100644 index 0000000..8043101 --- /dev/null +++ b/examples/agent_server/target/debug/build/thiserror-529e636cb807cb66/build_script_build-529e636cb807cb66.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/thiserror-529e636cb807cb66/build_script_build-529e636cb807cb66.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/thiserror-529e636cb807cb66/build_script_build-529e636cb807cb66: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/build.rs: diff --git a/examples/agent_server/target/debug/build/thiserror-c38a878e108bbc23/build-script-build b/examples/agent_server/target/debug/build/thiserror-c38a878e108bbc23/build-script-build new file mode 100755 index 0000000..382ac86 Binary files /dev/null and b/examples/agent_server/target/debug/build/thiserror-c38a878e108bbc23/build-script-build differ diff --git a/examples/agent_server/target/debug/build/thiserror-c38a878e108bbc23/build_script_build-c38a878e108bbc23 b/examples/agent_server/target/debug/build/thiserror-c38a878e108bbc23/build_script_build-c38a878e108bbc23 new file mode 100755 index 0000000..382ac86 Binary files /dev/null and b/examples/agent_server/target/debug/build/thiserror-c38a878e108bbc23/build_script_build-c38a878e108bbc23 differ diff --git a/examples/agent_server/target/debug/build/thiserror-c38a878e108bbc23/build_script_build-c38a878e108bbc23.d b/examples/agent_server/target/debug/build/thiserror-c38a878e108bbc23/build_script_build-c38a878e108bbc23.d new file mode 100644 index 0000000..4193e5f --- /dev/null +++ b/examples/agent_server/target/debug/build/thiserror-c38a878e108bbc23/build_script_build-c38a878e108bbc23.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/thiserror-c38a878e108bbc23/build_script_build-c38a878e108bbc23.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/thiserror-c38a878e108bbc23/build_script_build-c38a878e108bbc23: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs: diff --git a/examples/agent_server/target/debug/build/zerocopy-1eb3aee294bb57c5/build-script-build b/examples/agent_server/target/debug/build/zerocopy-1eb3aee294bb57c5/build-script-build new file mode 100755 index 0000000..a99a405 Binary files /dev/null and b/examples/agent_server/target/debug/build/zerocopy-1eb3aee294bb57c5/build-script-build differ diff --git a/examples/agent_server/target/debug/build/zerocopy-1eb3aee294bb57c5/build_script_build-1eb3aee294bb57c5 b/examples/agent_server/target/debug/build/zerocopy-1eb3aee294bb57c5/build_script_build-1eb3aee294bb57c5 new file mode 100755 index 0000000..a99a405 Binary files /dev/null and b/examples/agent_server/target/debug/build/zerocopy-1eb3aee294bb57c5/build_script_build-1eb3aee294bb57c5 differ diff --git a/examples/agent_server/target/debug/build/zerocopy-1eb3aee294bb57c5/build_script_build-1eb3aee294bb57c5.d b/examples/agent_server/target/debug/build/zerocopy-1eb3aee294bb57c5/build_script_build-1eb3aee294bb57c5.d new file mode 100644 index 0000000..8678214 --- /dev/null +++ b/examples/agent_server/target/debug/build/zerocopy-1eb3aee294bb57c5/build_script_build-1eb3aee294bb57c5.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/zerocopy-1eb3aee294bb57c5/build_script_build-1eb3aee294bb57c5.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/zerocopy-1eb3aee294bb57c5/build_script_build-1eb3aee294bb57c5: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/build.rs: diff --git a/examples/agent_server/target/debug/build/zerocopy-a4ac3e25d0877bbc/invoked.timestamp b/examples/agent_server/target/debug/build/zerocopy-a4ac3e25d0877bbc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/zerocopy-a4ac3e25d0877bbc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/zerocopy-a4ac3e25d0877bbc/output b/examples/agent_server/target/debug/build/zerocopy-a4ac3e25d0877bbc/output new file mode 100644 index 0000000..8e6a35f --- /dev/null +++ b/examples/agent_server/target/debug/build/zerocopy-a4ac3e25d0877bbc/output @@ -0,0 +1,27 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-changed=Cargo.toml +cargo:rustc-check-cfg=cfg(no_zerocopy_simd_x86_avx12_1_89_0) +cargo:rustc-check-cfg=cfg(rust, values("1.89.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_core_error_1_81_0) +cargo:rustc-check-cfg=cfg(rust, values("1.81.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_diagnostic_on_unimplemented_1_78_0) +cargo:rustc-check-cfg=cfg(rust, values("1.78.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_generic_bounds_in_const_fn_1_61_0) +cargo:rustc-check-cfg=cfg(rust, values("1.61.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_target_has_atomics_1_60_0) +cargo:rustc-check-cfg=cfg(rust, values("1.60.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_aarch64_simd_1_59_0) +cargo:rustc-check-cfg=cfg(rust, values("1.59.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_aarch64_simd_be_1_87_0) +cargo:rustc-check-cfg=cfg(rust, values("1.87.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_panic_in_const_and_vec_try_reserve_1_57_0) +cargo:rustc-check-cfg=cfg(rust, values("1.57.0")) +cargo:rustc-check-cfg=cfg(doc_cfg) +cargo:rustc-check-cfg=cfg(kani) +cargo:rustc-check-cfg=cfg(__ZEROCOPY_INTERNAL_USE_ONLY_NIGHTLY_FEATURES_IN_TESTS) +cargo:rustc-check-cfg=cfg(__ZEROCOPY_INTERNAL_USE_ONLY_DEV_MODE) +cargo:rustc-check-cfg=cfg(coverage_nightly) +cargo:rustc-check-cfg=cfg(zerocopy_inline_always) +cargo:rustc-check-cfg=cfg(zerocopy_unstable_ptr) +cargo:rustc-check-cfg=cfg(zerocopy_unstable_linux) +cargo:rustc-check-cfg=cfg(no_fp_fmt_parse) diff --git a/examples/agent_server/target/debug/build/zerocopy-a4ac3e25d0877bbc/root-output b/examples/agent_server/target/debug/build/zerocopy-a4ac3e25d0877bbc/root-output new file mode 100644 index 0000000..c58c2da --- /dev/null +++ b/examples/agent_server/target/debug/build/zerocopy-a4ac3e25d0877bbc/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/zerocopy-a4ac3e25d0877bbc/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/zerocopy-a4ac3e25d0877bbc/stderr b/examples/agent_server/target/debug/build/zerocopy-a4ac3e25d0877bbc/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/zmij-1d41e468114f7fa5/invoked.timestamp b/examples/agent_server/target/debug/build/zmij-1d41e468114f7fa5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/agent_server/target/debug/build/zmij-1d41e468114f7fa5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/zmij-1d41e468114f7fa5/output b/examples/agent_server/target/debug/build/zmij-1d41e468114f7fa5/output new file mode 100644 index 0000000..726e627 --- /dev/null +++ b/examples/agent_server/target/debug/build/zmij-1d41e468114f7fa5/output @@ -0,0 +1,4 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(exhaustive) +cargo:rustc-check-cfg=cfg(opt_level, values("s")) +cargo:rustc-check-cfg=cfg(zmij_no_select_unpredictable) diff --git a/examples/agent_server/target/debug/build/zmij-1d41e468114f7fa5/root-output b/examples/agent_server/target/debug/build/zmij-1d41e468114f7fa5/root-output new file mode 100644 index 0000000..44bc9fa --- /dev/null +++ b/examples/agent_server/target/debug/build/zmij-1d41e468114f7fa5/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/zmij-1d41e468114f7fa5/out \ No newline at end of file diff --git a/examples/agent_server/target/debug/build/zmij-1d41e468114f7fa5/stderr b/examples/agent_server/target/debug/build/zmij-1d41e468114f7fa5/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/build/zmij-37c7a7b83a60607f/build-script-build b/examples/agent_server/target/debug/build/zmij-37c7a7b83a60607f/build-script-build new file mode 100755 index 0000000..d99dd1a Binary files /dev/null and b/examples/agent_server/target/debug/build/zmij-37c7a7b83a60607f/build-script-build differ diff --git a/examples/agent_server/target/debug/build/zmij-37c7a7b83a60607f/build_script_build-37c7a7b83a60607f b/examples/agent_server/target/debug/build/zmij-37c7a7b83a60607f/build_script_build-37c7a7b83a60607f new file mode 100755 index 0000000..d99dd1a Binary files /dev/null and b/examples/agent_server/target/debug/build/zmij-37c7a7b83a60607f/build_script_build-37c7a7b83a60607f differ diff --git a/examples/agent_server/target/debug/build/zmij-37c7a7b83a60607f/build_script_build-37c7a7b83a60607f.d b/examples/agent_server/target/debug/build/zmij-37c7a7b83a60607f/build_script_build-37c7a7b83a60607f.d new file mode 100644 index 0000000..e2e92b8 --- /dev/null +++ b/examples/agent_server/target/debug/build/zmij-37c7a7b83a60607f/build_script_build-37c7a7b83a60607f.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/zmij-37c7a7b83a60607f/build_script_build-37c7a7b83a60607f.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/build.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/zmij-37c7a7b83a60607f/build_script_build-37c7a7b83a60607f: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/build.rs: diff --git a/examples/agent_server/target/debug/deps/agent_server-0d89f2c75aedc301.d b/examples/agent_server/target/debug/deps/agent_server-0d89f2c75aedc301.d new file mode 100644 index 0000000..00eafc1 --- /dev/null +++ b/examples/agent_server/target/debug/deps/agent_server-0d89f2c75aedc301.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/agent_server-0d89f2c75aedc301.d: src/main.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libagent_server-0d89f2c75aedc301.rmeta: src/main.rs + +src/main.rs: diff --git a/examples/agent_server/target/debug/deps/agent_server-76df8b9fe4a73c91.d b/examples/agent_server/target/debug/deps/agent_server-76df8b9fe4a73c91.d new file mode 100644 index 0000000..f13335a --- /dev/null +++ b/examples/agent_server/target/debug/deps/agent_server-76df8b9fe4a73c91.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/agent_server-76df8b9fe4a73c91.d: src/main.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libagent_server-76df8b9fe4a73c91.rmeta: src/main.rs + +src/main.rs: diff --git a/examples/agent_server/target/debug/deps/antigravity_sdk_rust-27f369df03bf6ad3.d b/examples/agent_server/target/debug/deps/antigravity_sdk_rust-27f369df03bf6ad3.d new file mode 100644 index 0000000..d24ef95 --- /dev/null +++ b/examples/agent_server/target/debug/deps/antigravity_sdk_rust-27f369df03bf6ad3.d @@ -0,0 +1,36 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/antigravity_sdk_rust-27f369df03bf6ad3.d: /home/user/antigravity-sdk-rust/src/lib.rs /home/user/antigravity-sdk-rust/src/agent.rs /home/user/antigravity-sdk-rust/src/coerce.rs /home/user/antigravity-sdk-rust/src/connection.rs /home/user/antigravity-sdk-rust/src/context.rs /home/user/antigravity-sdk-rust/src/conversation.rs /home/user/antigravity-sdk-rust/src/error.rs /home/user/antigravity-sdk-rust/src/harness_config.rs /home/user/antigravity-sdk-rust/src/hook_dispatch.rs /home/user/antigravity-sdk-rust/src/hooks.rs /home/user/antigravity-sdk-rust/src/local.rs /home/user/antigravity-sdk-rust/src/path_safety.rs /home/user/antigravity-sdk-rust/src/policy.rs /home/user/antigravity-sdk-rust/src/state.rs /home/user/antigravity-sdk-rust/src/step_extract.rs /home/user/antigravity-sdk-rust/src/tool_context.rs /home/user/antigravity-sdk-rust/src/tool_output.rs /home/user/antigravity-sdk-rust/src/tool_wire.rs /home/user/antigravity-sdk-rust/src/tools.rs /home/user/antigravity-sdk-rust/src/trigger_helpers.rs /home/user/antigravity-sdk-rust/src/triggers.rs /home/user/antigravity-sdk-rust/src/types.rs /home/user/antigravity-sdk-rust/src/wire_path.rs /home/user/antigravity-sdk-rust/src/workspace.rs /home/user/antigravity-sdk-rust/src/interactive.rs /home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/out/antigravity.localharness.rs /home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/out/antigravity.localharness.serde.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libantigravity_sdk_rust-27f369df03bf6ad3.rmeta: /home/user/antigravity-sdk-rust/src/lib.rs /home/user/antigravity-sdk-rust/src/agent.rs /home/user/antigravity-sdk-rust/src/coerce.rs /home/user/antigravity-sdk-rust/src/connection.rs /home/user/antigravity-sdk-rust/src/context.rs /home/user/antigravity-sdk-rust/src/conversation.rs /home/user/antigravity-sdk-rust/src/error.rs /home/user/antigravity-sdk-rust/src/harness_config.rs /home/user/antigravity-sdk-rust/src/hook_dispatch.rs /home/user/antigravity-sdk-rust/src/hooks.rs /home/user/antigravity-sdk-rust/src/local.rs /home/user/antigravity-sdk-rust/src/path_safety.rs /home/user/antigravity-sdk-rust/src/policy.rs /home/user/antigravity-sdk-rust/src/state.rs /home/user/antigravity-sdk-rust/src/step_extract.rs /home/user/antigravity-sdk-rust/src/tool_context.rs /home/user/antigravity-sdk-rust/src/tool_output.rs /home/user/antigravity-sdk-rust/src/tool_wire.rs /home/user/antigravity-sdk-rust/src/tools.rs /home/user/antigravity-sdk-rust/src/trigger_helpers.rs /home/user/antigravity-sdk-rust/src/triggers.rs /home/user/antigravity-sdk-rust/src/types.rs /home/user/antigravity-sdk-rust/src/wire_path.rs /home/user/antigravity-sdk-rust/src/workspace.rs /home/user/antigravity-sdk-rust/src/interactive.rs /home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/out/antigravity.localharness.rs /home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/out/antigravity.localharness.serde.rs + +/home/user/antigravity-sdk-rust/src/lib.rs: +/home/user/antigravity-sdk-rust/src/agent.rs: +/home/user/antigravity-sdk-rust/src/coerce.rs: +/home/user/antigravity-sdk-rust/src/connection.rs: +/home/user/antigravity-sdk-rust/src/context.rs: +/home/user/antigravity-sdk-rust/src/conversation.rs: +/home/user/antigravity-sdk-rust/src/error.rs: +/home/user/antigravity-sdk-rust/src/harness_config.rs: +/home/user/antigravity-sdk-rust/src/hook_dispatch.rs: +/home/user/antigravity-sdk-rust/src/hooks.rs: +/home/user/antigravity-sdk-rust/src/local.rs: +/home/user/antigravity-sdk-rust/src/path_safety.rs: +/home/user/antigravity-sdk-rust/src/policy.rs: +/home/user/antigravity-sdk-rust/src/state.rs: +/home/user/antigravity-sdk-rust/src/step_extract.rs: +/home/user/antigravity-sdk-rust/src/tool_context.rs: +/home/user/antigravity-sdk-rust/src/tool_output.rs: +/home/user/antigravity-sdk-rust/src/tool_wire.rs: +/home/user/antigravity-sdk-rust/src/tools.rs: +/home/user/antigravity-sdk-rust/src/trigger_helpers.rs: +/home/user/antigravity-sdk-rust/src/triggers.rs: +/home/user/antigravity-sdk-rust/src/types.rs: +/home/user/antigravity-sdk-rust/src/wire_path.rs: +/home/user/antigravity-sdk-rust/src/workspace.rs: +/home/user/antigravity-sdk-rust/src/interactive.rs: +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/out/antigravity.localharness.rs: +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/out/antigravity.localharness.serde.rs: + +# env-dep:CARGO_PKG_RUST_VERSION= +# env-dep:CARGO_PKG_VERSION=0.1.14 +# env-dep:OUT_DIR=/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/antigravity-sdk-rust-ae270c151de1d5a5/out +# env-dep:RUSTC_VERSION=/root/.rustup/toolchains/1.97.1-x86_64-unknown-linux-gnu/bin/rustc diff --git a/examples/agent_server/target/debug/deps/anyhow-63324738ee307b1e.d b/examples/agent_server/target/debug/deps/anyhow-63324738ee307b1e.d new file mode 100644 index 0000000..907e436 --- /dev/null +++ b/examples/agent_server/target/debug/deps/anyhow-63324738ee307b1e.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/anyhow-63324738ee307b1e.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/backtrace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/context.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ensure.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/kind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/wrapper.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libanyhow-63324738ee307b1e.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/backtrace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/context.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ensure.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/kind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/wrapper.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libanyhow-63324738ee307b1e.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/backtrace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/context.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ensure.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/kind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/wrapper.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/backtrace.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/chain.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/context.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ensure.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/fmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/kind.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ptr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/wrapper.rs: diff --git a/examples/agent_server/target/debug/deps/anyhow-b73a1c715f21f557.d b/examples/agent_server/target/debug/deps/anyhow-b73a1c715f21f557.d new file mode 100644 index 0000000..9042390 --- /dev/null +++ b/examples/agent_server/target/debug/deps/anyhow-b73a1c715f21f557.d @@ -0,0 +1,15 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/anyhow-b73a1c715f21f557.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/backtrace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/context.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ensure.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/kind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/wrapper.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libanyhow-b73a1c715f21f557.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/backtrace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/context.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ensure.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/kind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/wrapper.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/backtrace.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/chain.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/context.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ensure.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/fmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/kind.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ptr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/wrapper.rs: diff --git a/examples/agent_server/target/debug/deps/atomic_waker-d3e04e7f6d1be0ac.d b/examples/agent_server/target/debug/deps/atomic_waker-d3e04e7f6d1be0ac.d new file mode 100644 index 0000000..a84bd86 --- /dev/null +++ b/examples/agent_server/target/debug/deps/atomic_waker-d3e04e7f6d1be0ac.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/atomic_waker-d3e04e7f6d1be0ac.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libatomic_waker-d3e04e7f6d1be0ac.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/atomic-waker-1.1.2/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/axum-a9659d5a05445b29.d b/examples/agent_server/target/debug/deps/axum-a9659d5a05445b29.d new file mode 100644 index 0000000..a515649 --- /dev/null +++ b/examples/agent_server/target/debug/deps/axum-a9659d5a05445b29.d @@ -0,0 +1,72 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/axum-a9659d5a05445b29.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/boxed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extension.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/form.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/json.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/service_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/body/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/error_handling/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/connect_info.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/path/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/path/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/rejection.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/nested_path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/original_uri.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/raw_form.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/raw_query.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/state.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/matched_path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/query.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/handler/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/handler/future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/handler/service.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/from_extractor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/from_fn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/map_request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/map_response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/response_axum_body.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/response/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/response/redirect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/response/sse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/method_routing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/into_make_service.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/method_filter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/not_found.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/path_router.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/route.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/strip_prefix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/url_params.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/serve/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/serve/listener.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/docs/handlers_intro.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/error_handling/../docs/error_handling.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/../docs/extract.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/handler/../docs/handlers_intro.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/handler/../docs/debugging_handler_type_errors.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/../docs/middleware.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/response/../docs/response.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/method_routing/fallback.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/method_routing/layer.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/method_routing/route_layer.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/method_routing/merge.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/without_v07_checks.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/route.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/route_service.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/nest.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/merge.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/layer.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/route_layer.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/fallback.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/method_not_allowed_fallback.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/with_state.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/into_make_service_with_connect_info.md + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libaxum-a9659d5a05445b29.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/boxed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extension.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/form.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/json.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/service_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/body/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/error_handling/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/connect_info.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/path/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/path/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/rejection.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/nested_path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/original_uri.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/raw_form.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/raw_query.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/state.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/matched_path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/query.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/handler/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/handler/future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/handler/service.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/from_extractor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/from_fn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/map_request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/map_response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/response_axum_body.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/response/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/response/redirect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/response/sse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/method_routing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/into_make_service.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/method_filter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/not_found.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/path_router.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/route.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/strip_prefix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/url_params.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/serve/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/serve/listener.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/docs/handlers_intro.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/error_handling/../docs/error_handling.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/../docs/extract.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/handler/../docs/handlers_intro.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/handler/../docs/debugging_handler_type_errors.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/../docs/middleware.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/response/../docs/response.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/method_routing/fallback.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/method_routing/layer.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/method_routing/route_layer.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/method_routing/merge.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/without_v07_checks.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/route.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/route_service.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/nest.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/merge.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/layer.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/route_layer.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/fallback.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/method_not_allowed_fallback.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/with_state.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/into_make_service_with_connect_info.md + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/boxed.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extension.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/form.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/json.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/service_ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/body/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/error_handling/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/connect_info.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/path/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/path/de.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/rejection.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/nested_path.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/original_uri.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/raw_form.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/raw_query.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/state.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/matched_path.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/query.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/handler/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/handler/future.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/handler/service.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/from_extractor.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/from_fn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/map_request.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/map_response.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/response_axum_body.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/response/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/response/redirect.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/response/sse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/future.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/method_routing.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/into_make_service.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/method_filter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/not_found.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/path_router.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/route.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/strip_prefix.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/url_params.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/serve/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/serve/listener.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/docs/handlers_intro.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/error_handling/../docs/error_handling.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/extract/../docs/extract.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/handler/../docs/handlers_intro.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/handler/../docs/debugging_handler_type_errors.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/middleware/../docs/middleware.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/response/../docs/response.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/method_routing/fallback.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/method_routing/layer.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/method_routing/route_layer.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/method_routing/merge.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/without_v07_checks.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/route.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/route_service.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/nest.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/merge.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/layer.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/route_layer.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/fallback.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/method_not_allowed_fallback.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/with_state.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-0.8.9/src/routing/../docs/routing/into_make_service_with_connect_info.md: diff --git a/examples/agent_server/target/debug/deps/axum_core-0531e1f5e64d6718.d b/examples/agent_server/target/debug/deps/axum_core-0531e1f5e64d6718.d new file mode 100644 index 0000000..c2aaeda --- /dev/null +++ b/examples/agent_server/target/debug/deps/axum_core-0531e1f5e64d6718.d @@ -0,0 +1,22 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/axum_core-0531e1f5e64d6718.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/ext_traits/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/ext_traits/request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/ext_traits/request_parts.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/body.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/rejection.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/default_body_limit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/from_ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/request_parts.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/tuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/response/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/response/append_headers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/response/into_response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/response/into_response_parts.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libaxum_core-0531e1f5e64d6718.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/ext_traits/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/ext_traits/request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/ext_traits/request_parts.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/body.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/rejection.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/default_body_limit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/from_ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/request_parts.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/tuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/response/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/response/append_headers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/response/into_response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/response/into_response_parts.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/ext_traits/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/ext_traits/request.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/ext_traits/request_parts.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/body.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/rejection.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/default_body_limit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/from_ref.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/option.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/request_parts.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/extract/tuple.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/response/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/response/append_headers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/response/into_response.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/axum-core-0.5.6/src/response/into_response_parts.rs: diff --git a/examples/agent_server/target/debug/deps/base64-70e6c2f54e55a600.d b/examples/agent_server/target/debug/deps/base64-70e6c2f54e55a600.d new file mode 100644 index 0000000..eaa4455 --- /dev/null +++ b/examples/agent_server/target/debug/deps/base64-70e6c2f54e55a600.d @@ -0,0 +1,20 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/base64-70e6c2f54e55a600.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/chunked_encoder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/read/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/read/decoder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/write/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/write/encoder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/write/encoder_string_writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/engine/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/engine/general_purpose/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/engine/general_purpose/decode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/engine/general_purpose/decode_suffix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/alphabet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/encode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/decode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/prelude.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libbase64-70e6c2f54e55a600.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/chunked_encoder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/read/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/read/decoder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/write/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/write/encoder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/write/encoder_string_writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/engine/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/engine/general_purpose/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/engine/general_purpose/decode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/engine/general_purpose/decode_suffix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/alphabet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/encode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/decode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/prelude.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/chunked_encoder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/display.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/read/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/read/decoder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/write/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/write/encoder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/write/encoder_string_writer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/engine/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/engine/general_purpose/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/engine/general_purpose/decode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/engine/general_purpose/decode_suffix.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/alphabet.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/encode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/decode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.21.7/src/prelude.rs: diff --git a/examples/agent_server/target/debug/deps/bitflags-beba4f24b0bc6a9e.d b/examples/agent_server/target/debug/deps/bitflags-beba4f24b0bc6a9e.d new file mode 100644 index 0000000..398ce0d --- /dev/null +++ b/examples/agent_server/target/debug/deps/bitflags-beba4f24b0bc6a9e.d @@ -0,0 +1,13 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/bitflags-beba4f24b0bc6a9e.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/public.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/internal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/external.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libbitflags-beba4f24b0bc6a9e.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/public.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/internal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/external.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libbitflags-beba4f24b0bc6a9e.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/public.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/internal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/external.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/parser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/traits.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/public.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/internal.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/external.rs: diff --git a/examples/agent_server/target/debug/deps/bitflags-cff3612a3afc1bc7.d b/examples/agent_server/target/debug/deps/bitflags-cff3612a3afc1bc7.d new file mode 100644 index 0000000..48d9dd3 --- /dev/null +++ b/examples/agent_server/target/debug/deps/bitflags-cff3612a3afc1bc7.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/bitflags-cff3612a3afc1bc7.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/public.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/internal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/external.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libbitflags-cff3612a3afc1bc7.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/public.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/internal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/external.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/parser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/traits.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/public.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/internal.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/external.rs: diff --git a/examples/agent_server/target/debug/deps/block_buffer-21104cf75f366f1b.d b/examples/agent_server/target/debug/deps/block_buffer-21104cf75f366f1b.d new file mode 100644 index 0000000..afc9677 --- /dev/null +++ b/examples/agent_server/target/debug/deps/block_buffer-21104cf75f366f1b.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/block_buffer-21104cf75f366f1b.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/sealed.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libblock_buffer-21104cf75f366f1b.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/sealed.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/sealed.rs: diff --git a/examples/agent_server/target/debug/deps/byteorder-bef59b1a1728490b.d b/examples/agent_server/target/debug/deps/byteorder-bef59b1a1728490b.d new file mode 100644 index 0000000..66963c2 --- /dev/null +++ b/examples/agent_server/target/debug/deps/byteorder-bef59b1a1728490b.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/byteorder-bef59b1a1728490b.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libbyteorder-bef59b1a1728490b.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/byteorder-1.5.0/src/io.rs: diff --git a/examples/agent_server/target/debug/deps/bytes-09a986c6ca322719.d b/examples/agent_server/target/debug/deps/bytes-09a986c6ca322719.d new file mode 100644 index 0000000..ca41561 --- /dev/null +++ b/examples/agent_server/target/debug/deps/bytes-09a986c6ca322719.d @@ -0,0 +1,22 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/bytes-09a986c6ca322719.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/limit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/take.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/uninit_slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/vec_deque.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/hex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/loom.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libbytes-09a986c6ca322719.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/limit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/take.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/uninit_slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/vec_deque.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/hex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/loom.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libbytes-09a986c6ca322719.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/limit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/take.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/uninit_slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/vec_deque.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/hex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/loom.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_mut.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/chain.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/limit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/take.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/uninit_slice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/vec_deque.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes_mut.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/debug.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/hex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/loom.rs: diff --git a/examples/agent_server/target/debug/deps/bytes-c3394b0af77a15c5.d b/examples/agent_server/target/debug/deps/bytes-c3394b0af77a15c5.d new file mode 100644 index 0000000..0c8965d --- /dev/null +++ b/examples/agent_server/target/debug/deps/bytes-c3394b0af77a15c5.d @@ -0,0 +1,22 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/bytes-c3394b0af77a15c5.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/limit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/take.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/uninit_slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/vec_deque.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/hex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/loom.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libbytes-c3394b0af77a15c5.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/limit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/take.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/uninit_slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/vec_deque.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/hex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/loom.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_mut.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/chain.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/limit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/reader.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/take.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/uninit_slice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/vec_deque.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/writer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes_mut.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/debug.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/hex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/loom.rs: diff --git a/examples/agent_server/target/debug/deps/cc-c9b1ffb908c7b429.d b/examples/agent_server/target/debug/deps/cc-c9b1ffb908c7b429.d new file mode 100644 index 0000000..b2287fb --- /dev/null +++ b/examples/agent_server/target/debug/deps/cc-c9b1ffb908c7b429.d @@ -0,0 +1,18 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/cc-c9b1ffb908c7b429.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target/apple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target/generated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target/llvm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/command_helpers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/tool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/tempfile.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/utilities.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/flags.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/detect_compiler_family.c + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libcc-c9b1ffb908c7b429.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target/apple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target/generated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target/llvm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/command_helpers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/tool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/tempfile.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/utilities.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/flags.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/detect_compiler_family.c + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libcc-c9b1ffb908c7b429.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target/apple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target/generated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target/llvm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/command_helpers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/tool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/tempfile.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/utilities.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/flags.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/detect_compiler_family.c + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target/apple.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target/generated.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target/llvm.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/target/parser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/command_helpers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/tool.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/tempfile.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/utilities.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/flags.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cc-1.4.0/src/detect_compiler_family.c: diff --git a/examples/agent_server/target/debug/deps/cfg_if-8e014ddcb785b96d.d b/examples/agent_server/target/debug/deps/cfg_if-8e014ddcb785b96d.d new file mode 100644 index 0000000..87969e5 --- /dev/null +++ b/examples/agent_server/target/debug/deps/cfg_if-8e014ddcb785b96d.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/cfg_if-8e014ddcb785b96d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libcfg_if-8e014ddcb785b96d.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/cfg_if-a5d74e57c5b7e6d1.d b/examples/agent_server/target/debug/deps/cfg_if-a5d74e57c5b7e6d1.d new file mode 100644 index 0000000..c899a0a --- /dev/null +++ b/examples/agent_server/target/debug/deps/cfg_if-a5d74e57c5b7e6d1.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/cfg_if-a5d74e57c5b7e6d1.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libcfg_if-a5d74e57c5b7e6d1.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libcfg_if-a5d74e57c5b7e6d1.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/cpufeatures-61d389a9f523e928.d b/examples/agent_server/target/debug/deps/cpufeatures-61d389a9f523e928.d new file mode 100644 index 0000000..1ea05ce --- /dev/null +++ b/examples/agent_server/target/debug/deps/cpufeatures-61d389a9f523e928.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/cpufeatures-61d389a9f523e928.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/x86.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libcpufeatures-61d389a9f523e928.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/x86.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/x86.rs: diff --git a/examples/agent_server/target/debug/deps/crypto_common-951d0c7a09b050b2.d b/examples/agent_server/target/debug/deps/crypto_common-951d0c7a09b050b2.d new file mode 100644 index 0000000..a39c078 --- /dev/null +++ b/examples/agent_server/target/debug/deps/crypto_common-951d0c7a09b050b2.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/crypto_common-951d0c7a09b050b2.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libcrypto_common-951d0c7a09b050b2.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/data_encoding-7790b5eabc4a5b96.d b/examples/agent_server/target/debug/deps/data_encoding-7790b5eabc4a5b96.d new file mode 100644 index 0000000..6a6e27e --- /dev/null +++ b/examples/agent_server/target/debug/deps/data_encoding-7790b5eabc4a5b96.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/data_encoding-7790b5eabc4a5b96.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/data-encoding-2.11.0/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libdata_encoding-7790b5eabc4a5b96.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/data-encoding-2.11.0/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/data-encoding-2.11.0/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/digest-a8d93b28a2f63d11.d b/examples/agent_server/target/debug/deps/digest-a8d93b28a2f63d11.d new file mode 100644 index 0000000..c807c50 --- /dev/null +++ b/examples/agent_server/target/debug/deps/digest-a8d93b28a2f63d11.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/digest-a8d93b28a2f63d11.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/ct_variable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/rt_variable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/wrapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/xof_reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/digest.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libdigest-a8d93b28a2f63d11.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/ct_variable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/rt_variable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/wrapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/xof_reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/digest.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/ct_variable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/rt_variable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/wrapper.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/xof_reader.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/digest.rs: diff --git a/examples/agent_server/target/debug/deps/displaydoc-84cb819f9d99c54b.d b/examples/agent_server/target/debug/deps/displaydoc-84cb819f9d99c54b.d new file mode 100644 index 0000000..a63f6bd --- /dev/null +++ b/examples/agent_server/target/debug/deps/displaydoc-84cb819f9d99c54b.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/displaydoc-84cb819f9d99c54b.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/expand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/fmt.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libdisplaydoc-84cb819f9d99c54b.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/expand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/fmt.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/expand.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/fmt.rs: diff --git a/examples/agent_server/target/debug/deps/dotenvy-fe4788558d317428.d b/examples/agent_server/target/debug/deps/dotenvy-fe4788558d317428.d new file mode 100644 index 0000000..b84a032 --- /dev/null +++ b/examples/agent_server/target/debug/deps/dotenvy-fe4788558d317428.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/dotenvy-fe4788558d317428.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dotenvy-0.15.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dotenvy-0.15.7/src/errors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dotenvy-0.15.7/src/find.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dotenvy-0.15.7/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dotenvy-0.15.7/src/parse.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libdotenvy-fe4788558d317428.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dotenvy-0.15.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dotenvy-0.15.7/src/errors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dotenvy-0.15.7/src/find.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dotenvy-0.15.7/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dotenvy-0.15.7/src/parse.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dotenvy-0.15.7/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dotenvy-0.15.7/src/errors.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dotenvy-0.15.7/src/find.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dotenvy-0.15.7/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/dotenvy-0.15.7/src/parse.rs: diff --git a/examples/agent_server/target/debug/deps/either-4df26a1332d7081b.d b/examples/agent_server/target/debug/deps/either-4df26a1332d7081b.d new file mode 100644 index 0000000..129ec8d --- /dev/null +++ b/examples/agent_server/target/debug/deps/either-4df26a1332d7081b.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/either-4df26a1332d7081b.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/iterator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/into_either.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libeither-4df26a1332d7081b.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/iterator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/into_either.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libeither-4df26a1332d7081b.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/iterator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/into_either.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/iterator.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/into_either.rs: diff --git a/examples/agent_server/target/debug/deps/equivalent-0aada0f55b2e54f9.d b/examples/agent_server/target/debug/deps/equivalent-0aada0f55b2e54f9.d new file mode 100644 index 0000000..6096713 --- /dev/null +++ b/examples/agent_server/target/debug/deps/equivalent-0aada0f55b2e54f9.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/equivalent-0aada0f55b2e54f9.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libequivalent-0aada0f55b2e54f9.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libequivalent-0aada0f55b2e54f9.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/errno-6f35137132c41998.d b/examples/agent_server/target/debug/deps/errno-6f35137132c41998.d new file mode 100644 index 0000000..affe182 --- /dev/null +++ b/examples/agent_server/target/debug/deps/errno-6f35137132c41998.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/errno-6f35137132c41998.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/unix.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/liberrno-6f35137132c41998.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/unix.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/errno-0.3.14/src/unix.rs: diff --git a/examples/agent_server/target/debug/deps/fastrand-8613cd34c2af9727.d b/examples/agent_server/target/debug/deps/fastrand-8613cd34c2af9727.d new file mode 100644 index 0000000..2291b1c --- /dev/null +++ b/examples/agent_server/target/debug/deps/fastrand-8613cd34c2af9727.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/fastrand-8613cd34c2af9727.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.5.0/src/global_rng.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libfastrand-8613cd34c2af9727.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.5.0/src/global_rng.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libfastrand-8613cd34c2af9727.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.5.0/src/global_rng.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.5.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fastrand-2.5.0/src/global_rng.rs: diff --git a/examples/agent_server/target/debug/deps/find_msvc_tools-c77a833ef3d35f6d.d b/examples/agent_server/target/debug/deps/find_msvc_tools-c77a833ef3d35f6d.d new file mode 100644 index 0000000..3983c61 --- /dev/null +++ b/examples/agent_server/target/debug/deps/find_msvc_tools-c77a833ef3d35f6d.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/find_msvc_tools-c77a833ef3d35f6d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/find_tools.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/tool.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libfind_msvc_tools-c77a833ef3d35f6d.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/find_tools.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/tool.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libfind_msvc_tools-c77a833ef3d35f6d.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/find_tools.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/tool.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/find_tools.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/find-msvc-tools-0.1.9/src/tool.rs: diff --git a/examples/agent_server/target/debug/deps/fixedbitset-3176b62188b708a8.d b/examples/agent_server/target/debug/deps/fixedbitset-3176b62188b708a8.d new file mode 100644 index 0000000..d099903 --- /dev/null +++ b/examples/agent_server/target/debug/deps/fixedbitset-3176b62188b708a8.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/fixedbitset-3176b62188b708a8.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libfixedbitset-3176b62188b708a8.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libfixedbitset-3176b62188b708a8.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs: diff --git a/examples/agent_server/target/debug/deps/form_urlencoded-06177f51e9868e5c.d b/examples/agent_server/target/debug/deps/form_urlencoded-06177f51e9868e5c.d new file mode 100644 index 0000000..66c56cc --- /dev/null +++ b/examples/agent_server/target/debug/deps/form_urlencoded-06177f51e9868e5c.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/form_urlencoded-06177f51e9868e5c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.2/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libform_urlencoded-06177f51e9868e5c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.2/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.2/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/futures_channel-d2d2e368fa3571be.d b/examples/agent_server/target/debug/deps/futures_channel-d2d2e368fa3571be.d new file mode 100644 index 0000000..f1d647c --- /dev/null +++ b/examples/agent_server/target/debug/deps/futures_channel-d2d2e368fa3571be.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/futures_channel-d2d2e368fa3571be.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/lock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/mpsc/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/mpsc/queue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/oneshot.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libfutures_channel-d2d2e368fa3571be.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/lock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/mpsc/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/mpsc/queue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/oneshot.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/lock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/mpsc/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/mpsc/queue.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/oneshot.rs: diff --git a/examples/agent_server/target/debug/deps/futures_core-77c8ed53374c713b.d b/examples/agent_server/target/debug/deps/futures_core-77c8ed53374c713b.d new file mode 100644 index 0000000..63d8ae0 --- /dev/null +++ b/examples/agent_server/target/debug/deps/futures_core-77c8ed53374c713b.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/futures_core-77c8ed53374c713b.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/poll.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/__internal/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/__internal/atomic_waker.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libfutures_core-77c8ed53374c713b.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/poll.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/__internal/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/__internal/atomic_waker.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/future.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/stream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/poll.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/__internal/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/__internal/atomic_waker.rs: diff --git a/examples/agent_server/target/debug/deps/futures_macro-b5492f4e9f40dde0.d b/examples/agent_server/target/debug/deps/futures_macro-b5492f4e9f40dde0.d new file mode 100644 index 0000000..6691bf8 --- /dev/null +++ b/examples/agent_server/target/debug/deps/futures_macro-b5492f4e9f40dde0.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/futures_macro-b5492f4e9f40dde0.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/executor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/stream_select.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libfutures_macro-b5492f4e9f40dde0.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/executor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/stream_select.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/executor.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/join.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/select.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/stream_select.rs: diff --git a/examples/agent_server/target/debug/deps/futures_sink-2ec053a2d118ef45.d b/examples/agent_server/target/debug/deps/futures_sink-2ec053a2d118ef45.d new file mode 100644 index 0000000..0d48327 --- /dev/null +++ b/examples/agent_server/target/debug/deps/futures_sink-2ec053a2d118ef45.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/futures_sink-2ec053a2d118ef45.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.33/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libfutures_sink-2ec053a2d118ef45.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.33/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.33/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/futures_task-b2cf2b99319e9c19.d b/examples/agent_server/target/debug/deps/futures_task-b2cf2b99319e9c19.d new file mode 100644 index 0000000..b78ab6f --- /dev/null +++ b/examples/agent_server/target/debug/deps/futures_task-b2cf2b99319e9c19.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/futures_task-b2cf2b99319e9c19.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/spawn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/arc_wake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/waker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/waker_ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/future_obj.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/noop_waker.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libfutures_task-b2cf2b99319e9c19.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/spawn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/arc_wake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/waker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/waker_ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/future_obj.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/noop_waker.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/spawn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/arc_wake.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/waker.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/waker_ref.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/future_obj.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/noop_waker.rs: diff --git a/examples/agent_server/target/debug/deps/futures_util-68bfb4a6b29747e3.d b/examples/agent_server/target/debug/deps/futures_util-68bfb4a6b29747e3.d new file mode 100644 index 0000000..1d47b00 --- /dev/null +++ b/examples/agent_server/target/debug/deps/futures_util-68bfb4a6b29747e3.d @@ -0,0 +1,147 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/futures_util-68bfb4a6b29747e3.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/poll.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/pending.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/join_mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/select_mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/stream_select_mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/random.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/flatten.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/fuse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/catch_unwind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/shared.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/into_future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/try_flatten.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/try_flatten_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/lazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/pending.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/maybe_done.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_maybe_done.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/poll_fn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/poll_immediate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/ready.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/always_ready.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/join_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_join_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select_ok.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/abortable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/collect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/unzip.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/concat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/count.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/cycle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/enumerate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/filter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/filter_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/flatten.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/fold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/forward.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/for_each.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/fuse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/into_future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/next.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/select_next_some.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/peek.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/skip.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/skip_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take_until.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/then.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/zip.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/ready_chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/scan.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/buffer_unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/buffered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/flatten_unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/for_each_concurrent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/catch_unwind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/and_then.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/into_stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/or_else.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_next.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_for_each.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_filter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_filter_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_flatten.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_flatten_unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_collect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_concat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_ready_chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_fold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_unfold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_skip_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_buffer_unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_buffered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_for_each_concurrent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/repeat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/repeat_with.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/empty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/once.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/pending.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/poll_fn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/poll_immediate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select_with_strategy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/unfold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_ordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/abort.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/task.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/ready_to_run_queue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/abortable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/close.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/drain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/fanout.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/feed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/flush.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/err_into.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/map_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/send.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/send_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/unfold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/with.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/with_flat_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/task/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/task/spawn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/never.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/bilock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/abortable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/fns.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/unfold_state.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libfutures_util-68bfb4a6b29747e3.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/poll.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/pending.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/join_mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/select_mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/stream_select_mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/random.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/flatten.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/fuse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/catch_unwind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/shared.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/into_future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/try_flatten.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/try_flatten_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/lazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/pending.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/maybe_done.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_maybe_done.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/poll_fn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/poll_immediate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/ready.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/always_ready.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/join_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_join_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select_ok.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/abortable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/collect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/unzip.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/concat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/count.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/cycle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/enumerate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/filter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/filter_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/flatten.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/fold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/forward.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/for_each.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/fuse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/into_future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/next.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/select_next_some.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/peek.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/skip.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/skip_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take_until.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/then.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/zip.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/ready_chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/scan.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/buffer_unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/buffered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/flatten_unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/for_each_concurrent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/catch_unwind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/and_then.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/into_stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/or_else.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_next.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_for_each.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_filter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_filter_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_flatten.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_flatten_unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_collect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_concat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_ready_chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_fold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_unfold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_skip_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_buffer_unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_buffered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_for_each_concurrent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/repeat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/repeat_with.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/empty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/once.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/pending.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/poll_fn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/poll_immediate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select_with_strategy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/unfold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_ordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/abort.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/task.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/ready_to_run_queue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/abortable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/close.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/drain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/fanout.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/feed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/flush.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/err_into.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/map_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/send.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/send_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/unfold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/with.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/with_flat_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/task/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/task/spawn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/never.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/bilock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/abortable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/fns.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/unfold_state.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/poll.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/pending.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/join_mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/select_mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/stream_select_mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/random.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/flatten.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/fuse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/catch_unwind.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/shared.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/into_future.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/try_flatten.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/try_flatten_err.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/lazy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/pending.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/maybe_done.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_maybe_done.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/option.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/poll_fn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/poll_immediate.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/ready.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/always_ready.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/join.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/join_all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select_all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_join.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_join_all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_select.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select_ok.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/either.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/abortable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/chain.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/collect.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/unzip.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/concat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/count.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/cycle.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/enumerate.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/filter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/filter_map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/flatten.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/fold.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/any.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/forward.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/for_each.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/fuse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/into_future.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/next.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/select_next_some.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/peek.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/skip.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/skip_while.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take_while.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take_until.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/then.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/zip.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/chunks.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/ready_chunks.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/scan.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/buffer_unordered.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/buffered.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/flatten_unordered.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/for_each_concurrent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/split.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/catch_unwind.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/and_then.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/into_stream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/or_else.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_next.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_for_each.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_filter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_filter_map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_flatten.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_flatten_unordered.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_collect.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_concat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_chunks.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_ready_chunks.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_fold.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_unfold.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_skip_while.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_take_while.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_buffer_unordered.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_buffered.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_for_each_concurrent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_any.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/repeat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/repeat_with.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/empty.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/once.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/pending.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/poll_fn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/poll_immediate.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select_with_strategy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/unfold.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_ordered.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/abort.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/task.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/ready_to_run_queue.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select_all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/abortable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/close.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/drain.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/fanout.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/feed.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/flush.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/err_into.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/map_err.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/send.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/send_all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/unfold.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/with.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/with_flat_map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/buffer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/task/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/task/spawn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/never.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/bilock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/mutex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/abortable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/fns.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/unfold_state.rs: diff --git a/examples/agent_server/target/debug/deps/generic_array-99fc4fee2d7bbea0.d b/examples/agent_server/target/debug/deps/generic_array-99fc4fee2d7bbea0.d new file mode 100644 index 0000000..3c05bb5 --- /dev/null +++ b/examples/agent_server/target/debug/deps/generic_array-99fc4fee2d7bbea0.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/generic_array-99fc4fee2d7bbea0.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/hex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/arr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/functional.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/sequence.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libgeneric_array-99fc4fee2d7bbea0.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/hex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/arr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/functional.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/sequence.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/hex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/arr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/functional.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/sequence.rs: diff --git a/examples/agent_server/target/debug/deps/getrandom-dfea81b716c93c60.d b/examples/agent_server/target/debug/deps/getrandom-dfea81b716c93c60.d new file mode 100644 index 0000000..49cf588 --- /dev/null +++ b/examples/agent_server/target/debug/deps/getrandom-dfea81b716c93c60.d @@ -0,0 +1,12 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/getrandom-dfea81b716c93c60.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util_libc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/use_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/lazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/linux_android_with_fallback.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libgetrandom-dfea81b716c93c60.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util_libc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/use_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/lazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/linux_android_with_fallback.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/error_impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/util_libc.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/use_file.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/lazy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.2.17/src/linux_android_with_fallback.rs: diff --git a/examples/agent_server/target/debug/deps/getrandom-eade8d24da07ca42.d b/examples/agent_server/target/debug/deps/getrandom-eade8d24da07ca42.d new file mode 100644 index 0000000..0891a09 --- /dev/null +++ b/examples/agent_server/target/debug/deps/getrandom-eade8d24da07ca42.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/getrandom-eade8d24da07ca42.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/../README.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/use_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/sys_fill_exact.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/get_errno.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/sanitizer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/linux_android_with_fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/lazy_ptr.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libgetrandom-eade8d24da07ca42.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/../README.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/use_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/sys_fill_exact.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/get_errno.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/sanitizer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/linux_android_with_fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/lazy_ptr.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libgetrandom-eade8d24da07ca42.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/../README.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/use_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/sys_fill_exact.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/get_errno.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/sanitizer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/linux_android_with_fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/lazy_ptr.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/../README.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/use_file.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/sys_fill_exact.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/get_errno.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/sanitizer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/linux_android_with_fallback.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/lazy_ptr.rs: diff --git a/examples/agent_server/target/debug/deps/hashbrown-ae4809890b874568.d b/examples/agent_server/target/debug/deps/hashbrown-ae4809890b874568.d new file mode 100644 index 0000000..e230f05 --- /dev/null +++ b/examples/agent_server/target/debug/deps/hashbrown-ae4809890b874568.d @@ -0,0 +1,22 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/hashbrown-ae4809890b874568.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/alloc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/bitmask.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/tag.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/hasher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/external_trait_impls/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/scopeguard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/table.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/sse2.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libhashbrown-ae4809890b874568.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/alloc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/bitmask.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/tag.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/hasher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/external_trait_impls/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/scopeguard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/table.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/sse2.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libhashbrown-ae4809890b874568.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/alloc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/bitmask.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/tag.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/hasher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/external_trait_impls/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/scopeguard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/table.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/sse2.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/alloc.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/bitmask.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/tag.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/hasher.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/raw.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/external_trait_impls/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/scopeguard.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/table.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/sse2.rs: diff --git a/examples/agent_server/target/debug/deps/heck-a126a121dde0434f.d b/examples/agent_server/target/debug/deps/heck-a126a121dde0434f.d new file mode 100644 index 0000000..9e9b841 --- /dev/null +++ b/examples/agent_server/target/debug/deps/heck-a126a121dde0434f.d @@ -0,0 +1,15 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/heck-a126a121dde0434f.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/kebab.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/lower_camel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/shouty_kebab.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/shouty_snake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/snake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/title.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/train.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/upper_camel.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libheck-a126a121dde0434f.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/kebab.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/lower_camel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/shouty_kebab.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/shouty_snake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/snake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/title.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/train.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/upper_camel.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libheck-a126a121dde0434f.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/kebab.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/lower_camel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/shouty_kebab.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/shouty_snake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/snake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/title.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/train.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/upper_camel.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/kebab.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/lower_camel.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/shouty_kebab.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/shouty_snake.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/snake.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/title.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/train.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.4.1/src/upper_camel.rs: diff --git a/examples/agent_server/target/debug/deps/heck-c513532ecb82790f.d b/examples/agent_server/target/debug/deps/heck-c513532ecb82790f.d new file mode 100644 index 0000000..5478bce --- /dev/null +++ b/examples/agent_server/target/debug/deps/heck-c513532ecb82790f.d @@ -0,0 +1,15 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/heck-c513532ecb82790f.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/kebab.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lower_camel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/shouty_kebab.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/shouty_snake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/snake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/title.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/train.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/upper_camel.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libheck-c513532ecb82790f.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/kebab.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lower_camel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/shouty_kebab.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/shouty_snake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/snake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/title.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/train.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/upper_camel.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libheck-c513532ecb82790f.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/kebab.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lower_camel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/shouty_kebab.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/shouty_snake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/snake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/title.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/train.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/upper_camel.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/kebab.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/lower_camel.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/shouty_kebab.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/shouty_snake.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/snake.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/title.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/train.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/heck-0.5.0/src/upper_camel.rs: diff --git a/examples/agent_server/target/debug/deps/http-70f1741eb8ff2b4a.d b/examples/agent_server/target/debug/deps/http-70f1741eb8ff2b4a.d new file mode 100644 index 0000000..7d511e9 --- /dev/null +++ b/examples/agent_server/target/debug/deps/http-70f1741eb8ff2b4a.d @@ -0,0 +1,24 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/http-70f1741eb8ff2b4a.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/convert.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/method.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/status.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/authority.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/port.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/scheme.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/version.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/byte_str.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/extensions.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libhttp-70f1741eb8ff2b4a.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/convert.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/method.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/status.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/authority.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/port.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/scheme.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/version.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/byte_str.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/extensions.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/convert.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/name.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/method.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/request.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/response.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/status.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/authority.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/builder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/path.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/port.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/scheme.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/version.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/byte_str.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/extensions.rs: diff --git a/examples/agent_server/target/debug/deps/http_body-196ed6e5d2ed22bf.d b/examples/agent_server/target/debug/deps/http_body-196ed6e5d2ed22bf.d new file mode 100644 index 0000000..367a2e2 --- /dev/null +++ b/examples/agent_server/target/debug/deps/http_body-196ed6e5d2ed22bf.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/http_body-196ed6e5d2ed22bf.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.1.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.1.0/src/frame.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.1.0/src/size_hint.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libhttp_body-196ed6e5d2ed22bf.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.1.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.1.0/src/frame.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.1.0/src/size_hint.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.1.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.1.0/src/frame.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-1.1.0/src/size_hint.rs: diff --git a/examples/agent_server/target/debug/deps/http_body_util-e8e827df427d3b87.d b/examples/agent_server/target/debug/deps/http_body_util-e8e827df427d3b87.d new file mode 100644 index 0000000..7e4b1bb --- /dev/null +++ b/examples/agent_server/target/debug/deps/http_body_util-e8e827df427d3b87.d @@ -0,0 +1,22 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/http_body_util-e8e827df427d3b87.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/collected.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/box_body.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/collect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/frame.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/fuse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/inspect_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/inspect_frame.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/map_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/map_frame.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/with_trailers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/empty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/full.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/limited.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/util.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libhttp_body_util-e8e827df427d3b87.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/collected.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/box_body.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/collect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/frame.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/fuse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/inspect_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/inspect_frame.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/map_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/map_frame.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/with_trailers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/empty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/full.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/limited.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/util.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/collected.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/box_body.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/collect.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/frame.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/fuse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/inspect_err.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/inspect_frame.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/map_err.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/map_frame.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/combinators/with_trailers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/either.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/empty.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/full.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/limited.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/stream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-body-util-0.1.4/src/util.rs: diff --git a/examples/agent_server/target/debug/deps/httparse-c3142aba67620658.d b/examples/agent_server/target/debug/deps/httparse-c3142aba67620658.d new file mode 100644 index 0000000..2e7ad49 --- /dev/null +++ b/examples/agent_server/target/debug/deps/httparse-c3142aba67620658.d @@ -0,0 +1,12 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/httparse-c3142aba67620658.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/swar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/sse42.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/avx2.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/runtime.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libhttparse-c3142aba67620658.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/swar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/sse42.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/avx2.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/runtime.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/swar.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/sse42.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/avx2.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httparse-1.10.1/src/simd/runtime.rs: diff --git a/examples/agent_server/target/debug/deps/httpdate-aa4dc02e00e21a0f.d b/examples/agent_server/target/debug/deps/httpdate-aa4dc02e00e21a0f.d new file mode 100644 index 0000000..ae9be7a --- /dev/null +++ b/examples/agent_server/target/debug/deps/httpdate-aa4dc02e00e21a0f.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/httpdate-aa4dc02e00e21a0f.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httpdate-1.0.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httpdate-1.0.3/src/date.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libhttpdate-aa4dc02e00e21a0f.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httpdate-1.0.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httpdate-1.0.3/src/date.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httpdate-1.0.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/httpdate-1.0.3/src/date.rs: diff --git a/examples/agent_server/target/debug/deps/hyper-4f622dcb0d866d6d.d b/examples/agent_server/target/debug/deps/hyper-4f622dcb0d866d6d.d new file mode 100644 index 0000000..fcde12d --- /dev/null +++ b/examples/agent_server/target/debug/deps/hyper-4f622dcb0d866d6d.d @@ -0,0 +1,44 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/hyper-4f622dcb0d866d6d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/cfg.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/trace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/body/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/body/incoming.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/body/length.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/date.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/io/rewind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/lock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/task.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/time.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/watch.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/ext/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/ext/h1_reason_phrase.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/rt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/rt/bounds.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/rt/io.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/rt/timer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/service/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/service/http.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/service/service.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/service/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/upgrade.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/headers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/conn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/decode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/dispatch.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/encode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/io.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/role.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/server/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/server/conn/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/server/conn/http1.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libhyper-4f622dcb0d866d6d.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/cfg.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/trace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/body/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/body/incoming.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/body/length.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/date.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/io/rewind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/lock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/task.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/time.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/watch.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/ext/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/ext/h1_reason_phrase.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/rt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/rt/bounds.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/rt/io.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/rt/timer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/service/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/service/http.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/service/service.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/service/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/upgrade.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/headers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/conn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/decode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/dispatch.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/encode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/io.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/role.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/server/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/server/conn/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/server/conn/http1.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/cfg.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/trace.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/body/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/body/incoming.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/body/length.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/buf.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/date.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/future.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/io/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/io/rewind.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/lock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/task.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/time.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/common/watch.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/ext/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/ext/h1_reason_phrase.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/rt/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/rt/bounds.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/rt/io.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/rt/timer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/service/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/service/http.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/service/service.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/service/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/upgrade.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/headers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/conn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/decode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/dispatch.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/encode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/io.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/proto/h1/role.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/server/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/server/conn/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-1.11.0/src/server/conn/http1.rs: diff --git a/examples/agent_server/target/debug/deps/hyper_util-35e8e7cd719c5235.d b/examples/agent_server/target/debug/deps/hyper_util-35e8e7cd719c5235.d new file mode 100644 index 0000000..1962564 --- /dev/null +++ b/examples/agent_server/target/debug/deps/hyper_util-35e8e7cd719c5235.d @@ -0,0 +1,21 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/hyper_util-35e8e7cd719c5235.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/exec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/rewind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/timer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio/with_hyper_io.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio/with_tokio_io.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/server/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/server/conn/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/server/conn/auto/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/server/conn/auto/upgrade.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/service/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/service/glue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/service/oneshot.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/error.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libhyper_util-35e8e7cd719c5235.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/exec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/rewind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/timer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio/with_hyper_io.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio/with_tokio_io.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/server/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/server/conn/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/server/conn/auto/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/server/conn/auto/upgrade.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/service/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/service/glue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/service/oneshot.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/error.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/exec.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/rewind.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/common/timer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio/with_hyper_io.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/rt/tokio/with_tokio_io.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/server/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/server/conn/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/server/conn/auto/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/server/conn/auto/upgrade.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/service/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/service/glue.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/service/oneshot.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hyper-util-0.1.20/src/error.rs: diff --git a/examples/agent_server/target/debug/deps/icu_collections-cfd8fd6c2db6e5b6.d b/examples/agent_server/target/debug/deps/icu_collections-cfd8fd6c2db6e5b6.d new file mode 100644 index 0000000..988101e --- /dev/null +++ b/examples/agent_server/target/debug/deps/icu_collections-cfd8fd6c2db6e5b6.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/icu_collections-cfd8fd6c2db6e5b6.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/cpinvlist.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvliststringlist/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/cptrie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/impl_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/planes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/iterator_utils.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libicu_collections-cfd8fd6c2db6e5b6.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/cpinvlist.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvliststringlist/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/cptrie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/impl_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/planes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/iterator_utils.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/trie.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/cpinvlist.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvliststringlist/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/cptrie.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/impl_const.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/planes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/iterator_utils.rs: diff --git a/examples/agent_server/target/debug/deps/icu_locale_core-ce41a0bce649e57e.d b/examples/agent_server/target/debug/deps/icu_locale_core-ce41a0bce649e57e.d new file mode 100644 index 0000000..d5200a7 --- /dev/null +++ b/examples/agent_server/target/debug/deps/icu_locale_core-ce41a0bce649e57e.d @@ -0,0 +1,64 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/icu_locale_core-ce41a0bce649e57e.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/helpers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/langid.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/locale.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/errors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/langid.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/locale.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/litemap.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/other/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/other.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/fields.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attributes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/keywords.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/subdivision.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/language.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/region.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variant.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variants.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/errors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/calendar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/collation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency_format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/emoji.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/first_day.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/hour_cycle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break_word.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_system.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_unit_override.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/numbering_system.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/region_override.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/regional_subdivision.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/sentence_supression.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/timezone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/variant.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/enum_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/struct_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/locale.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/zerovec.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libicu_locale_core-ce41a0bce649e57e.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/helpers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/langid.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/locale.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/errors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/langid.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/locale.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/litemap.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/other/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/other.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/fields.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attributes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/keywords.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/subdivision.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/language.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/region.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variant.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variants.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/errors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/calendar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/collation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency_format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/emoji.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/first_day.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/hour_cycle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break_word.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_system.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_unit_override.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/numbering_system.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/region_override.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/regional_subdivision.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/sentence_supression.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/timezone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/variant.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/enum_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/struct_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/locale.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/zerovec.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/helpers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/data.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/langid.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/locale.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/errors.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/langid.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/locale.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/litemap.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/other/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/other.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/fields.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/key.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attribute.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attributes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/key.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/keywords.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/subdivision.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/language.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/region.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/script.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variant.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variants.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/errors.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/calendar.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/collation.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency_format.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/emoji.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/first_day.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/hour_cycle.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break_word.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_system.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_unit_override.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/numbering_system.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/region_override.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/regional_subdivision.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/sentence_supression.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/timezone.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/variant.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/enum_keyword.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/struct_keyword.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/locale.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/zerovec.rs: diff --git a/examples/agent_server/target/debug/deps/icu_normalizer-1e463b8e5a6b3d10.d b/examples/agent_server/target/debug/deps/icu_normalizer-1e463b8e5a6b3d10.d new file mode 100644 index 0000000..32d186d --- /dev/null +++ b/examples/agent_server/target/debug/deps/icu_normalizer-1e463b8e5a6b3d10.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/icu_normalizer-1e463b8e5a6b3d10.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/properties.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/provider.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/uts46.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libicu_normalizer-1e463b8e5a6b3d10.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/properties.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/provider.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/uts46.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/properties.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/provider.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/uts46.rs: diff --git a/examples/agent_server/target/debug/deps/icu_normalizer_data-d587184efb5e1f57.d b/examples/agent_server/target/debug/deps/icu_normalizer_data-d587184efb5e1f57.d new file mode 100644 index 0000000..c8d81e7 --- /dev/null +++ b/examples/agent_server/target/debug/deps/icu_normalizer_data-d587184efb5e1f57.d @@ -0,0 +1,13 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/icu_normalizer_data-d587184efb5e1f57.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_tables_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_supplement_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_data_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_tables_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfc_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_data_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_uts46_data_v1.rs.data + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libicu_normalizer_data-d587184efb5e1f57.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_tables_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_supplement_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_data_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_tables_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfc_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_data_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_uts46_data_v1.rs.data + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_tables_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_supplement_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_data_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_tables_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfc_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_data_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_uts46_data_v1.rs.data: diff --git a/examples/agent_server/target/debug/deps/icu_properties-4fa6fe0fbc3271c3.d b/examples/agent_server/target/debug/deps/icu_properties-4fa6fe0fbc3271c3.d new file mode 100644 index 0000000..edd3491 --- /dev/null +++ b/examples/agent_server/target/debug/deps/icu_properties-4fa6fe0fbc3271c3.d @@ -0,0 +1,16 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/icu_properties-4fa6fe0fbc3271c3.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/emoji.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/names.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/props.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider/names.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/bidi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/trievalue.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libicu_properties-4fa6fe0fbc3271c3.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/emoji.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/names.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/props.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider/names.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/bidi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/trievalue.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/emoji.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/names.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/runtime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/props.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider/names.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/script.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/bidi.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/trievalue.rs: diff --git a/examples/agent_server/target/debug/deps/icu_properties_data-1d3a2241b6008d88.d b/examples/agent_server/target/debug/deps/icu_properties_data-1d3a2241b6008d88.d new file mode 100644 index 0000000..f1d6270 --- /dev/null +++ b/examples/agent_server/target/debug/deps/icu_properties_data-1d3a2241b6008d88.d @@ -0,0 +1,143 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/icu_properties_data-1d3a2241b6008d88.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_syllabic_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_syntax_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_lowercased_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_trinary_operator_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_regional_indicator_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_uppercased_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casemapped_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_script_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_syllabic_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_binary_operator_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_radical_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extender_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_syllabic_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_component_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_continue_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_dash_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_general_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_grapheme_cluster_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_presentation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_sensitive_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_bidi_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfd_inert_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_graph_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_control_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_hangul_syllable_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_word_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_line_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_white_space_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_unified_ideograph_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_noncharacter_code_point_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_grapheme_cluster_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_syllabic_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_east_asian_width_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_script_with_extensions_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_hangul_syllable_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_line_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_bidi_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_mirrored_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_link_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_script_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_east_asian_width_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_sentence_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alnum_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_general_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_vertical_orientation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casefolded_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_hangul_syllable_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_sentence_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_quotation_mark_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_deprecated_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_start_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_segment_starter_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_numeric_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hyphen_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_variation_selector_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_word_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_east_asian_width_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_sentence_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_modifier_combining_mark_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_group_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_conjunct_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_bidi_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_prepended_concatenation_mark_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_print_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_canonical_combining_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_terminal_punctuation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_vertical_orientation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_cased_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_numeric_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkc_inert_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_continue_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_basic_emoji_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_start_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_uppercase_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_script_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_numeric_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_hangul_syllable_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xdigit_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_full_composition_exclusion_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_vertical_orientation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_nfkc_casefolded_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hex_digit_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_continue_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_soft_dotted_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ideographic_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_canonical_combining_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_word_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_titlecased_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_sentence_terminal_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_conjunct_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_general_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ascii_hex_digit_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_line_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_east_asian_width_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_grapheme_cluster_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_conjunct_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_logical_order_exception_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_ignorable_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_diacritic_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_group_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_extend_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_mirroring_glyph_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_mask_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfc_inert_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_group_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_numeric_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_group_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_conjunct_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_script_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_lowercase_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_base_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_sentence_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_base_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_canonical_combining_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_join_control_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_line_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_unary_operator_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_word_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_math_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_white_space_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkd_inert_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_start_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alphabetic_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_grapheme_cluster_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_blank_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_default_ignorable_code_point_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extended_pictographic_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_vertical_orientation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_canonical_combining_class_v1.rs.data + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libicu_properties_data-1d3a2241b6008d88.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_syllabic_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_syntax_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_lowercased_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_trinary_operator_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_regional_indicator_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_uppercased_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casemapped_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_script_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_syllabic_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_binary_operator_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_radical_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extender_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_syllabic_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_component_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_continue_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_dash_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_general_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_grapheme_cluster_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_presentation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_sensitive_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_bidi_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfd_inert_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_graph_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_control_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_hangul_syllable_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_word_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_line_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_white_space_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_unified_ideograph_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_noncharacter_code_point_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_grapheme_cluster_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_syllabic_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_east_asian_width_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_script_with_extensions_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_hangul_syllable_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_line_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_bidi_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_mirrored_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_link_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_script_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_east_asian_width_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_sentence_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alnum_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_general_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_vertical_orientation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casefolded_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_hangul_syllable_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_sentence_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_quotation_mark_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_deprecated_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_start_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_segment_starter_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_numeric_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hyphen_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_variation_selector_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_word_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_east_asian_width_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_sentence_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_modifier_combining_mark_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_group_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_conjunct_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_bidi_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_prepended_concatenation_mark_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_print_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_canonical_combining_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_terminal_punctuation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_vertical_orientation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_cased_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_numeric_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkc_inert_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_continue_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_basic_emoji_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_start_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_uppercase_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_script_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_numeric_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_hangul_syllable_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xdigit_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_full_composition_exclusion_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_vertical_orientation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_nfkc_casefolded_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hex_digit_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_continue_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_soft_dotted_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ideographic_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_canonical_combining_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_word_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_titlecased_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_sentence_terminal_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_conjunct_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_general_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ascii_hex_digit_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_line_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_east_asian_width_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_grapheme_cluster_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_conjunct_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_logical_order_exception_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_ignorable_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_diacritic_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_group_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_extend_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_mirroring_glyph_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_mask_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfc_inert_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_group_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_numeric_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_group_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_conjunct_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_script_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_lowercase_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_base_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_sentence_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_base_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_canonical_combining_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_join_control_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_line_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_unary_operator_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_word_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_math_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_white_space_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkd_inert_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_start_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alphabetic_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_grapheme_cluster_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_blank_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_default_ignorable_code_point_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extended_pictographic_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_vertical_orientation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_canonical_combining_class_v1.rs.data + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_syllabic_category_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_syntax_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_lowercased_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_trinary_operator_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_regional_indicator_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_uppercased_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casemapped_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_script_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_syllabic_category_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_binary_operator_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_radical_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extender_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_syllabic_category_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_component_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_continue_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_dash_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_general_category_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_grapheme_cluster_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_presentation_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_sensitive_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_bidi_class_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfd_inert_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_graph_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_control_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_hangul_syllable_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_word_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_line_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_white_space_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_unified_ideograph_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_noncharacter_code_point_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_grapheme_cluster_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_syllabic_category_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_east_asian_width_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_script_with_extensions_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_hangul_syllable_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_line_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_bidi_class_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_mirrored_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_link_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_script_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_east_asian_width_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_sentence_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alnum_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_general_category_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_vertical_orientation_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casefolded_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_hangul_syllable_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_sentence_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_quotation_mark_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_deprecated_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_start_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_segment_starter_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_numeric_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hyphen_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_variation_selector_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_word_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_east_asian_width_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_sentence_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_modifier_combining_mark_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_group_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_conjunct_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_bidi_class_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_prepended_concatenation_mark_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_print_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_canonical_combining_class_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_terminal_punctuation_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_vertical_orientation_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_cased_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_numeric_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkc_inert_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_continue_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_basic_emoji_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_start_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_uppercase_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_script_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_numeric_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_hangul_syllable_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xdigit_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_full_composition_exclusion_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_vertical_orientation_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_nfkc_casefolded_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hex_digit_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_continue_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_soft_dotted_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ideographic_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_canonical_combining_class_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_word_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_titlecased_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_class_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_sentence_terminal_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_conjunct_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_general_category_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ascii_hex_digit_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_line_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_east_asian_width_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_grapheme_cluster_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_conjunct_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_logical_order_exception_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_ignorable_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_diacritic_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_group_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_extend_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_mirroring_glyph_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_mask_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfc_inert_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_group_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_numeric_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_group_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_conjunct_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_script_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_lowercase_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_base_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_sentence_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_base_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_canonical_combining_class_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_join_control_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_line_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_unary_operator_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_word_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_math_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_white_space_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkd_inert_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_start_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alphabetic_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_grapheme_cluster_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_blank_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_default_ignorable_code_point_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extended_pictographic_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_vertical_orientation_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_canonical_combining_class_v1.rs.data: diff --git a/examples/agent_server/target/debug/deps/icu_provider-c60991530f5e880a.d b/examples/agent_server/target/debug/deps/icu_provider-c60991530f5e880a.d new file mode 100644 index 0000000..d4a8f89 --- /dev/null +++ b/examples/agent_server/target/debug/deps/icu_provider-c60991530f5e880a.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/icu_provider-c60991530f5e880a.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked/zerotrie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/constructors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/dynutil.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/data_provider.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/marker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/varule_traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/fallback.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libicu_provider-c60991530f5e880a.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked/zerotrie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/constructors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/dynutil.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/data_provider.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/marker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/varule_traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/fallback.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked/zerotrie.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/buf.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/constructors.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/dynutil.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/data_provider.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/request.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/response.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/marker.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/varule_traits.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/fallback.rs: diff --git a/examples/agent_server/target/debug/deps/idna-c2925cb4c38b6b17.d b/examples/agent_server/target/debug/deps/idna-c2925cb4c38b6b17.d new file mode 100644 index 0000000..32c71d2 --- /dev/null +++ b/examples/agent_server/target/debug/deps/idna-c2925cb4c38b6b17.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/idna-c2925cb4c38b6b17.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/deprecated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/punycode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/uts46.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libidna-c2925cb4c38b6b17.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/deprecated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/punycode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/uts46.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/deprecated.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/punycode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/uts46.rs: diff --git a/examples/agent_server/target/debug/deps/idna_adapter-a90c5f270614d61e.d b/examples/agent_server/target/debug/deps/idna_adapter-a90c5f270614d61e.d new file mode 100644 index 0000000..172c8cc --- /dev/null +++ b/examples/agent_server/target/debug/deps/idna_adapter-a90c5f270614d61e.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/idna_adapter-a90c5f270614d61e.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.2/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libidna_adapter-a90c5f270614d61e.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.2/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.2/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/indexmap-7288faeefca9e398.d b/examples/agent_server/target/debug/deps/indexmap-7288faeefca9e398.d new file mode 100644 index 0000000..12bfada --- /dev/null +++ b/examples/agent_server/target/debug/deps/indexmap-7288faeefca9e398.d @@ -0,0 +1,23 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/indexmap-7288faeefca9e398.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/arbitrary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/extract.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/mutable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/raw_entry_v1.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/mutable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/slice.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libindexmap-7288faeefca9e398.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/arbitrary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/extract.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/mutable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/raw_entry_v1.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/mutable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/slice.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libindexmap-7288faeefca9e398.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/arbitrary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/extract.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/mutable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/raw_entry_v1.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/mutable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/slice.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/arbitrary.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/entry.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/extract.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/entry.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/mutable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/slice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/raw_entry_v1.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/mutable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/slice.rs: diff --git a/examples/agent_server/target/debug/deps/itertools-1c8620f6e4f3c891.d b/examples/agent_server/target/debug/deps/itertools-1c8620f6e4f3c891.d new file mode 100644 index 0000000..c91bb77 --- /dev/null +++ b/examples/agent_server/target/debug/deps/itertools-1c8620f6e4f3c891.d @@ -0,0 +1,51 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/itertools-1c8620f6e4f3c891.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/impl_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/adaptors/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/adaptors/coalesce.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/adaptors/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/adaptors/multi_product.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/either_or_both.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/free.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/combinations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/combinations_with_replacement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/concat_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/cons_tuples_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/diff.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/exactly_one_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/extrema_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/flatten_ok.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/group_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/groupbylazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/intersperse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/k_smallest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/kmerge_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/lazy_buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/merge_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/minmax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/multipeek_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/pad_tail.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/peek_nth.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/peeking_take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/permutations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/powerset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/process_results_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/put_back_n_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/rciter_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/repeatn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/sources.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/take_while_inclusive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/tee.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/tuple_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/unziptuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/with_position.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/zip_eq_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/zip_longest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/ziptuple.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libitertools-1c8620f6e4f3c891.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/impl_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/adaptors/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/adaptors/coalesce.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/adaptors/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/adaptors/multi_product.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/either_or_both.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/free.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/combinations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/combinations_with_replacement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/concat_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/cons_tuples_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/diff.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/exactly_one_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/extrema_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/flatten_ok.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/group_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/groupbylazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/intersperse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/k_smallest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/kmerge_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/lazy_buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/merge_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/minmax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/multipeek_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/pad_tail.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/peek_nth.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/peeking_take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/permutations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/powerset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/process_results_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/put_back_n_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/rciter_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/repeatn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/sources.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/take_while_inclusive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/tee.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/tuple_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/unziptuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/with_position.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/zip_eq_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/zip_longest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/ziptuple.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libitertools-1c8620f6e4f3c891.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/impl_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/adaptors/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/adaptors/coalesce.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/adaptors/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/adaptors/multi_product.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/either_or_both.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/free.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/combinations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/combinations_with_replacement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/concat_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/cons_tuples_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/diff.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/exactly_one_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/extrema_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/flatten_ok.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/group_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/groupbylazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/intersperse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/k_smallest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/kmerge_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/lazy_buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/merge_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/minmax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/multipeek_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/pad_tail.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/peek_nth.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/peeking_take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/permutations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/powerset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/process_results_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/put_back_n_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/rciter_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/repeatn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/sources.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/take_while_inclusive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/tee.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/tuple_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/unziptuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/with_position.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/zip_eq_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/zip_longest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/ziptuple.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/impl_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/adaptors/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/adaptors/coalesce.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/adaptors/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/adaptors/multi_product.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/either_or_both.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/free.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/combinations.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/combinations_with_replacement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/concat_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/cons_tuples_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/diff.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/exactly_one_err.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/extrema_set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/flatten_ok.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/format.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/group_map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/groupbylazy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/intersperse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/k_smallest.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/kmerge_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/lazy_buffer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/merge_join.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/minmax.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/multipeek_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/pad_tail.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/peek_nth.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/peeking_take_while.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/permutations.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/powerset.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/process_results_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/put_back_n_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/rciter_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/repeatn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/size_hint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/sources.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/take_while_inclusive.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/tee.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/tuple_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/unziptuple.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/with_position.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/zip_eq_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/zip_longest.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.12.1/src/ziptuple.rs: diff --git a/examples/agent_server/target/debug/deps/itertools-f0395d884d8afb84.d b/examples/agent_server/target/debug/deps/itertools-f0395d884d8afb84.d new file mode 100644 index 0000000..fcfe0bc --- /dev/null +++ b/examples/agent_server/target/debug/deps/itertools-f0395d884d8afb84.d @@ -0,0 +1,54 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/itertools-f0395d884d8afb84.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/impl_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/adaptors/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/adaptors/coalesce.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/adaptors/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/adaptors/multi_product.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/either_or_both.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/free.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/concat_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/cons_tuples_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/combinations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/combinations_with_replacement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/exactly_one_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/diff.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/flatten_ok.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/extrema_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/grouping_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/group_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/groupbylazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/intersperse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/k_smallest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/kmerge_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/lazy_buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/merge_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/minmax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/multipeek_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/pad_tail.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/peek_nth.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/peeking_take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/permutations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/powerset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/process_results_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/put_back_n_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/rciter_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/repeatn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/sources.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/take_while_inclusive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/tee.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/tuple_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/duplicates_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/unique_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/unziptuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/with_position.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/zip_eq_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/zip_longest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/ziptuple.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libitertools-f0395d884d8afb84.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/impl_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/adaptors/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/adaptors/coalesce.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/adaptors/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/adaptors/multi_product.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/either_or_both.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/free.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/concat_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/cons_tuples_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/combinations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/combinations_with_replacement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/exactly_one_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/diff.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/flatten_ok.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/extrema_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/grouping_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/group_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/groupbylazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/intersperse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/k_smallest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/kmerge_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/lazy_buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/merge_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/minmax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/multipeek_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/pad_tail.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/peek_nth.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/peeking_take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/permutations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/powerset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/process_results_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/put_back_n_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/rciter_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/repeatn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/sources.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/take_while_inclusive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/tee.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/tuple_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/duplicates_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/unique_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/unziptuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/with_position.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/zip_eq_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/zip_longest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/ziptuple.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libitertools-f0395d884d8afb84.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/impl_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/adaptors/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/adaptors/coalesce.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/adaptors/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/adaptors/multi_product.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/either_or_both.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/free.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/concat_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/cons_tuples_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/combinations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/combinations_with_replacement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/exactly_one_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/diff.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/flatten_ok.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/extrema_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/grouping_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/group_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/groupbylazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/intersperse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/k_smallest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/kmerge_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/lazy_buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/merge_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/minmax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/multipeek_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/pad_tail.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/peek_nth.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/peeking_take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/permutations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/powerset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/process_results_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/put_back_n_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/rciter_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/repeatn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/sources.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/take_while_inclusive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/tee.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/tuple_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/duplicates_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/unique_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/unziptuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/with_position.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/zip_eq_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/zip_longest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/ziptuple.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/impl_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/adaptors/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/adaptors/coalesce.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/adaptors/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/adaptors/multi_product.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/either_or_both.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/free.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/concat_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/cons_tuples_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/combinations.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/combinations_with_replacement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/exactly_one_err.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/diff.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/flatten_ok.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/extrema_set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/format.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/grouping_map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/group_map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/groupbylazy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/intersperse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/k_smallest.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/kmerge_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/lazy_buffer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/merge_join.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/minmax.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/multipeek_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/pad_tail.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/peek_nth.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/peeking_take_while.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/permutations.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/powerset.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/process_results_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/put_back_n_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/rciter_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/repeatn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/size_hint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/sources.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/take_while_inclusive.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/tee.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/tuple_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/duplicates_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/unique_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/unziptuple.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/with_position.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/zip_eq_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/zip_longest.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.11.0/src/ziptuple.rs: diff --git a/examples/agent_server/target/debug/deps/itoa-6ddde9f8d1eacb1c.d b/examples/agent_server/target/debug/deps/itoa-6ddde9f8d1eacb1c.d new file mode 100644 index 0000000..77f1daa --- /dev/null +++ b/examples/agent_server/target/debug/deps/itoa-6ddde9f8d1eacb1c.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/itoa-6ddde9f8d1eacb1c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/u128_ext.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libitoa-6ddde9f8d1eacb1c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/u128_ext.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/u128_ext.rs: diff --git a/examples/agent_server/target/debug/deps/lazy_static-ccd4043b5035ad5b.d b/examples/agent_server/target/debug/deps/lazy_static-ccd4043b5035ad5b.d new file mode 100644 index 0000000..421a6e4 --- /dev/null +++ b/examples/agent_server/target/debug/deps/lazy_static-ccd4043b5035ad5b.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/lazy_static-ccd4043b5035ad5b.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/liblazy_static-ccd4043b5035ad5b.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lazy_static-1.5.0/src/inline_lazy.rs: diff --git a/examples/agent_server/target/debug/deps/libagent_server-0d89f2c75aedc301.rmeta b/examples/agent_server/target/debug/deps/libagent_server-0d89f2c75aedc301.rmeta new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/deps/libagent_server-76df8b9fe4a73c91.rmeta b/examples/agent_server/target/debug/deps/libagent_server-76df8b9fe4a73c91.rmeta new file mode 100644 index 0000000..e69de29 diff --git a/examples/agent_server/target/debug/deps/libantigravity_sdk_rust-27f369df03bf6ad3.rmeta b/examples/agent_server/target/debug/deps/libantigravity_sdk_rust-27f369df03bf6ad3.rmeta new file mode 100644 index 0000000..2691a05 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libantigravity_sdk_rust-27f369df03bf6ad3.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libanyhow-63324738ee307b1e.rlib b/examples/agent_server/target/debug/deps/libanyhow-63324738ee307b1e.rlib new file mode 100644 index 0000000..f960203 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libanyhow-63324738ee307b1e.rlib differ diff --git a/examples/agent_server/target/debug/deps/libanyhow-63324738ee307b1e.rmeta b/examples/agent_server/target/debug/deps/libanyhow-63324738ee307b1e.rmeta new file mode 100644 index 0000000..b83fc31 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libanyhow-63324738ee307b1e.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libanyhow-b73a1c715f21f557.rmeta b/examples/agent_server/target/debug/deps/libanyhow-b73a1c715f21f557.rmeta new file mode 100644 index 0000000..3c76d95 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libanyhow-b73a1c715f21f557.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libatomic_waker-d3e04e7f6d1be0ac.rmeta b/examples/agent_server/target/debug/deps/libatomic_waker-d3e04e7f6d1be0ac.rmeta new file mode 100644 index 0000000..cdd95bb Binary files /dev/null and b/examples/agent_server/target/debug/deps/libatomic_waker-d3e04e7f6d1be0ac.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libaxum-a9659d5a05445b29.rmeta b/examples/agent_server/target/debug/deps/libaxum-a9659d5a05445b29.rmeta new file mode 100644 index 0000000..281fa1a Binary files /dev/null and b/examples/agent_server/target/debug/deps/libaxum-a9659d5a05445b29.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libaxum_core-0531e1f5e64d6718.rmeta b/examples/agent_server/target/debug/deps/libaxum_core-0531e1f5e64d6718.rmeta new file mode 100644 index 0000000..866d4a3 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libaxum_core-0531e1f5e64d6718.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libbase64-70e6c2f54e55a600.rmeta b/examples/agent_server/target/debug/deps/libbase64-70e6c2f54e55a600.rmeta new file mode 100644 index 0000000..44ca93c Binary files /dev/null and b/examples/agent_server/target/debug/deps/libbase64-70e6c2f54e55a600.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libbitflags-beba4f24b0bc6a9e.rlib b/examples/agent_server/target/debug/deps/libbitflags-beba4f24b0bc6a9e.rlib new file mode 100644 index 0000000..85e5013 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libbitflags-beba4f24b0bc6a9e.rlib differ diff --git a/examples/agent_server/target/debug/deps/libbitflags-beba4f24b0bc6a9e.rmeta b/examples/agent_server/target/debug/deps/libbitflags-beba4f24b0bc6a9e.rmeta new file mode 100644 index 0000000..15e38b2 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libbitflags-beba4f24b0bc6a9e.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libbitflags-cff3612a3afc1bc7.rmeta b/examples/agent_server/target/debug/deps/libbitflags-cff3612a3afc1bc7.rmeta new file mode 100644 index 0000000..d49d1f0 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libbitflags-cff3612a3afc1bc7.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libblock_buffer-21104cf75f366f1b.rmeta b/examples/agent_server/target/debug/deps/libblock_buffer-21104cf75f366f1b.rmeta new file mode 100644 index 0000000..e306c68 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libblock_buffer-21104cf75f366f1b.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libbyteorder-bef59b1a1728490b.rmeta b/examples/agent_server/target/debug/deps/libbyteorder-bef59b1a1728490b.rmeta new file mode 100644 index 0000000..dfd2b69 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libbyteorder-bef59b1a1728490b.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libbytes-09a986c6ca322719.rlib b/examples/agent_server/target/debug/deps/libbytes-09a986c6ca322719.rlib new file mode 100644 index 0000000..9e3c048 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libbytes-09a986c6ca322719.rlib differ diff --git a/examples/agent_server/target/debug/deps/libbytes-09a986c6ca322719.rmeta b/examples/agent_server/target/debug/deps/libbytes-09a986c6ca322719.rmeta new file mode 100644 index 0000000..1e9bf2f Binary files /dev/null and b/examples/agent_server/target/debug/deps/libbytes-09a986c6ca322719.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libbytes-c3394b0af77a15c5.rmeta b/examples/agent_server/target/debug/deps/libbytes-c3394b0af77a15c5.rmeta new file mode 100644 index 0000000..a2811e6 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libbytes-c3394b0af77a15c5.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libc-421811f1f81d68b1.d b/examples/agent_server/target/debug/deps/libc-421811f1f81d68b1.d new file mode 100644 index 0000000..1c64da1 --- /dev/null +++ b/examples/agent_server/target/debug/deps/libc-421811f1f81d68b1.d @@ -0,0 +1,55 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libc-421811f1f81d68b1.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/unistd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/bcm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/j1939.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/netlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/futex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_addr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_packet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/keyctl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/membarrier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mount.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/netlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/pidfd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/sctp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/tls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/posix/unistd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/bits/../../x86/nptl/bits/struct_mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/net/route.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux_l4re_shared.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/generic/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/types.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/liblibc-421811f1f81d68b1.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/unistd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/bcm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/j1939.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/netlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/futex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_addr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_packet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/keyctl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/membarrier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mount.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/netlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/pidfd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/sctp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/tls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/posix/unistd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/bits/../../x86/nptl/bits/struct_mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/net/route.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux_l4re_shared.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/generic/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/types.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/liblibc-421811f1f81d68b1.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/unistd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/bcm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/j1939.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/netlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/futex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_addr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_packet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/keyctl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/membarrier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mount.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/netlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/pidfd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/sctp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/tls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/posix/unistd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/bits/../../x86/nptl/bits/struct_mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/net/route.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux_l4re_shared.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/generic/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/types.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/pthread.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/pthread.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/unistd.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/bcm.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/j1939.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/netlink.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/raw.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/futex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_addr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_link.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_packet.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/keyctl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/membarrier.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mount.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/netlink.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/pidfd.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/sctp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/tls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/types.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/posix/unistd.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/bits/../../x86/nptl/bits/struct_mutex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/pthread.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/net/route.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/primitives.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux_l4re_shared.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/generic/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/types.rs: diff --git a/examples/agent_server/target/debug/deps/libc-72577fe584cae775.d b/examples/agent_server/target/debug/deps/libc-72577fe584cae775.d new file mode 100644 index 0000000..ad595fb --- /dev/null +++ b/examples/agent_server/target/debug/deps/libc-72577fe584cae775.d @@ -0,0 +1,53 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libc-72577fe584cae775.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/unistd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/bcm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/j1939.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/netlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/futex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_addr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_packet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/keyctl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/membarrier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mount.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/netlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/pidfd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/sctp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/tls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/posix/unistd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/bits/../../x86/nptl/bits/struct_mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/net/route.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux_l4re_shared.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/generic/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/types.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/liblibc-72577fe584cae775.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/unistd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/bcm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/j1939.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/netlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/futex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_addr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_packet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/keyctl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/membarrier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mount.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/netlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/pidfd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/sctp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/tls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/posix/unistd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/bits/../../x86/nptl/bits/struct_mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/net/route.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux_l4re_shared.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/generic/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/types.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/pthread.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/pthread.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/unistd.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/bcm.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/j1939.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/netlink.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/raw.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/futex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_addr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_link.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_packet.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/keyctl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/membarrier.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mount.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/netlink.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/pidfd.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/sctp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/tls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/types.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/posix/unistd.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/bits/../../x86/nptl/bits/struct_mutex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/pthread.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/net/route.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/primitives.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux_l4re_shared.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/generic/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/types.rs: diff --git a/examples/agent_server/target/debug/deps/libcc-c9b1ffb908c7b429.rlib b/examples/agent_server/target/debug/deps/libcc-c9b1ffb908c7b429.rlib new file mode 100644 index 0000000..c484b28 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libcc-c9b1ffb908c7b429.rlib differ diff --git a/examples/agent_server/target/debug/deps/libcc-c9b1ffb908c7b429.rmeta b/examples/agent_server/target/debug/deps/libcc-c9b1ffb908c7b429.rmeta new file mode 100644 index 0000000..9ce6346 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libcc-c9b1ffb908c7b429.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libcfg_if-8e014ddcb785b96d.rmeta b/examples/agent_server/target/debug/deps/libcfg_if-8e014ddcb785b96d.rmeta new file mode 100644 index 0000000..0af237d Binary files /dev/null and b/examples/agent_server/target/debug/deps/libcfg_if-8e014ddcb785b96d.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libcfg_if-a5d74e57c5b7e6d1.rlib b/examples/agent_server/target/debug/deps/libcfg_if-a5d74e57c5b7e6d1.rlib new file mode 100644 index 0000000..dede227 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libcfg_if-a5d74e57c5b7e6d1.rlib differ diff --git a/examples/agent_server/target/debug/deps/libcfg_if-a5d74e57c5b7e6d1.rmeta b/examples/agent_server/target/debug/deps/libcfg_if-a5d74e57c5b7e6d1.rmeta new file mode 100644 index 0000000..10a41eb Binary files /dev/null and b/examples/agent_server/target/debug/deps/libcfg_if-a5d74e57c5b7e6d1.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libcpufeatures-61d389a9f523e928.rmeta b/examples/agent_server/target/debug/deps/libcpufeatures-61d389a9f523e928.rmeta new file mode 100644 index 0000000..95234b3 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libcpufeatures-61d389a9f523e928.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libcrypto_common-951d0c7a09b050b2.rmeta b/examples/agent_server/target/debug/deps/libcrypto_common-951d0c7a09b050b2.rmeta new file mode 100644 index 0000000..e2ef1a2 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libcrypto_common-951d0c7a09b050b2.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libdata_encoding-7790b5eabc4a5b96.rmeta b/examples/agent_server/target/debug/deps/libdata_encoding-7790b5eabc4a5b96.rmeta new file mode 100644 index 0000000..af25311 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libdata_encoding-7790b5eabc4a5b96.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libdigest-a8d93b28a2f63d11.rmeta b/examples/agent_server/target/debug/deps/libdigest-a8d93b28a2f63d11.rmeta new file mode 100644 index 0000000..913d955 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libdigest-a8d93b28a2f63d11.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libdisplaydoc-84cb819f9d99c54b.so b/examples/agent_server/target/debug/deps/libdisplaydoc-84cb819f9d99c54b.so new file mode 100755 index 0000000..542c210 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libdisplaydoc-84cb819f9d99c54b.so differ diff --git a/examples/agent_server/target/debug/deps/libdotenvy-fe4788558d317428.rmeta b/examples/agent_server/target/debug/deps/libdotenvy-fe4788558d317428.rmeta new file mode 100644 index 0000000..b615c0f Binary files /dev/null and b/examples/agent_server/target/debug/deps/libdotenvy-fe4788558d317428.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libeither-4df26a1332d7081b.rlib b/examples/agent_server/target/debug/deps/libeither-4df26a1332d7081b.rlib new file mode 100644 index 0000000..92dfd01 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libeither-4df26a1332d7081b.rlib differ diff --git a/examples/agent_server/target/debug/deps/libeither-4df26a1332d7081b.rmeta b/examples/agent_server/target/debug/deps/libeither-4df26a1332d7081b.rmeta new file mode 100644 index 0000000..9c58204 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libeither-4df26a1332d7081b.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libequivalent-0aada0f55b2e54f9.rlib b/examples/agent_server/target/debug/deps/libequivalent-0aada0f55b2e54f9.rlib new file mode 100644 index 0000000..81a1e81 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libequivalent-0aada0f55b2e54f9.rlib differ diff --git a/examples/agent_server/target/debug/deps/libequivalent-0aada0f55b2e54f9.rmeta b/examples/agent_server/target/debug/deps/libequivalent-0aada0f55b2e54f9.rmeta new file mode 100644 index 0000000..99a948d Binary files /dev/null and b/examples/agent_server/target/debug/deps/libequivalent-0aada0f55b2e54f9.rmeta differ diff --git a/examples/agent_server/target/debug/deps/liberrno-6f35137132c41998.rmeta b/examples/agent_server/target/debug/deps/liberrno-6f35137132c41998.rmeta new file mode 100644 index 0000000..b84e720 Binary files /dev/null and b/examples/agent_server/target/debug/deps/liberrno-6f35137132c41998.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libfastrand-8613cd34c2af9727.rlib b/examples/agent_server/target/debug/deps/libfastrand-8613cd34c2af9727.rlib new file mode 100644 index 0000000..d5a72fd Binary files /dev/null and b/examples/agent_server/target/debug/deps/libfastrand-8613cd34c2af9727.rlib differ diff --git a/examples/agent_server/target/debug/deps/libfastrand-8613cd34c2af9727.rmeta b/examples/agent_server/target/debug/deps/libfastrand-8613cd34c2af9727.rmeta new file mode 100644 index 0000000..df7cf44 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libfastrand-8613cd34c2af9727.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libfind_msvc_tools-c77a833ef3d35f6d.rlib b/examples/agent_server/target/debug/deps/libfind_msvc_tools-c77a833ef3d35f6d.rlib new file mode 100644 index 0000000..95f23cf Binary files /dev/null and b/examples/agent_server/target/debug/deps/libfind_msvc_tools-c77a833ef3d35f6d.rlib differ diff --git a/examples/agent_server/target/debug/deps/libfind_msvc_tools-c77a833ef3d35f6d.rmeta b/examples/agent_server/target/debug/deps/libfind_msvc_tools-c77a833ef3d35f6d.rmeta new file mode 100644 index 0000000..414e6dd Binary files /dev/null and b/examples/agent_server/target/debug/deps/libfind_msvc_tools-c77a833ef3d35f6d.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libfixedbitset-3176b62188b708a8.rlib b/examples/agent_server/target/debug/deps/libfixedbitset-3176b62188b708a8.rlib new file mode 100644 index 0000000..87bfd22 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libfixedbitset-3176b62188b708a8.rlib differ diff --git a/examples/agent_server/target/debug/deps/libfixedbitset-3176b62188b708a8.rmeta b/examples/agent_server/target/debug/deps/libfixedbitset-3176b62188b708a8.rmeta new file mode 100644 index 0000000..fa1ce2b Binary files /dev/null and b/examples/agent_server/target/debug/deps/libfixedbitset-3176b62188b708a8.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libform_urlencoded-06177f51e9868e5c.rmeta b/examples/agent_server/target/debug/deps/libform_urlencoded-06177f51e9868e5c.rmeta new file mode 100644 index 0000000..5c9f22b Binary files /dev/null and b/examples/agent_server/target/debug/deps/libform_urlencoded-06177f51e9868e5c.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libfutures_channel-d2d2e368fa3571be.rmeta b/examples/agent_server/target/debug/deps/libfutures_channel-d2d2e368fa3571be.rmeta new file mode 100644 index 0000000..b3f827f Binary files /dev/null and b/examples/agent_server/target/debug/deps/libfutures_channel-d2d2e368fa3571be.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libfutures_core-77c8ed53374c713b.rmeta b/examples/agent_server/target/debug/deps/libfutures_core-77c8ed53374c713b.rmeta new file mode 100644 index 0000000..1261060 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libfutures_core-77c8ed53374c713b.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libfutures_macro-b5492f4e9f40dde0.so b/examples/agent_server/target/debug/deps/libfutures_macro-b5492f4e9f40dde0.so new file mode 100755 index 0000000..3d5065c Binary files /dev/null and b/examples/agent_server/target/debug/deps/libfutures_macro-b5492f4e9f40dde0.so differ diff --git a/examples/agent_server/target/debug/deps/libfutures_sink-2ec053a2d118ef45.rmeta b/examples/agent_server/target/debug/deps/libfutures_sink-2ec053a2d118ef45.rmeta new file mode 100644 index 0000000..370463a Binary files /dev/null and b/examples/agent_server/target/debug/deps/libfutures_sink-2ec053a2d118ef45.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libfutures_task-b2cf2b99319e9c19.rmeta b/examples/agent_server/target/debug/deps/libfutures_task-b2cf2b99319e9c19.rmeta new file mode 100644 index 0000000..7f6635c Binary files /dev/null and b/examples/agent_server/target/debug/deps/libfutures_task-b2cf2b99319e9c19.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libfutures_util-68bfb4a6b29747e3.rmeta b/examples/agent_server/target/debug/deps/libfutures_util-68bfb4a6b29747e3.rmeta new file mode 100644 index 0000000..9c72583 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libfutures_util-68bfb4a6b29747e3.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libgeneric_array-99fc4fee2d7bbea0.rmeta b/examples/agent_server/target/debug/deps/libgeneric_array-99fc4fee2d7bbea0.rmeta new file mode 100644 index 0000000..e8188f4 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libgeneric_array-99fc4fee2d7bbea0.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libgetrandom-dfea81b716c93c60.rmeta b/examples/agent_server/target/debug/deps/libgetrandom-dfea81b716c93c60.rmeta new file mode 100644 index 0000000..908aff3 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libgetrandom-dfea81b716c93c60.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libgetrandom-eade8d24da07ca42.rlib b/examples/agent_server/target/debug/deps/libgetrandom-eade8d24da07ca42.rlib new file mode 100644 index 0000000..4956499 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libgetrandom-eade8d24da07ca42.rlib differ diff --git a/examples/agent_server/target/debug/deps/libgetrandom-eade8d24da07ca42.rmeta b/examples/agent_server/target/debug/deps/libgetrandom-eade8d24da07ca42.rmeta new file mode 100644 index 0000000..f14a9ce Binary files /dev/null and b/examples/agent_server/target/debug/deps/libgetrandom-eade8d24da07ca42.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libhashbrown-ae4809890b874568.rlib b/examples/agent_server/target/debug/deps/libhashbrown-ae4809890b874568.rlib new file mode 100644 index 0000000..541cfb0 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libhashbrown-ae4809890b874568.rlib differ diff --git a/examples/agent_server/target/debug/deps/libhashbrown-ae4809890b874568.rmeta b/examples/agent_server/target/debug/deps/libhashbrown-ae4809890b874568.rmeta new file mode 100644 index 0000000..7bdd33e Binary files /dev/null and b/examples/agent_server/target/debug/deps/libhashbrown-ae4809890b874568.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libheck-a126a121dde0434f.rlib b/examples/agent_server/target/debug/deps/libheck-a126a121dde0434f.rlib new file mode 100644 index 0000000..bb25f74 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libheck-a126a121dde0434f.rlib differ diff --git a/examples/agent_server/target/debug/deps/libheck-a126a121dde0434f.rmeta b/examples/agent_server/target/debug/deps/libheck-a126a121dde0434f.rmeta new file mode 100644 index 0000000..8fdf2c8 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libheck-a126a121dde0434f.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libheck-c513532ecb82790f.rlib b/examples/agent_server/target/debug/deps/libheck-c513532ecb82790f.rlib new file mode 100644 index 0000000..68315ec Binary files /dev/null and b/examples/agent_server/target/debug/deps/libheck-c513532ecb82790f.rlib differ diff --git a/examples/agent_server/target/debug/deps/libheck-c513532ecb82790f.rmeta b/examples/agent_server/target/debug/deps/libheck-c513532ecb82790f.rmeta new file mode 100644 index 0000000..fa62105 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libheck-c513532ecb82790f.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libhttp-70f1741eb8ff2b4a.rmeta b/examples/agent_server/target/debug/deps/libhttp-70f1741eb8ff2b4a.rmeta new file mode 100644 index 0000000..5be7604 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libhttp-70f1741eb8ff2b4a.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libhttp_body-196ed6e5d2ed22bf.rmeta b/examples/agent_server/target/debug/deps/libhttp_body-196ed6e5d2ed22bf.rmeta new file mode 100644 index 0000000..c10513b Binary files /dev/null and b/examples/agent_server/target/debug/deps/libhttp_body-196ed6e5d2ed22bf.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libhttp_body_util-e8e827df427d3b87.rmeta b/examples/agent_server/target/debug/deps/libhttp_body_util-e8e827df427d3b87.rmeta new file mode 100644 index 0000000..97d20c4 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libhttp_body_util-e8e827df427d3b87.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libhttparse-c3142aba67620658.rmeta b/examples/agent_server/target/debug/deps/libhttparse-c3142aba67620658.rmeta new file mode 100644 index 0000000..3e0b80e Binary files /dev/null and b/examples/agent_server/target/debug/deps/libhttparse-c3142aba67620658.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libhttpdate-aa4dc02e00e21a0f.rmeta b/examples/agent_server/target/debug/deps/libhttpdate-aa4dc02e00e21a0f.rmeta new file mode 100644 index 0000000..9e71406 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libhttpdate-aa4dc02e00e21a0f.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libhyper-4f622dcb0d866d6d.rmeta b/examples/agent_server/target/debug/deps/libhyper-4f622dcb0d866d6d.rmeta new file mode 100644 index 0000000..f2f6f63 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libhyper-4f622dcb0d866d6d.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libhyper_util-35e8e7cd719c5235.rmeta b/examples/agent_server/target/debug/deps/libhyper_util-35e8e7cd719c5235.rmeta new file mode 100644 index 0000000..097fe98 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libhyper_util-35e8e7cd719c5235.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libicu_collections-cfd8fd6c2db6e5b6.rmeta b/examples/agent_server/target/debug/deps/libicu_collections-cfd8fd6c2db6e5b6.rmeta new file mode 100644 index 0000000..ac7b79d Binary files /dev/null and b/examples/agent_server/target/debug/deps/libicu_collections-cfd8fd6c2db6e5b6.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libicu_locale_core-ce41a0bce649e57e.rmeta b/examples/agent_server/target/debug/deps/libicu_locale_core-ce41a0bce649e57e.rmeta new file mode 100644 index 0000000..5b11aee Binary files /dev/null and b/examples/agent_server/target/debug/deps/libicu_locale_core-ce41a0bce649e57e.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libicu_normalizer-1e463b8e5a6b3d10.rmeta b/examples/agent_server/target/debug/deps/libicu_normalizer-1e463b8e5a6b3d10.rmeta new file mode 100644 index 0000000..158bbcd Binary files /dev/null and b/examples/agent_server/target/debug/deps/libicu_normalizer-1e463b8e5a6b3d10.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libicu_normalizer_data-d587184efb5e1f57.rmeta b/examples/agent_server/target/debug/deps/libicu_normalizer_data-d587184efb5e1f57.rmeta new file mode 100644 index 0000000..273cacf Binary files /dev/null and b/examples/agent_server/target/debug/deps/libicu_normalizer_data-d587184efb5e1f57.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libicu_properties-4fa6fe0fbc3271c3.rmeta b/examples/agent_server/target/debug/deps/libicu_properties-4fa6fe0fbc3271c3.rmeta new file mode 100644 index 0000000..0ea5048 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libicu_properties-4fa6fe0fbc3271c3.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libicu_properties_data-1d3a2241b6008d88.rmeta b/examples/agent_server/target/debug/deps/libicu_properties_data-1d3a2241b6008d88.rmeta new file mode 100644 index 0000000..c459181 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libicu_properties_data-1d3a2241b6008d88.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libicu_provider-c60991530f5e880a.rmeta b/examples/agent_server/target/debug/deps/libicu_provider-c60991530f5e880a.rmeta new file mode 100644 index 0000000..fb954e8 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libicu_provider-c60991530f5e880a.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libidna-c2925cb4c38b6b17.rmeta b/examples/agent_server/target/debug/deps/libidna-c2925cb4c38b6b17.rmeta new file mode 100644 index 0000000..99c7e73 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libidna-c2925cb4c38b6b17.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libidna_adapter-a90c5f270614d61e.rmeta b/examples/agent_server/target/debug/deps/libidna_adapter-a90c5f270614d61e.rmeta new file mode 100644 index 0000000..4f6fa08 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libidna_adapter-a90c5f270614d61e.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libindexmap-7288faeefca9e398.rlib b/examples/agent_server/target/debug/deps/libindexmap-7288faeefca9e398.rlib new file mode 100644 index 0000000..34d819e Binary files /dev/null and b/examples/agent_server/target/debug/deps/libindexmap-7288faeefca9e398.rlib differ diff --git a/examples/agent_server/target/debug/deps/libindexmap-7288faeefca9e398.rmeta b/examples/agent_server/target/debug/deps/libindexmap-7288faeefca9e398.rmeta new file mode 100644 index 0000000..a090232 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libindexmap-7288faeefca9e398.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libitertools-1c8620f6e4f3c891.rlib b/examples/agent_server/target/debug/deps/libitertools-1c8620f6e4f3c891.rlib new file mode 100644 index 0000000..f770a9f Binary files /dev/null and b/examples/agent_server/target/debug/deps/libitertools-1c8620f6e4f3c891.rlib differ diff --git a/examples/agent_server/target/debug/deps/libitertools-1c8620f6e4f3c891.rmeta b/examples/agent_server/target/debug/deps/libitertools-1c8620f6e4f3c891.rmeta new file mode 100644 index 0000000..b3a07ec Binary files /dev/null and b/examples/agent_server/target/debug/deps/libitertools-1c8620f6e4f3c891.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libitertools-f0395d884d8afb84.rlib b/examples/agent_server/target/debug/deps/libitertools-f0395d884d8afb84.rlib new file mode 100644 index 0000000..ec22a6e Binary files /dev/null and b/examples/agent_server/target/debug/deps/libitertools-f0395d884d8afb84.rlib differ diff --git a/examples/agent_server/target/debug/deps/libitertools-f0395d884d8afb84.rmeta b/examples/agent_server/target/debug/deps/libitertools-f0395d884d8afb84.rmeta new file mode 100644 index 0000000..54ee2ee Binary files /dev/null and b/examples/agent_server/target/debug/deps/libitertools-f0395d884d8afb84.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libitoa-6ddde9f8d1eacb1c.rmeta b/examples/agent_server/target/debug/deps/libitoa-6ddde9f8d1eacb1c.rmeta new file mode 100644 index 0000000..28a9d90 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libitoa-6ddde9f8d1eacb1c.rmeta differ diff --git a/examples/agent_server/target/debug/deps/liblazy_static-ccd4043b5035ad5b.rmeta b/examples/agent_server/target/debug/deps/liblazy_static-ccd4043b5035ad5b.rmeta new file mode 100644 index 0000000..b638e82 Binary files /dev/null and b/examples/agent_server/target/debug/deps/liblazy_static-ccd4043b5035ad5b.rmeta differ diff --git a/examples/agent_server/target/debug/deps/liblibc-421811f1f81d68b1.rlib b/examples/agent_server/target/debug/deps/liblibc-421811f1f81d68b1.rlib new file mode 100644 index 0000000..5b408ce Binary files /dev/null and b/examples/agent_server/target/debug/deps/liblibc-421811f1f81d68b1.rlib differ diff --git a/examples/agent_server/target/debug/deps/liblibc-421811f1f81d68b1.rmeta b/examples/agent_server/target/debug/deps/liblibc-421811f1f81d68b1.rmeta new file mode 100644 index 0000000..022e4ce Binary files /dev/null and b/examples/agent_server/target/debug/deps/liblibc-421811f1f81d68b1.rmeta differ diff --git a/examples/agent_server/target/debug/deps/liblibc-72577fe584cae775.rmeta b/examples/agent_server/target/debug/deps/liblibc-72577fe584cae775.rmeta new file mode 100644 index 0000000..e871974 Binary files /dev/null and b/examples/agent_server/target/debug/deps/liblibc-72577fe584cae775.rmeta differ diff --git a/examples/agent_server/target/debug/deps/liblinux_raw_sys-6cf3763f4a99043c.rlib b/examples/agent_server/target/debug/deps/liblinux_raw_sys-6cf3763f4a99043c.rlib new file mode 100644 index 0000000..20cfbc8 Binary files /dev/null and b/examples/agent_server/target/debug/deps/liblinux_raw_sys-6cf3763f4a99043c.rlib differ diff --git a/examples/agent_server/target/debug/deps/liblinux_raw_sys-6cf3763f4a99043c.rmeta b/examples/agent_server/target/debug/deps/liblinux_raw_sys-6cf3763f4a99043c.rmeta new file mode 100644 index 0000000..760ba20 Binary files /dev/null and b/examples/agent_server/target/debug/deps/liblinux_raw_sys-6cf3763f4a99043c.rmeta differ diff --git a/examples/agent_server/target/debug/deps/liblitemap-29b9b43b848af24e.rmeta b/examples/agent_server/target/debug/deps/liblitemap-29b9b43b848af24e.rmeta new file mode 100644 index 0000000..bb0ae9f Binary files /dev/null and b/examples/agent_server/target/debug/deps/liblitemap-29b9b43b848af24e.rmeta differ diff --git a/examples/agent_server/target/debug/deps/liblock_api-a725f8519c91f1ca.rmeta b/examples/agent_server/target/debug/deps/liblock_api-a725f8519c91f1ca.rmeta new file mode 100644 index 0000000..19a625d Binary files /dev/null and b/examples/agent_server/target/debug/deps/liblock_api-a725f8519c91f1ca.rmeta differ diff --git a/examples/agent_server/target/debug/deps/liblog-2027d81fa82bec74.rmeta b/examples/agent_server/target/debug/deps/liblog-2027d81fa82bec74.rmeta new file mode 100644 index 0000000..773da94 Binary files /dev/null and b/examples/agent_server/target/debug/deps/liblog-2027d81fa82bec74.rmeta differ diff --git a/examples/agent_server/target/debug/deps/liblog-68baa8cffa5eefa5.rlib b/examples/agent_server/target/debug/deps/liblog-68baa8cffa5eefa5.rlib new file mode 100644 index 0000000..8ef9926 Binary files /dev/null and b/examples/agent_server/target/debug/deps/liblog-68baa8cffa5eefa5.rlib differ diff --git a/examples/agent_server/target/debug/deps/liblog-68baa8cffa5eefa5.rmeta b/examples/agent_server/target/debug/deps/liblog-68baa8cffa5eefa5.rmeta new file mode 100644 index 0000000..9079909 Binary files /dev/null and b/examples/agent_server/target/debug/deps/liblog-68baa8cffa5eefa5.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libmatchers-9a37edcfb3e45198.rmeta b/examples/agent_server/target/debug/deps/libmatchers-9a37edcfb3e45198.rmeta new file mode 100644 index 0000000..9d23eff Binary files /dev/null and b/examples/agent_server/target/debug/deps/libmatchers-9a37edcfb3e45198.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libmatchit-e87d71d9f3d16f7f.rmeta b/examples/agent_server/target/debug/deps/libmatchit-e87d71d9f3d16f7f.rmeta new file mode 100644 index 0000000..6bce08b Binary files /dev/null and b/examples/agent_server/target/debug/deps/libmatchit-e87d71d9f3d16f7f.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libmemchr-a34ee5341fb0ce7e.rmeta b/examples/agent_server/target/debug/deps/libmemchr-a34ee5341fb0ce7e.rmeta new file mode 100644 index 0000000..2bf07ec Binary files /dev/null and b/examples/agent_server/target/debug/deps/libmemchr-a34ee5341fb0ce7e.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libmime-2398f3503d3d8c77.rmeta b/examples/agent_server/target/debug/deps/libmime-2398f3503d3d8c77.rmeta new file mode 100644 index 0000000..e7dbe24 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libmime-2398f3503d3d8c77.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libmio-a72c91040297509c.rmeta b/examples/agent_server/target/debug/deps/libmio-a72c91040297509c.rmeta new file mode 100644 index 0000000..aa5b6e4 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libmio-a72c91040297509c.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libmultimap-63b766be0b42012c.rlib b/examples/agent_server/target/debug/deps/libmultimap-63b766be0b42012c.rlib new file mode 100644 index 0000000..ade9d6b Binary files /dev/null and b/examples/agent_server/target/debug/deps/libmultimap-63b766be0b42012c.rlib differ diff --git a/examples/agent_server/target/debug/deps/libmultimap-63b766be0b42012c.rmeta b/examples/agent_server/target/debug/deps/libmultimap-63b766be0b42012c.rmeta new file mode 100644 index 0000000..1e62c0e Binary files /dev/null and b/examples/agent_server/target/debug/deps/libmultimap-63b766be0b42012c.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libnu_ansi_term-87fa4f1fcc6f3846.rmeta b/examples/agent_server/target/debug/deps/libnu_ansi_term-87fa4f1fcc6f3846.rmeta new file mode 100644 index 0000000..9c88ca5 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libnu_ansi_term-87fa4f1fcc6f3846.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libonce_cell-b3948b4f78ab9f74.rlib b/examples/agent_server/target/debug/deps/libonce_cell-b3948b4f78ab9f74.rlib new file mode 100644 index 0000000..2af3247 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libonce_cell-b3948b4f78ab9f74.rlib differ diff --git a/examples/agent_server/target/debug/deps/libonce_cell-b3948b4f78ab9f74.rmeta b/examples/agent_server/target/debug/deps/libonce_cell-b3948b4f78ab9f74.rmeta new file mode 100644 index 0000000..d50fcba Binary files /dev/null and b/examples/agent_server/target/debug/deps/libonce_cell-b3948b4f78ab9f74.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libonce_cell-c455c5f2ae07f315.rmeta b/examples/agent_server/target/debug/deps/libonce_cell-c455c5f2ae07f315.rmeta new file mode 100644 index 0000000..eaec601 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libonce_cell-c455c5f2ae07f315.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libparking_lot-3048f291a672a787.rmeta b/examples/agent_server/target/debug/deps/libparking_lot-3048f291a672a787.rmeta new file mode 100644 index 0000000..3400ccf Binary files /dev/null and b/examples/agent_server/target/debug/deps/libparking_lot-3048f291a672a787.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libparking_lot_core-315b61289a7d8da2.rmeta b/examples/agent_server/target/debug/deps/libparking_lot_core-315b61289a7d8da2.rmeta new file mode 100644 index 0000000..fa79fbe Binary files /dev/null and b/examples/agent_server/target/debug/deps/libparking_lot_core-315b61289a7d8da2.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libpbjson-9fefd2802d9615fa.rmeta b/examples/agent_server/target/debug/deps/libpbjson-9fefd2802d9615fa.rmeta new file mode 100644 index 0000000..9d3ac90 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libpbjson-9fefd2802d9615fa.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libpbjson_build-a5201bf0a53d43b5.rlib b/examples/agent_server/target/debug/deps/libpbjson_build-a5201bf0a53d43b5.rlib new file mode 100644 index 0000000..42441ef Binary files /dev/null and b/examples/agent_server/target/debug/deps/libpbjson_build-a5201bf0a53d43b5.rlib differ diff --git a/examples/agent_server/target/debug/deps/libpbjson_build-a5201bf0a53d43b5.rmeta b/examples/agent_server/target/debug/deps/libpbjson_build-a5201bf0a53d43b5.rmeta new file mode 100644 index 0000000..f8b4807 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libpbjson_build-a5201bf0a53d43b5.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libpercent_encoding-fdfc253f68ee3774.rmeta b/examples/agent_server/target/debug/deps/libpercent_encoding-fdfc253f68ee3774.rmeta new file mode 100644 index 0000000..bcc4b81 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libpercent_encoding-fdfc253f68ee3774.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libpetgraph-9a69bd5e024ad0e2.rlib b/examples/agent_server/target/debug/deps/libpetgraph-9a69bd5e024ad0e2.rlib new file mode 100644 index 0000000..bae3497 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libpetgraph-9a69bd5e024ad0e2.rlib differ diff --git a/examples/agent_server/target/debug/deps/libpetgraph-9a69bd5e024ad0e2.rmeta b/examples/agent_server/target/debug/deps/libpetgraph-9a69bd5e024ad0e2.rmeta new file mode 100644 index 0000000..f505476 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libpetgraph-9a69bd5e024ad0e2.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libpin_project_lite-e9d4ca73b9a6a34c.rmeta b/examples/agent_server/target/debug/deps/libpin_project_lite-e9d4ca73b9a6a34c.rmeta new file mode 100644 index 0000000..4462213 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libpin_project_lite-e9d4ca73b9a6a34c.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libpotential_utf-715037261d1e1bef.rmeta b/examples/agent_server/target/debug/deps/libpotential_utf-715037261d1e1bef.rmeta new file mode 100644 index 0000000..322d3da Binary files /dev/null and b/examples/agent_server/target/debug/deps/libpotential_utf-715037261d1e1bef.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libppv_lite86-5575b5f1b4abe208.rmeta b/examples/agent_server/target/debug/deps/libppv_lite86-5575b5f1b4abe208.rmeta new file mode 100644 index 0000000..23c6ac7 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libppv_lite86-5575b5f1b4abe208.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libprettyplease-91f00f811302e360.rlib b/examples/agent_server/target/debug/deps/libprettyplease-91f00f811302e360.rlib new file mode 100644 index 0000000..97972dd Binary files /dev/null and b/examples/agent_server/target/debug/deps/libprettyplease-91f00f811302e360.rlib differ diff --git a/examples/agent_server/target/debug/deps/libprettyplease-91f00f811302e360.rmeta b/examples/agent_server/target/debug/deps/libprettyplease-91f00f811302e360.rmeta new file mode 100644 index 0000000..e5ad25e Binary files /dev/null and b/examples/agent_server/target/debug/deps/libprettyplease-91f00f811302e360.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libproc_macro2-16bdc4cfed7c29c3.rlib b/examples/agent_server/target/debug/deps/libproc_macro2-16bdc4cfed7c29c3.rlib new file mode 100644 index 0000000..d7b97ee Binary files /dev/null and b/examples/agent_server/target/debug/deps/libproc_macro2-16bdc4cfed7c29c3.rlib differ diff --git a/examples/agent_server/target/debug/deps/libproc_macro2-16bdc4cfed7c29c3.rmeta b/examples/agent_server/target/debug/deps/libproc_macro2-16bdc4cfed7c29c3.rmeta new file mode 100644 index 0000000..00ca4fe Binary files /dev/null and b/examples/agent_server/target/debug/deps/libproc_macro2-16bdc4cfed7c29c3.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libprost-03584005866e1df0.rlib b/examples/agent_server/target/debug/deps/libprost-03584005866e1df0.rlib new file mode 100644 index 0000000..c086bee Binary files /dev/null and b/examples/agent_server/target/debug/deps/libprost-03584005866e1df0.rlib differ diff --git a/examples/agent_server/target/debug/deps/libprost-03584005866e1df0.rmeta b/examples/agent_server/target/debug/deps/libprost-03584005866e1df0.rmeta new file mode 100644 index 0000000..d8a1e42 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libprost-03584005866e1df0.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libprost-68904d0e6ab51728.rmeta b/examples/agent_server/target/debug/deps/libprost-68904d0e6ab51728.rmeta new file mode 100644 index 0000000..e87ecfc Binary files /dev/null and b/examples/agent_server/target/debug/deps/libprost-68904d0e6ab51728.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libprost_build-7ab0b7681c194edc.rlib b/examples/agent_server/target/debug/deps/libprost_build-7ab0b7681c194edc.rlib new file mode 100644 index 0000000..8d36fa5 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libprost_build-7ab0b7681c194edc.rlib differ diff --git a/examples/agent_server/target/debug/deps/libprost_build-7ab0b7681c194edc.rmeta b/examples/agent_server/target/debug/deps/libprost_build-7ab0b7681c194edc.rmeta new file mode 100644 index 0000000..38f806e Binary files /dev/null and b/examples/agent_server/target/debug/deps/libprost_build-7ab0b7681c194edc.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libprost_derive-b546e6bd398a34d2.so b/examples/agent_server/target/debug/deps/libprost_derive-b546e6bd398a34d2.so new file mode 100755 index 0000000..bba7925 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libprost_derive-b546e6bd398a34d2.so differ diff --git a/examples/agent_server/target/debug/deps/libprost_types-90edbfdaeac7f16a.rlib b/examples/agent_server/target/debug/deps/libprost_types-90edbfdaeac7f16a.rlib new file mode 100644 index 0000000..17d0234 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libprost_types-90edbfdaeac7f16a.rlib differ diff --git a/examples/agent_server/target/debug/deps/libprost_types-90edbfdaeac7f16a.rmeta b/examples/agent_server/target/debug/deps/libprost_types-90edbfdaeac7f16a.rmeta new file mode 100644 index 0000000..180cecf Binary files /dev/null and b/examples/agent_server/target/debug/deps/libprost_types-90edbfdaeac7f16a.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libquote-e96822e57ba4e32c.rlib b/examples/agent_server/target/debug/deps/libquote-e96822e57ba4e32c.rlib new file mode 100644 index 0000000..9ecf933 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libquote-e96822e57ba4e32c.rlib differ diff --git a/examples/agent_server/target/debug/deps/libquote-e96822e57ba4e32c.rmeta b/examples/agent_server/target/debug/deps/libquote-e96822e57ba4e32c.rmeta new file mode 100644 index 0000000..c6c9484 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libquote-e96822e57ba4e32c.rmeta differ diff --git a/examples/agent_server/target/debug/deps/librand-38aec8bdc7aa18cf.rmeta b/examples/agent_server/target/debug/deps/librand-38aec8bdc7aa18cf.rmeta new file mode 100644 index 0000000..d37ec71 Binary files /dev/null and b/examples/agent_server/target/debug/deps/librand-38aec8bdc7aa18cf.rmeta differ diff --git a/examples/agent_server/target/debug/deps/librand_chacha-41c62a271b0b02ee.rmeta b/examples/agent_server/target/debug/deps/librand_chacha-41c62a271b0b02ee.rmeta new file mode 100644 index 0000000..920bb40 Binary files /dev/null and b/examples/agent_server/target/debug/deps/librand_chacha-41c62a271b0b02ee.rmeta differ diff --git a/examples/agent_server/target/debug/deps/librand_core-ecc3d53c9aa0ff81.rmeta b/examples/agent_server/target/debug/deps/librand_core-ecc3d53c9aa0ff81.rmeta new file mode 100644 index 0000000..3fc0aec Binary files /dev/null and b/examples/agent_server/target/debug/deps/librand_core-ecc3d53c9aa0ff81.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libregex-20a220d85c43336c.rlib b/examples/agent_server/target/debug/deps/libregex-20a220d85c43336c.rlib new file mode 100644 index 0000000..26048fc Binary files /dev/null and b/examples/agent_server/target/debug/deps/libregex-20a220d85c43336c.rlib differ diff --git a/examples/agent_server/target/debug/deps/libregex-20a220d85c43336c.rmeta b/examples/agent_server/target/debug/deps/libregex-20a220d85c43336c.rmeta new file mode 100644 index 0000000..58ef1bd Binary files /dev/null and b/examples/agent_server/target/debug/deps/libregex-20a220d85c43336c.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libregex_automata-93cb0ba6abb0ad72.rlib b/examples/agent_server/target/debug/deps/libregex_automata-93cb0ba6abb0ad72.rlib new file mode 100644 index 0000000..d1174de Binary files /dev/null and b/examples/agent_server/target/debug/deps/libregex_automata-93cb0ba6abb0ad72.rlib differ diff --git a/examples/agent_server/target/debug/deps/libregex_automata-93cb0ba6abb0ad72.rmeta b/examples/agent_server/target/debug/deps/libregex_automata-93cb0ba6abb0ad72.rmeta new file mode 100644 index 0000000..0b24a23 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libregex_automata-93cb0ba6abb0ad72.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libregex_automata-cdbc55204d852f13.rmeta b/examples/agent_server/target/debug/deps/libregex_automata-cdbc55204d852f13.rmeta new file mode 100644 index 0000000..513a479 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libregex_automata-cdbc55204d852f13.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libregex_syntax-84d0a9d008d8d4a0.rlib b/examples/agent_server/target/debug/deps/libregex_syntax-84d0a9d008d8d4a0.rlib new file mode 100644 index 0000000..faf96c4 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libregex_syntax-84d0a9d008d8d4a0.rlib differ diff --git a/examples/agent_server/target/debug/deps/libregex_syntax-84d0a9d008d8d4a0.rmeta b/examples/agent_server/target/debug/deps/libregex_syntax-84d0a9d008d8d4a0.rmeta new file mode 100644 index 0000000..d5ab7ee Binary files /dev/null and b/examples/agent_server/target/debug/deps/libregex_syntax-84d0a9d008d8d4a0.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libregex_syntax-d33dbdaf9239f0f0.rmeta b/examples/agent_server/target/debug/deps/libregex_syntax-d33dbdaf9239f0f0.rmeta new file mode 100644 index 0000000..49fc1e4 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libregex_syntax-d33dbdaf9239f0f0.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libring-cb927418caf7d5b2.rmeta b/examples/agent_server/target/debug/deps/libring-cb927418caf7d5b2.rmeta new file mode 100644 index 0000000..a85c94f Binary files /dev/null and b/examples/agent_server/target/debug/deps/libring-cb927418caf7d5b2.rmeta differ diff --git a/examples/agent_server/target/debug/deps/librustix-3c830ab66266c07c.rlib b/examples/agent_server/target/debug/deps/librustix-3c830ab66266c07c.rlib new file mode 100644 index 0000000..8e300ab Binary files /dev/null and b/examples/agent_server/target/debug/deps/librustix-3c830ab66266c07c.rlib differ diff --git a/examples/agent_server/target/debug/deps/librustix-3c830ab66266c07c.rmeta b/examples/agent_server/target/debug/deps/librustix-3c830ab66266c07c.rmeta new file mode 100644 index 0000000..ceda84c Binary files /dev/null and b/examples/agent_server/target/debug/deps/librustix-3c830ab66266c07c.rmeta differ diff --git a/examples/agent_server/target/debug/deps/librustls-92851e6ae256ebdb.rmeta b/examples/agent_server/target/debug/deps/librustls-92851e6ae256ebdb.rmeta new file mode 100644 index 0000000..3fc1746 Binary files /dev/null and b/examples/agent_server/target/debug/deps/librustls-92851e6ae256ebdb.rmeta differ diff --git a/examples/agent_server/target/debug/deps/librustls_pki_types-bfead8a00baeb2a5.rmeta b/examples/agent_server/target/debug/deps/librustls_pki_types-bfead8a00baeb2a5.rmeta new file mode 100644 index 0000000..aa306ea Binary files /dev/null and b/examples/agent_server/target/debug/deps/librustls_pki_types-bfead8a00baeb2a5.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libryu-1f4bd1732b57412d.rmeta b/examples/agent_server/target/debug/deps/libryu-1f4bd1732b57412d.rmeta new file mode 100644 index 0000000..8a427b9 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libryu-1f4bd1732b57412d.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libscopeguard-9231b86801b00f36.rmeta b/examples/agent_server/target/debug/deps/libscopeguard-9231b86801b00f36.rmeta new file mode 100644 index 0000000..00867fa Binary files /dev/null and b/examples/agent_server/target/debug/deps/libscopeguard-9231b86801b00f36.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libserde-2b916ae5b6dcb334.rmeta b/examples/agent_server/target/debug/deps/libserde-2b916ae5b6dcb334.rmeta new file mode 100644 index 0000000..ff0d5da Binary files /dev/null and b/examples/agent_server/target/debug/deps/libserde-2b916ae5b6dcb334.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libserde_core-bbbf2ec4bd875055.rmeta b/examples/agent_server/target/debug/deps/libserde_core-bbbf2ec4bd875055.rmeta new file mode 100644 index 0000000..2b3355c Binary files /dev/null and b/examples/agent_server/target/debug/deps/libserde_core-bbbf2ec4bd875055.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libserde_derive-237a5c301882bb62.so b/examples/agent_server/target/debug/deps/libserde_derive-237a5c301882bb62.so new file mode 100755 index 0000000..d1993a7 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libserde_derive-237a5c301882bb62.so differ diff --git a/examples/agent_server/target/debug/deps/libserde_json-e1451d259db2ba72.rmeta b/examples/agent_server/target/debug/deps/libserde_json-e1451d259db2ba72.rmeta new file mode 100644 index 0000000..295e06b Binary files /dev/null and b/examples/agent_server/target/debug/deps/libserde_json-e1451d259db2ba72.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libserde_path_to_error-f063d3c09cee7598.rmeta b/examples/agent_server/target/debug/deps/libserde_path_to_error-f063d3c09cee7598.rmeta new file mode 100644 index 0000000..bfb8b0d Binary files /dev/null and b/examples/agent_server/target/debug/deps/libserde_path_to_error-f063d3c09cee7598.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libserde_urlencoded-33aacb420464b1dd.rmeta b/examples/agent_server/target/debug/deps/libserde_urlencoded-33aacb420464b1dd.rmeta new file mode 100644 index 0000000..c5b2e18 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libserde_urlencoded-33aacb420464b1dd.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libsha1-6da5225bc108ed93.rmeta b/examples/agent_server/target/debug/deps/libsha1-6da5225bc108ed93.rmeta new file mode 100644 index 0000000..dbab363 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libsha1-6da5225bc108ed93.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libsharded_slab-47d20ae27c42e343.rmeta b/examples/agent_server/target/debug/deps/libsharded_slab-47d20ae27c42e343.rmeta new file mode 100644 index 0000000..abb3678 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libsharded_slab-47d20ae27c42e343.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libshlex-7b06ff0077903996.rlib b/examples/agent_server/target/debug/deps/libshlex-7b06ff0077903996.rlib new file mode 100644 index 0000000..282380a Binary files /dev/null and b/examples/agent_server/target/debug/deps/libshlex-7b06ff0077903996.rlib differ diff --git a/examples/agent_server/target/debug/deps/libshlex-7b06ff0077903996.rmeta b/examples/agent_server/target/debug/deps/libshlex-7b06ff0077903996.rmeta new file mode 100644 index 0000000..9a8e65c Binary files /dev/null and b/examples/agent_server/target/debug/deps/libshlex-7b06ff0077903996.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libsignal_hook_registry-ca61398a9ca98351.rmeta b/examples/agent_server/target/debug/deps/libsignal_hook_registry-ca61398a9ca98351.rmeta new file mode 100644 index 0000000..1af2b5b Binary files /dev/null and b/examples/agent_server/target/debug/deps/libsignal_hook_registry-ca61398a9ca98351.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libslab-5ad27fdb4344ece1.rmeta b/examples/agent_server/target/debug/deps/libslab-5ad27fdb4344ece1.rmeta new file mode 100644 index 0000000..447d9e6 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libslab-5ad27fdb4344ece1.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libsmallvec-0f6a4b8729e45700.rmeta b/examples/agent_server/target/debug/deps/libsmallvec-0f6a4b8729e45700.rmeta new file mode 100644 index 0000000..8360770 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libsmallvec-0f6a4b8729e45700.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libsocket2-f13486a30239ac18.rmeta b/examples/agent_server/target/debug/deps/libsocket2-f13486a30239ac18.rmeta new file mode 100644 index 0000000..ff87e82 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libsocket2-f13486a30239ac18.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libstable_deref_trait-22158042bda71a4d.rmeta b/examples/agent_server/target/debug/deps/libstable_deref_trait-22158042bda71a4d.rmeta new file mode 100644 index 0000000..ec8561e Binary files /dev/null and b/examples/agent_server/target/debug/deps/libstable_deref_trait-22158042bda71a4d.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libsubtle-684c7bd4fb8861f7.rmeta b/examples/agent_server/target/debug/deps/libsubtle-684c7bd4fb8861f7.rmeta new file mode 100644 index 0000000..7e48431 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libsubtle-684c7bd4fb8861f7.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libsyn-4e45116c709dc0d0.rlib b/examples/agent_server/target/debug/deps/libsyn-4e45116c709dc0d0.rlib new file mode 100644 index 0000000..5ea0b9b Binary files /dev/null and b/examples/agent_server/target/debug/deps/libsyn-4e45116c709dc0d0.rlib differ diff --git a/examples/agent_server/target/debug/deps/libsyn-4e45116c709dc0d0.rmeta b/examples/agent_server/target/debug/deps/libsyn-4e45116c709dc0d0.rmeta new file mode 100644 index 0000000..291ff76 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libsyn-4e45116c709dc0d0.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libsyn-641c960597529d4f.rlib b/examples/agent_server/target/debug/deps/libsyn-641c960597529d4f.rlib new file mode 100644 index 0000000..5726fcd Binary files /dev/null and b/examples/agent_server/target/debug/deps/libsyn-641c960597529d4f.rlib differ diff --git a/examples/agent_server/target/debug/deps/libsyn-641c960597529d4f.rmeta b/examples/agent_server/target/debug/deps/libsyn-641c960597529d4f.rmeta new file mode 100644 index 0000000..e9582ea Binary files /dev/null and b/examples/agent_server/target/debug/deps/libsyn-641c960597529d4f.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libsync_wrapper-0c3d1a23b3d6f802.rmeta b/examples/agent_server/target/debug/deps/libsync_wrapper-0c3d1a23b3d6f802.rmeta new file mode 100644 index 0000000..c3c7f07 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libsync_wrapper-0c3d1a23b3d6f802.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libsynstructure-388c3c6b693bfc93.rlib b/examples/agent_server/target/debug/deps/libsynstructure-388c3c6b693bfc93.rlib new file mode 100644 index 0000000..7707ff1 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libsynstructure-388c3c6b693bfc93.rlib differ diff --git a/examples/agent_server/target/debug/deps/libsynstructure-388c3c6b693bfc93.rmeta b/examples/agent_server/target/debug/deps/libsynstructure-388c3c6b693bfc93.rmeta new file mode 100644 index 0000000..0c3e85a Binary files /dev/null and b/examples/agent_server/target/debug/deps/libsynstructure-388c3c6b693bfc93.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libtempfile-3acfc3754cdd2eb8.rlib b/examples/agent_server/target/debug/deps/libtempfile-3acfc3754cdd2eb8.rlib new file mode 100644 index 0000000..d05dce1 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtempfile-3acfc3754cdd2eb8.rlib differ diff --git a/examples/agent_server/target/debug/deps/libtempfile-3acfc3754cdd2eb8.rmeta b/examples/agent_server/target/debug/deps/libtempfile-3acfc3754cdd2eb8.rmeta new file mode 100644 index 0000000..f18ea3f Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtempfile-3acfc3754cdd2eb8.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libthiserror-0ffc10629a337cf8.rmeta b/examples/agent_server/target/debug/deps/libthiserror-0ffc10629a337cf8.rmeta new file mode 100644 index 0000000..3d58814 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libthiserror-0ffc10629a337cf8.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libthiserror-b814df2309f8fad4.rmeta b/examples/agent_server/target/debug/deps/libthiserror-b814df2309f8fad4.rmeta new file mode 100644 index 0000000..1452004 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libthiserror-b814df2309f8fad4.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libthiserror_impl-6a19198988d98108.so b/examples/agent_server/target/debug/deps/libthiserror_impl-6a19198988d98108.so new file mode 100755 index 0000000..e0fe6a3 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libthiserror_impl-6a19198988d98108.so differ diff --git a/examples/agent_server/target/debug/deps/libthiserror_impl-f63d760665632888.so b/examples/agent_server/target/debug/deps/libthiserror_impl-f63d760665632888.so new file mode 100755 index 0000000..1163285 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libthiserror_impl-f63d760665632888.so differ diff --git a/examples/agent_server/target/debug/deps/libthread_local-55b9ef038294e1f7.rmeta b/examples/agent_server/target/debug/deps/libthread_local-55b9ef038294e1f7.rmeta new file mode 100644 index 0000000..c0a4968 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libthread_local-55b9ef038294e1f7.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libtinystr-af9dc0146ac638b2.rmeta b/examples/agent_server/target/debug/deps/libtinystr-af9dc0146ac638b2.rmeta new file mode 100644 index 0000000..ecfc5bb Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtinystr-af9dc0146ac638b2.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libtokio-1633ed0d6bbdec8f.rmeta b/examples/agent_server/target/debug/deps/libtokio-1633ed0d6bbdec8f.rmeta new file mode 100644 index 0000000..c65de91 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtokio-1633ed0d6bbdec8f.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libtokio_macros-41de4fbeebd28ef7.so b/examples/agent_server/target/debug/deps/libtokio_macros-41de4fbeebd28ef7.so new file mode 100755 index 0000000..0babf65 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtokio_macros-41de4fbeebd28ef7.so differ diff --git a/examples/agent_server/target/debug/deps/libtokio_rustls-34de4ca72ecfdb02.rmeta b/examples/agent_server/target/debug/deps/libtokio_rustls-34de4ca72ecfdb02.rmeta new file mode 100644 index 0000000..70f1177 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtokio_rustls-34de4ca72ecfdb02.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libtokio_tungstenite-51f69eaa954daa2f.rmeta b/examples/agent_server/target/debug/deps/libtokio_tungstenite-51f69eaa954daa2f.rmeta new file mode 100644 index 0000000..07d4fde Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtokio_tungstenite-51f69eaa954daa2f.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libtower-126d242f05b34f56.rmeta b/examples/agent_server/target/debug/deps/libtower-126d242f05b34f56.rmeta new file mode 100644 index 0000000..756cff1 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtower-126d242f05b34f56.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libtower_http-5e81b246364aa994.rmeta b/examples/agent_server/target/debug/deps/libtower_http-5e81b246364aa994.rmeta new file mode 100644 index 0000000..8817097 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtower_http-5e81b246364aa994.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libtower_layer-cbfd986b2c761aee.rmeta b/examples/agent_server/target/debug/deps/libtower_layer-cbfd986b2c761aee.rmeta new file mode 100644 index 0000000..d9366c2 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtower_layer-cbfd986b2c761aee.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libtower_service-eace9da83de8d2ed.rmeta b/examples/agent_server/target/debug/deps/libtower_service-eace9da83de8d2ed.rmeta new file mode 100644 index 0000000..c244f28 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtower_service-eace9da83de8d2ed.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libtracing-624ee079969c6ffb.rmeta b/examples/agent_server/target/debug/deps/libtracing-624ee079969c6ffb.rmeta new file mode 100644 index 0000000..b131d82 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtracing-624ee079969c6ffb.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libtracing_attributes-dd89f51f7f268213.so b/examples/agent_server/target/debug/deps/libtracing_attributes-dd89f51f7f268213.so new file mode 100755 index 0000000..18e5ba0 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtracing_attributes-dd89f51f7f268213.so differ diff --git a/examples/agent_server/target/debug/deps/libtracing_core-86839c816b2e0c2e.rmeta b/examples/agent_server/target/debug/deps/libtracing_core-86839c816b2e0c2e.rmeta new file mode 100644 index 0000000..a950f7e Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtracing_core-86839c816b2e0c2e.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libtracing_log-4e4514a0c3f7a13a.rmeta b/examples/agent_server/target/debug/deps/libtracing_log-4e4514a0c3f7a13a.rmeta new file mode 100644 index 0000000..3f362b2 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtracing_log-4e4514a0c3f7a13a.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libtracing_subscriber-9a3203c357d69d99.rmeta b/examples/agent_server/target/debug/deps/libtracing_subscriber-9a3203c357d69d99.rmeta new file mode 100644 index 0000000..85cf61a Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtracing_subscriber-9a3203c357d69d99.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libtungstenite-91f3723d4e936b7b.rmeta b/examples/agent_server/target/debug/deps/libtungstenite-91f3723d4e936b7b.rmeta new file mode 100644 index 0000000..fde3ccb Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtungstenite-91f3723d4e936b7b.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libtypenum-0bb98beaf5b40e6d.rmeta b/examples/agent_server/target/debug/deps/libtypenum-0bb98beaf5b40e6d.rmeta new file mode 100644 index 0000000..5b42c5e Binary files /dev/null and b/examples/agent_server/target/debug/deps/libtypenum-0bb98beaf5b40e6d.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libunicode_ident-8443eb632a3fbe4c.rlib b/examples/agent_server/target/debug/deps/libunicode_ident-8443eb632a3fbe4c.rlib new file mode 100644 index 0000000..78a135e Binary files /dev/null and b/examples/agent_server/target/debug/deps/libunicode_ident-8443eb632a3fbe4c.rlib differ diff --git a/examples/agent_server/target/debug/deps/libunicode_ident-8443eb632a3fbe4c.rmeta b/examples/agent_server/target/debug/deps/libunicode_ident-8443eb632a3fbe4c.rmeta new file mode 100644 index 0000000..a0cdb42 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libunicode_ident-8443eb632a3fbe4c.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libuntrusted-19fd2289d6420e0d.rmeta b/examples/agent_server/target/debug/deps/libuntrusted-19fd2289d6420e0d.rmeta new file mode 100644 index 0000000..f99469e Binary files /dev/null and b/examples/agent_server/target/debug/deps/libuntrusted-19fd2289d6420e0d.rmeta differ diff --git a/examples/agent_server/target/debug/deps/liburl-5422e6f5e81cbd38.rmeta b/examples/agent_server/target/debug/deps/liburl-5422e6f5e81cbd38.rmeta new file mode 100644 index 0000000..859aed1 Binary files /dev/null and b/examples/agent_server/target/debug/deps/liburl-5422e6f5e81cbd38.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libutf8-0973d5089af50192.rmeta b/examples/agent_server/target/debug/deps/libutf8-0973d5089af50192.rmeta new file mode 100644 index 0000000..a40ddae Binary files /dev/null and b/examples/agent_server/target/debug/deps/libutf8-0973d5089af50192.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libutf8_iter-7da21bedc099d769.rmeta b/examples/agent_server/target/debug/deps/libutf8_iter-7da21bedc099d769.rmeta new file mode 100644 index 0000000..a8c2d3a Binary files /dev/null and b/examples/agent_server/target/debug/deps/libutf8_iter-7da21bedc099d769.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libversion_check-48d66f356588878b.rlib b/examples/agent_server/target/debug/deps/libversion_check-48d66f356588878b.rlib new file mode 100644 index 0000000..85d92ee Binary files /dev/null and b/examples/agent_server/target/debug/deps/libversion_check-48d66f356588878b.rlib differ diff --git a/examples/agent_server/target/debug/deps/libversion_check-48d66f356588878b.rmeta b/examples/agent_server/target/debug/deps/libversion_check-48d66f356588878b.rmeta new file mode 100644 index 0000000..2566e96 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libversion_check-48d66f356588878b.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libwebpki-52cdf20fac36380a.rmeta b/examples/agent_server/target/debug/deps/libwebpki-52cdf20fac36380a.rmeta new file mode 100644 index 0000000..582a8a3 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libwebpki-52cdf20fac36380a.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libwebpki_roots-6759103a522ed320.rmeta b/examples/agent_server/target/debug/deps/libwebpki_roots-6759103a522ed320.rmeta new file mode 100644 index 0000000..ad42a62 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libwebpki_roots-6759103a522ed320.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libwebpki_roots-b79135aa405a6d6f.rmeta b/examples/agent_server/target/debug/deps/libwebpki_roots-b79135aa405a6d6f.rmeta new file mode 100644 index 0000000..072f184 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libwebpki_roots-b79135aa405a6d6f.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libwriteable-d27a59526004cf7e.rmeta b/examples/agent_server/target/debug/deps/libwriteable-d27a59526004cf7e.rmeta new file mode 100644 index 0000000..ce04126 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libwriteable-d27a59526004cf7e.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libyoke-a23da5055a12e7d2.rmeta b/examples/agent_server/target/debug/deps/libyoke-a23da5055a12e7d2.rmeta new file mode 100644 index 0000000..5b7a792 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libyoke-a23da5055a12e7d2.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libyoke_derive-50144caf197ce3d3.so b/examples/agent_server/target/debug/deps/libyoke_derive-50144caf197ce3d3.so new file mode 100755 index 0000000..ffb3bf8 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libyoke_derive-50144caf197ce3d3.so differ diff --git a/examples/agent_server/target/debug/deps/libzerocopy-b770e178a71ee8b7.rmeta b/examples/agent_server/target/debug/deps/libzerocopy-b770e178a71ee8b7.rmeta new file mode 100644 index 0000000..2294071 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libzerocopy-b770e178a71ee8b7.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libzerofrom-77e989a3aae75ab1.rmeta b/examples/agent_server/target/debug/deps/libzerofrom-77e989a3aae75ab1.rmeta new file mode 100644 index 0000000..db61fb3 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libzerofrom-77e989a3aae75ab1.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libzerofrom_derive-3a4d23d5b36d2ca9.so b/examples/agent_server/target/debug/deps/libzerofrom_derive-3a4d23d5b36d2ca9.so new file mode 100755 index 0000000..f71ff9a Binary files /dev/null and b/examples/agent_server/target/debug/deps/libzerofrom_derive-3a4d23d5b36d2ca9.so differ diff --git a/examples/agent_server/target/debug/deps/libzeroize-b69ca5a7f93c9720.rmeta b/examples/agent_server/target/debug/deps/libzeroize-b69ca5a7f93c9720.rmeta new file mode 100644 index 0000000..4d43261 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libzeroize-b69ca5a7f93c9720.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libzeroize_derive-d3fa77acb6994567.so b/examples/agent_server/target/debug/deps/libzeroize_derive-d3fa77acb6994567.so new file mode 100755 index 0000000..807a742 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libzeroize_derive-d3fa77acb6994567.so differ diff --git a/examples/agent_server/target/debug/deps/libzerotrie-e366599f5babf6f1.rmeta b/examples/agent_server/target/debug/deps/libzerotrie-e366599f5babf6f1.rmeta new file mode 100644 index 0000000..f164467 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libzerotrie-e366599f5babf6f1.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libzerovec-460e8f612daf2d2e.rmeta b/examples/agent_server/target/debug/deps/libzerovec-460e8f612daf2d2e.rmeta new file mode 100644 index 0000000..0eece18 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libzerovec-460e8f612daf2d2e.rmeta differ diff --git a/examples/agent_server/target/debug/deps/libzerovec_derive-1b28ea032c489d8a.so b/examples/agent_server/target/debug/deps/libzerovec_derive-1b28ea032c489d8a.so new file mode 100755 index 0000000..49a5e19 Binary files /dev/null and b/examples/agent_server/target/debug/deps/libzerovec_derive-1b28ea032c489d8a.so differ diff --git a/examples/agent_server/target/debug/deps/libzmij-09764c09118bc5c9.rmeta b/examples/agent_server/target/debug/deps/libzmij-09764c09118bc5c9.rmeta new file mode 100644 index 0000000..1ea559a Binary files /dev/null and b/examples/agent_server/target/debug/deps/libzmij-09764c09118bc5c9.rmeta differ diff --git a/examples/agent_server/target/debug/deps/linux_raw_sys-6cf3763f4a99043c.d b/examples/agent_server/target/debug/deps/linux_raw_sys-6cf3763f4a99043c.d new file mode 100644 index 0000000..ba80646 --- /dev/null +++ b/examples/agent_server/target/debug/deps/linux_raw_sys-6cf3763f4a99043c.d @@ -0,0 +1,12 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/linux_raw_sys-6cf3763f4a99043c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/elf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/x86_64/auxvec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/x86_64/errno.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/x86_64/general.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/x86_64/ioctl.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/liblinux_raw_sys-6cf3763f4a99043c.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/elf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/x86_64/auxvec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/x86_64/errno.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/x86_64/general.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/x86_64/ioctl.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/liblinux_raw_sys-6cf3763f4a99043c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/elf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/x86_64/auxvec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/x86_64/errno.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/x86_64/general.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/x86_64/ioctl.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/elf.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/x86_64/auxvec.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/x86_64/errno.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/x86_64/general.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/linux-raw-sys-0.12.1/src/x86_64/ioctl.rs: diff --git a/examples/agent_server/target/debug/deps/litemap-29b9b43b848af24e.d b/examples/agent_server/target/debug/deps/litemap-29b9b43b848af24e.d new file mode 100644 index 0000000..e67c9b5 --- /dev/null +++ b/examples/agent_server/target/debug/deps/litemap-29b9b43b848af24e.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/litemap-29b9b43b848af24e.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/slice_impl.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/liblitemap-29b9b43b848af24e.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/slice_impl.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/slice_impl.rs: diff --git a/examples/agent_server/target/debug/deps/lock_api-a725f8519c91f1ca.d b/examples/agent_server/target/debug/deps/lock_api-a725f8519c91f1ca.d new file mode 100644 index 0000000..08cb485 --- /dev/null +++ b/examples/agent_server/target/debug/deps/lock_api-a725f8519c91f1ca.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/lock_api-a725f8519c91f1ca.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/liblock_api-a725f8519c91f1ca.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs: diff --git a/examples/agent_server/target/debug/deps/log-2027d81fa82bec74.d b/examples/agent_server/target/debug/deps/log-2027d81fa82bec74.d new file mode 100644 index 0000000..dca14e2 --- /dev/null +++ b/examples/agent_server/target/debug/deps/log-2027d81fa82bec74.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/log-2027d81fa82bec74.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/serde.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/__private_api.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/liblog-2027d81fa82bec74.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/serde.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/__private_api.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/serde.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/__private_api.rs: diff --git a/examples/agent_server/target/debug/deps/log-68baa8cffa5eefa5.d b/examples/agent_server/target/debug/deps/log-68baa8cffa5eefa5.d new file mode 100644 index 0000000..520a0d8 --- /dev/null +++ b/examples/agent_server/target/debug/deps/log-68baa8cffa5eefa5.d @@ -0,0 +1,10 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/log-68baa8cffa5eefa5.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/serde.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/__private_api.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/liblog-68baa8cffa5eefa5.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/serde.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/__private_api.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/liblog-68baa8cffa5eefa5.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/serde.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/__private_api.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/serde.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.33/src/__private_api.rs: diff --git a/examples/agent_server/target/debug/deps/matchers-9a37edcfb3e45198.d b/examples/agent_server/target/debug/deps/matchers-9a37edcfb3e45198.d new file mode 100644 index 0000000..d03754d --- /dev/null +++ b/examples/agent_server/target/debug/deps/matchers-9a37edcfb3e45198.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/matchers-9a37edcfb3e45198.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchers-0.2.0/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libmatchers-9a37edcfb3e45198.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchers-0.2.0/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchers-0.2.0/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/matchit-e87d71d9f3d16f7f.d b/examples/agent_server/target/debug/deps/matchit-e87d71d9f3d16f7f.d new file mode 100644 index 0000000..f52b98f --- /dev/null +++ b/examples/agent_server/target/debug/deps/matchit-e87d71d9f3d16f7f.d @@ -0,0 +1,10 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/matchit-e87d71d9f3d16f7f.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/escape.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/params.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/router.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/tree.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libmatchit-e87d71d9f3d16f7f.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/escape.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/params.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/router.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/tree.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/escape.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/params.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/router.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/matchit-0.8.4/src/tree.rs: diff --git a/examples/agent_server/target/debug/deps/memchr-a34ee5341fb0ce7e.d b/examples/agent_server/target/debug/deps/memchr-a34ee5341fb0ce7e.d new file mode 100644 index 0000000..8dcf3da --- /dev/null +++ b/examples/agent_server/target/debug/deps/memchr-a34ee5341fb0ce7e.d @@ -0,0 +1,31 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/memchr-a34ee5341fb0ce7e.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/packedpair/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/packedpair/default_rank.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/rabinkarp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/shiftor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/twoway.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/packedpair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/packedpair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/packedpair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/cow.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memmem/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memmem/searcher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/vector.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libmemchr-a34ee5341fb0ce7e.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/packedpair/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/packedpair/default_rank.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/rabinkarp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/shiftor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/twoway.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/packedpair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/packedpair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/packedpair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/cow.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memmem/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memmem/searcher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/vector.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/packedpair/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/packedpair/default_rank.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/rabinkarp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/shiftor.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/twoway.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/packedpair.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/packedpair.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/packedpair.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/cow.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memmem/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memmem/searcher.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/vector.rs: diff --git a/examples/agent_server/target/debug/deps/mime-2398f3503d3d8c77.d b/examples/agent_server/target/debug/deps/mime-2398f3503d3d8c77.d new file mode 100644 index 0000000..11990ad --- /dev/null +++ b/examples/agent_server/target/debug/deps/mime-2398f3503d3d8c77.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/mime-2398f3503d3d8c77.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/parse.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libmime-2398f3503d3d8c77.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/parse.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mime-0.3.17/src/parse.rs: diff --git a/examples/agent_server/target/debug/deps/mio-a72c91040297509c.d b/examples/agent_server/target/debug/deps/mio-a72c91040297509c.d new file mode 100644 index 0000000..cfdbcb7 --- /dev/null +++ b/examples/agent_server/target/debug/deps/mio-a72c91040297509c.d @@ -0,0 +1,38 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/mio-a72c91040297509c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/interest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/poll.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/waker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/event/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/event/event.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/event/events.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/event/source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/selector/epoll.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/waker/eventfd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/sourcefd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/pipe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/selector/stateless_io_source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/net.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/tcp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/udp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/uds/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/uds/datagram.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/uds/listener.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/uds/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/io_source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/tcp/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/tcp/listener.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/tcp/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/udp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/uds/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/uds/datagram.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/uds/listener.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/uds/stream.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libmio-a72c91040297509c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/interest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/poll.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/waker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/event/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/event/event.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/event/events.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/event/source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/selector/epoll.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/waker/eventfd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/sourcefd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/pipe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/selector/stateless_io_source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/net.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/tcp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/udp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/uds/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/uds/datagram.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/uds/listener.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/uds/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/io_source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/tcp/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/tcp/listener.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/tcp/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/udp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/uds/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/uds/datagram.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/uds/listener.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/uds/stream.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/interest.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/poll.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/token.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/waker.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/event/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/event/event.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/event/events.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/event/source.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/selector/epoll.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/waker/eventfd.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/sourcefd.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/pipe.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/selector/stateless_io_source.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/net.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/tcp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/udp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/uds/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/uds/datagram.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/uds/listener.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/sys/unix/uds/stream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/io_source.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/tcp/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/tcp/listener.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/tcp/stream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/udp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/uds/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/uds/datagram.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/uds/listener.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/mio-1.2.2/src/net/uds/stream.rs: diff --git a/examples/agent_server/target/debug/deps/multimap-63b766be0b42012c.d b/examples/agent_server/target/debug/deps/multimap-63b766be0b42012c.d new file mode 100644 index 0000000..5a2a104 --- /dev/null +++ b/examples/agent_server/target/debug/deps/multimap-63b766be0b42012c.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/multimap-63b766be0b42012c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/multimap-0.10.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/multimap-0.10.1/src/entry.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libmultimap-63b766be0b42012c.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/multimap-0.10.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/multimap-0.10.1/src/entry.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libmultimap-63b766be0b42012c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/multimap-0.10.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/multimap-0.10.1/src/entry.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/multimap-0.10.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/multimap-0.10.1/src/entry.rs: diff --git a/examples/agent_server/target/debug/deps/nu_ansi_term-87fa4f1fcc6f3846.d b/examples/agent_server/target/debug/deps/nu_ansi_term-87fa4f1fcc6f3846.d new file mode 100644 index 0000000..0239f37 --- /dev/null +++ b/examples/agent_server/target/debug/deps/nu_ansi_term-87fa4f1fcc6f3846.d @@ -0,0 +1,14 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/nu_ansi_term-87fa4f1fcc6f3846.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/ansi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/difference.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/gradient.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/rgb.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libnu_ansi_term-87fa4f1fcc6f3846.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/ansi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/difference.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/gradient.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/rgb.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/ansi.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/style.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/difference.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/display.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/write.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/debug.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/gradient.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/nu-ansi-term-0.50.3/src/rgb.rs: diff --git a/examples/agent_server/target/debug/deps/once_cell-b3948b4f78ab9f74.d b/examples/agent_server/target/debug/deps/once_cell-b3948b4f78ab9f74.d new file mode 100644 index 0000000..1d89548 --- /dev/null +++ b/examples/agent_server/target/debug/deps/once_cell-b3948b4f78ab9f74.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/once_cell-b3948b4f78ab9f74.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libonce_cell-b3948b4f78ab9f74.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libonce_cell-b3948b4f78ab9f74.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs: diff --git a/examples/agent_server/target/debug/deps/once_cell-c455c5f2ae07f315.d b/examples/agent_server/target/debug/deps/once_cell-c455c5f2ae07f315.d new file mode 100644 index 0000000..d9bbe67 --- /dev/null +++ b/examples/agent_server/target/debug/deps/once_cell-c455c5f2ae07f315.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/once_cell-c455c5f2ae07f315.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libonce_cell-c455c5f2ae07f315.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs: diff --git a/examples/agent_server/target/debug/deps/parking_lot-3048f291a672a787.d b/examples/agent_server/target/debug/deps/parking_lot-3048f291a672a787.d new file mode 100644 index 0000000..9ac1a30 --- /dev/null +++ b/examples/agent_server/target/debug/deps/parking_lot-3048f291a672a787.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/parking_lot-3048f291a672a787.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libparking_lot-3048f291a672a787.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs: diff --git a/examples/agent_server/target/debug/deps/parking_lot_core-315b61289a7d8da2.d b/examples/agent_server/target/debug/deps/parking_lot_core-315b61289a7d8da2.d new file mode 100644 index 0000000..1814f13 --- /dev/null +++ b/examples/agent_server/target/debug/deps/parking_lot_core-315b61289a7d8da2.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/parking_lot_core-315b61289a7d8da2.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libparking_lot_core-315b61289a7d8da2.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs: diff --git a/examples/agent_server/target/debug/deps/pbjson-9fefd2802d9615fa.d b/examples/agent_server/target/debug/deps/pbjson-9fefd2802d9615fa.d new file mode 100644 index 0000000..9294408 --- /dev/null +++ b/examples/agent_server/target/debug/deps/pbjson-9fefd2802d9615fa.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/pbjson-9fefd2802d9615fa.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-0.6.0/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libpbjson-9fefd2802d9615fa.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-0.6.0/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-0.6.0/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/pbjson_build-a5201bf0a53d43b5.d b/examples/agent_server/target/debug/deps/pbjson_build-a5201bf0a53d43b5.d new file mode 100644 index 0000000..0fb0e8d --- /dev/null +++ b/examples/agent_server/target/debug/deps/pbjson_build-a5201bf0a53d43b5.d @@ -0,0 +1,14 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/pbjson_build-a5201bf0a53d43b5.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/descriptor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/escape.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/generator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/generator/enumeration.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/generator/message.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/message.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/resolver.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libpbjson_build-a5201bf0a53d43b5.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/descriptor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/escape.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/generator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/generator/enumeration.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/generator/message.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/message.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/resolver.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libpbjson_build-a5201bf0a53d43b5.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/descriptor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/escape.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/generator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/generator/enumeration.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/generator/message.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/message.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/resolver.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/descriptor.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/escape.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/generator.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/generator/enumeration.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/generator/message.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/message.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pbjson-build-0.6.2/src/resolver.rs: diff --git a/examples/agent_server/target/debug/deps/percent_encoding-fdfc253f68ee3774.d b/examples/agent_server/target/debug/deps/percent_encoding-fdfc253f68ee3774.d new file mode 100644 index 0000000..b5cad14 --- /dev/null +++ b/examples/agent_server/target/debug/deps/percent_encoding-fdfc253f68ee3774.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/percent_encoding-fdfc253f68ee3774.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/ascii_set.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libpercent_encoding-fdfc253f68ee3774.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/ascii_set.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/ascii_set.rs: diff --git a/examples/agent_server/target/debug/deps/petgraph-9a69bd5e024ad0e2.d b/examples/agent_server/target/debug/deps/petgraph-9a69bd5e024ad0e2.d new file mode 100644 index 0000000..ab75f35 --- /dev/null +++ b/examples/agent_server/target/debug/deps/petgraph-9a69bd5e024ad0e2.d @@ -0,0 +1,43 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/petgraph-9a69bd5e024ad0e2.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/scored.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/dfsvisit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/traversal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/filter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/reversed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/adj.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/astar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/bellman_ford.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dijkstra.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dominators.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/feedback_arc_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/floyd_warshall.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/ford_fulkerson.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/isomorphism.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/k_shortest_path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/matching.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/min_spanning_tree.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/page_rank.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/simple_paths.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/tred.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/csr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/dot.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/frozen.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/traits_graph.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/unionfind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/operator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/prelude.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libpetgraph-9a69bd5e024ad0e2.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/scored.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/dfsvisit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/traversal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/filter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/reversed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/adj.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/astar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/bellman_ford.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dijkstra.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dominators.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/feedback_arc_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/floyd_warshall.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/ford_fulkerson.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/isomorphism.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/k_shortest_path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/matching.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/min_spanning_tree.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/page_rank.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/simple_paths.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/tred.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/csr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/dot.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/frozen.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/traits_graph.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/unionfind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/operator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/prelude.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libpetgraph-9a69bd5e024ad0e2.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/scored.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/dfsvisit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/traversal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/filter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/reversed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/adj.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/astar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/bellman_ford.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dijkstra.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dominators.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/feedback_arc_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/floyd_warshall.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/ford_fulkerson.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/isomorphism.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/k_shortest_path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/matching.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/min_spanning_tree.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/page_rank.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/simple_paths.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/tred.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/csr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/dot.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/frozen.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/traits_graph.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/unionfind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/operator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/prelude.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/scored.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/dfsvisit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/traversal.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/filter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/reversed.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/data.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/adj.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/astar.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/bellman_ford.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dijkstra.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dominators.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/feedback_arc_set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/floyd_warshall.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/ford_fulkerson.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/isomorphism.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/k_shortest_path.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/matching.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/min_spanning_tree.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/page_rank.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/simple_paths.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/tred.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/csr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/dot.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/frozen.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_format.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/traits_graph.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/unionfind.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/operator.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/prelude.rs: diff --git a/examples/agent_server/target/debug/deps/pin_project_lite-e9d4ca73b9a6a34c.d b/examples/agent_server/target/debug/deps/pin_project_lite-e9d4ca73b9a6a34c.d new file mode 100644 index 0000000..3c767d0 --- /dev/null +++ b/examples/agent_server/target/debug/deps/pin_project_lite-e9d4ca73b9a6a34c.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/pin_project_lite-e9d4ca73b9a6a34c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.17/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libpin_project_lite-e9d4ca73b9a6a34c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.17/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.17/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/potential_utf-715037261d1e1bef.d b/examples/agent_server/target/debug/deps/potential_utf-715037261d1e1bef.d new file mode 100644 index 0000000..fc9e71a --- /dev/null +++ b/examples/agent_server/target/debug/deps/potential_utf-715037261d1e1bef.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/potential_utf-715037261d1e1bef.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/uchar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/ustr.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libpotential_utf-715037261d1e1bef.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/uchar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/ustr.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/uchar.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/ustr.rs: diff --git a/examples/agent_server/target/debug/deps/ppv_lite86-5575b5f1b4abe208.d b/examples/agent_server/target/debug/deps/ppv_lite86-5575b5f1b4abe208.d new file mode 100644 index 0000000..1fdefeb --- /dev/null +++ b/examples/agent_server/target/debug/deps/ppv_lite86-5575b5f1b4abe208.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/ppv_lite86-5575b5f1b4abe208.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/soft.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/x86_64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/x86_64/sse2.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libppv_lite86-5575b5f1b4abe208.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/soft.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/x86_64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/x86_64/sse2.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/soft.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/types.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/x86_64/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ppv-lite86-0.2.21/src/x86_64/sse2.rs: diff --git a/examples/agent_server/target/debug/deps/prettyplease-91f00f811302e360.d b/examples/agent_server/target/debug/deps/prettyplease-91f00f811302e360.d new file mode 100644 index 0000000..0f37498 --- /dev/null +++ b/examples/agent_server/target/debug/deps/prettyplease-91f00f811302e360.d @@ -0,0 +1,28 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/prettyplease-91f00f811302e360.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/algorithm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/convenience.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/ring.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/ty.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libprettyplease-91f00f811302e360.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/algorithm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/convenience.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/ring.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/ty.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libprettyplease-91f00f811302e360.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/algorithm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/convenience.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/ring.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/ty.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/algorithm.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/classify.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/convenience.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/data.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/expr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/file.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/fixup.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/generics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/item.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lifetime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/mac.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/pat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/path.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/precedence.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/ring.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/stmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/token.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/ty.rs: diff --git a/examples/agent_server/target/debug/deps/proc_macro2-16bdc4cfed7c29c3.d b/examples/agent_server/target/debug/deps/proc_macro2-16bdc4cfed7c29c3.d new file mode 100644 index 0000000..3e126ee --- /dev/null +++ b/examples/agent_server/target/debug/deps/proc_macro2-16bdc4cfed7c29c3.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/proc_macro2-16bdc4cfed7c29c3.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/marker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_location.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/rcvec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/detection.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/extra.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/wrapper.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libproc_macro2-16bdc4cfed7c29c3.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/marker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_location.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/rcvec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/detection.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/extra.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/wrapper.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libproc_macro2-16bdc4cfed7c29c3.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/marker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_location.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/rcvec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/detection.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/extra.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/wrapper.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/marker.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_file.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_location.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/rcvec.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/detection.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/fallback.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/extra.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/wrapper.rs: diff --git a/examples/agent_server/target/debug/deps/prost-03584005866e1df0.d b/examples/agent_server/target/debug/deps/prost-03584005866e1df0.d new file mode 100644 index 0000000..140786c --- /dev/null +++ b/examples/agent_server/target/debug/deps/prost-03584005866e1df0.d @@ -0,0 +1,13 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/prost-03584005866e1df0.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/message.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/encoding.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/../README.md + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libprost-03584005866e1df0.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/message.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/encoding.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/../README.md + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libprost-03584005866e1df0.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/message.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/encoding.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/../README.md + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/message.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/name.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/types.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/encoding.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/../README.md: diff --git a/examples/agent_server/target/debug/deps/prost-68904d0e6ab51728.d b/examples/agent_server/target/debug/deps/prost-68904d0e6ab51728.d new file mode 100644 index 0000000..8e330eb --- /dev/null +++ b/examples/agent_server/target/debug/deps/prost-68904d0e6ab51728.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/prost-68904d0e6ab51728.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/message.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/encoding.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/../README.md + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libprost-68904d0e6ab51728.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/message.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/encoding.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/../README.md + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/message.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/name.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/types.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/encoding.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-0.12.6/src/../README.md: diff --git a/examples/agent_server/target/debug/deps/prost_build-7ab0b7681c194edc.d b/examples/agent_server/target/debug/deps/prost_build-7ab0b7681c194edc.d new file mode 100644 index 0000000..1a0e7ce --- /dev/null +++ b/examples/agent_server/target/debug/deps/prost_build-7ab0b7681c194edc.d @@ -0,0 +1,18 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/prost_build-7ab0b7681c194edc.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/collections.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/code_generator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/code_generator/c_escaping.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/code_generator/syntax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/extern_paths.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/ident.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/message_graph.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/config.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/module.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libprost_build-7ab0b7681c194edc.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/collections.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/code_generator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/code_generator/c_escaping.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/code_generator/syntax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/extern_paths.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/ident.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/message_graph.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/config.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/module.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libprost_build-7ab0b7681c194edc.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/collections.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/code_generator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/code_generator/c_escaping.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/code_generator/syntax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/extern_paths.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/ident.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/message_graph.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/config.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/module.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/ast.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/collections.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/code_generator.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/code_generator/c_escaping.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/code_generator/syntax.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/extern_paths.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/ident.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/message_graph.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/path.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/config.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-build-0.12.6/src/module.rs: diff --git a/examples/agent_server/target/debug/deps/prost_derive-b546e6bd398a34d2.d b/examples/agent_server/target/debug/deps/prost_derive-b546e6bd398a34d2.d new file mode 100644 index 0000000..62219ce --- /dev/null +++ b/examples/agent_server/target/debug/deps/prost_derive-b546e6bd398a34d2.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/prost_derive-b546e6bd398a34d2.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/group.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/message.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/oneof.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/scalar.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libprost_derive-b546e6bd398a34d2.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/group.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/message.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/oneof.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/scalar.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/group.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/message.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/oneof.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-derive-0.12.6/src/field/scalar.rs: diff --git a/examples/agent_server/target/debug/deps/prost_types-90edbfdaeac7f16a.d b/examples/agent_server/target/debug/deps/prost_types-90edbfdaeac7f16a.d new file mode 100644 index 0000000..128327a --- /dev/null +++ b/examples/agent_server/target/debug/deps/prost_types-90edbfdaeac7f16a.d @@ -0,0 +1,14 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/prost_types-90edbfdaeac7f16a.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/datetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/duration.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/timestamp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/type_url.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/compiler.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/protobuf.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libprost_types-90edbfdaeac7f16a.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/datetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/duration.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/timestamp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/type_url.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/compiler.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/protobuf.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libprost_types-90edbfdaeac7f16a.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/datetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/duration.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/timestamp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/type_url.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/compiler.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/protobuf.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/datetime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/any.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/duration.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/timestamp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/type_url.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/compiler.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prost-types-0.12.6/src/protobuf.rs: diff --git a/examples/agent_server/target/debug/deps/quote-e96822e57ba4e32c.d b/examples/agent_server/target/debug/deps/quote-e96822e57ba4e32c.d new file mode 100644 index 0000000..fcb8b5b --- /dev/null +++ b/examples/agent_server/target/debug/deps/quote-e96822e57ba4e32c.d @@ -0,0 +1,13 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/quote-e96822e57ba4e32c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ident_fragment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/to_tokens.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/spanned.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libquote-e96822e57ba4e32c.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ident_fragment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/to_tokens.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/spanned.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libquote-e96822e57ba4e32c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ident_fragment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/to_tokens.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/spanned.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/format.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ident_fragment.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/to_tokens.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/runtime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/spanned.rs: diff --git a/examples/agent_server/target/debug/deps/rand-38aec8bdc7aa18cf.d b/examples/agent_server/target/debug/deps/rand-38aec8bdc7aa18cf.d new file mode 100644 index 0000000..4336153 --- /dev/null +++ b/examples/agent_server/target/debug/deps/rand-38aec8bdc7aa18cf.d @@ -0,0 +1,27 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/rand-38aec8bdc7aa18cf.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/bernoulli.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/distribution.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/float.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/integer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/other.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/weighted_index.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/uniform.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/weighted.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/prelude.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rng.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/adapter/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/adapter/read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/adapter/reseeding.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/mock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/std.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/seq/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/seq/index.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/librand-38aec8bdc7aa18cf.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/bernoulli.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/distribution.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/float.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/integer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/other.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/weighted_index.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/uniform.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/weighted.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/prelude.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rng.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/adapter/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/adapter/read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/adapter/reseeding.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/mock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/std.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/seq/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/seq/index.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/bernoulli.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/distribution.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/float.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/integer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/other.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/slice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/weighted_index.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/uniform.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/distributions/weighted.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/prelude.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rng.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/adapter/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/adapter/read.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/adapter/reseeding.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/mock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/std.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/rngs/thread.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/seq/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand-0.8.7/src/seq/index.rs: diff --git a/examples/agent_server/target/debug/deps/rand_chacha-41c62a271b0b02ee.d b/examples/agent_server/target/debug/deps/rand_chacha-41c62a271b0b02ee.d new file mode 100644 index 0000000..dc993f5 --- /dev/null +++ b/examples/agent_server/target/debug/deps/rand_chacha-41c62a271b0b02ee.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/rand_chacha-41c62a271b0b02ee.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/chacha.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/guts.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/librand_chacha-41c62a271b0b02ee.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/chacha.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/guts.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/chacha.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_chacha-0.3.1/src/guts.rs: diff --git a/examples/agent_server/target/debug/deps/rand_core-ecc3d53c9aa0ff81.d b/examples/agent_server/target/debug/deps/rand_core-ecc3d53c9aa0ff81.d new file mode 100644 index 0000000..c7ee03b --- /dev/null +++ b/examples/agent_server/target/debug/deps/rand_core-ecc3d53c9aa0ff81.d @@ -0,0 +1,10 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/rand_core-ecc3d53c9aa0ff81.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/block.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/le.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/os.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/librand_core-ecc3d53c9aa0ff81.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/block.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/le.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/os.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/block.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/le.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rand_core-0.6.4/src/os.rs: diff --git a/examples/agent_server/target/debug/deps/regex-20a220d85c43336c.d b/examples/agent_server/target/debug/deps/regex-20a220d85c43336c.d new file mode 100644 index 0000000..360c6ee --- /dev/null +++ b/examples/agent_server/target/debug/deps/regex-20a220d85c43336c.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/regex-20a220d85c43336c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/builders.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/find_byte.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/string.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libregex-20a220d85c43336c.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/builders.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/find_byte.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/string.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libregex-20a220d85c43336c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/builders.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/find_byte.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/string.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/builders.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/bytes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/find_byte.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/bytes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/string.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/bytes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/string.rs: diff --git a/examples/agent_server/target/debug/deps/regex_automata-93cb0ba6abb0ad72.d b/examples/agent_server/target/debug/deps/regex_automata-93cb0ba6abb0ad72.d new file mode 100644 index 0000000..aee3cae --- /dev/null +++ b/examples/agent_server/target/debug/deps/regex_automata-93cb0ba6abb0ad72.d @@ -0,0 +1,53 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/regex_automata-93cb0ba6abb0ad72.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/literal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/prefix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/regex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/reverse_inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/reverse_suffix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/strategy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/wrappers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/compiler.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/literal_trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/nfa.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/pikevm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/range_trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/alphabet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/captures.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/escape.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/interpolate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/lazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/look.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/pool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/aho_corasick.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/byteset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memmem.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/teddy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/start.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/syntax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/wire.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/empty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/search.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/sparse_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/unicode_data/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/utf8.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libregex_automata-93cb0ba6abb0ad72.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/literal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/prefix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/regex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/reverse_inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/reverse_suffix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/strategy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/wrappers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/compiler.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/literal_trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/nfa.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/pikevm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/range_trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/alphabet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/captures.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/escape.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/interpolate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/lazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/look.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/pool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/aho_corasick.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/byteset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memmem.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/teddy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/start.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/syntax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/wire.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/empty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/search.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/sparse_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/unicode_data/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/utf8.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libregex_automata-93cb0ba6abb0ad72.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/literal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/prefix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/regex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/reverse_inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/reverse_suffix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/strategy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/wrappers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/compiler.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/literal_trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/nfa.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/pikevm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/range_trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/alphabet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/captures.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/escape.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/interpolate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/lazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/look.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/pool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/aho_corasick.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/byteset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memmem.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/teddy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/start.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/syntax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/wire.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/empty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/search.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/sparse_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/unicode_data/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/utf8.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/literal.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/prefix.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/regex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/reverse_inner.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/reverse_suffix.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/strategy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/wrappers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/builder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/compiler.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/literal_trie.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/nfa.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/pikevm.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/range_trie.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/alphabet.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/captures.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/escape.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/interpolate.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/lazy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/look.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/pool.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/aho_corasick.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/byteset.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memmem.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/teddy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/primitives.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/start.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/syntax.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/wire.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/empty.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/int.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/search.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/sparse_set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/unicode_data/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/utf8.rs: diff --git a/examples/agent_server/target/debug/deps/regex_automata-cdbc55204d852f13.d b/examples/agent_server/target/debug/deps/regex_automata-cdbc55204d852f13.d new file mode 100644 index 0000000..2843a56 --- /dev/null +++ b/examples/agent_server/target/debug/deps/regex_automata-cdbc55204d852f13.d @@ -0,0 +1,55 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/regex_automata-cdbc55204d852f13.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/dense.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/regex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/sparse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/accel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/automaton.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/determinize.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/minimize.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/remapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/search.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/special.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/start.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/compiler.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/literal_trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/nfa.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/range_trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/alphabet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/captures.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/escape.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/interpolate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/lazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/look.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/pool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/aho_corasick.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/byteset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memmem.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/teddy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/start.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/syntax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/wire.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/determinize/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/determinize/state.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/empty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/search.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/sparse_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/unicode_data/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/utf8.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libregex_automata-cdbc55204d852f13.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/dense.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/regex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/sparse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/accel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/automaton.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/determinize.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/minimize.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/remapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/search.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/special.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/start.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/compiler.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/literal_trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/nfa.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/range_trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/alphabet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/captures.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/escape.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/interpolate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/lazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/look.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/pool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/aho_corasick.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/byteset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memmem.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/teddy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/start.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/syntax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/wire.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/determinize/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/determinize/state.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/empty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/search.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/sparse_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/unicode_data/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/utf8.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/dense.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/regex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/sparse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/accel.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/automaton.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/determinize.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/minimize.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/remapper.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/search.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/special.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/start.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/builder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/compiler.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/literal_trie.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/nfa.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/range_trie.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/alphabet.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/captures.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/escape.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/interpolate.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/lazy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/look.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/pool.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/aho_corasick.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/byteset.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memmem.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/teddy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/primitives.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/start.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/syntax.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/wire.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/determinize/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/determinize/state.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/empty.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/int.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/search.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/sparse_set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/unicode_data/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/utf8.rs: diff --git a/examples/agent_server/target/debug/deps/regex_syntax-84d0a9d008d8d4a0.d b/examples/agent_server/target/debug/deps/regex_syntax-84d0a9d008d8d4a0.d new file mode 100644 index 0000000..7c07eca --- /dev/null +++ b/examples/agent_server/target/debug/deps/regex_syntax-84d0a9d008d8d4a0.d @@ -0,0 +1,28 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/regex_syntax-84d0a9d008d8d4a0.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/visitor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/interval.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/literal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/translate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/visitor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/rank.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_bool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_names.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_values.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/utf8.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libregex_syntax-84d0a9d008d8d4a0.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/visitor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/interval.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/literal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/translate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/visitor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/rank.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_bool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_names.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_values.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/utf8.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libregex_syntax-84d0a9d008d8d4a0.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/visitor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/interval.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/literal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/translate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/visitor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/rank.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_bool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_names.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_values.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/utf8.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/print.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/visitor.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/debug.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/either.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/interval.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/literal.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/print.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/translate.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/visitor.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/parser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/rank.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_bool.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_names.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_values.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/utf8.rs: diff --git a/examples/agent_server/target/debug/deps/regex_syntax-d33dbdaf9239f0f0.d b/examples/agent_server/target/debug/deps/regex_syntax-d33dbdaf9239f0f0.d new file mode 100644 index 0000000..7594672 --- /dev/null +++ b/examples/agent_server/target/debug/deps/regex_syntax-d33dbdaf9239f0f0.d @@ -0,0 +1,23 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/regex_syntax-d33dbdaf9239f0f0.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/visitor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/interval.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/literal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/translate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/visitor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/rank.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/utf8.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libregex_syntax-d33dbdaf9239f0f0.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/visitor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/interval.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/literal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/translate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/visitor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/rank.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/utf8.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/print.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/visitor.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/debug.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/either.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/interval.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/literal.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/print.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/translate.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/visitor.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/parser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/rank.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/utf8.rs: diff --git a/examples/agent_server/target/debug/deps/ring-cb927418caf7d5b2.d b/examples/agent_server/target/debug/deps/ring-cb927418caf7d5b2.d new file mode 100644 index 0000000..8c323ae --- /dev/null +++ b/examples/agent_server/target/debug/deps/ring-cb927418caf7d5b2.d @@ -0,0 +1,157 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/ring-cb927418caf7d5b2.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/prefixed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/testutil.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bssl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/cold_error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/array_flat_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/array_split_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/cstr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/sliceutil.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/leading_zeros_skipped.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/once_cell/race.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/notsend.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/slice/as_chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/slice/as_chunks_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/unwrap_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes/ffi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes/bs.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes/hw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes/vp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes_gcm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes_gcm/aarch64.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes_gcm/aeshwclmulmovbe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes_gcm/vaesclmulavx2.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/algorithm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/chacha.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/chacha20_poly1305/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/chacha20_poly1305_openssh.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/ffi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/clmul.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/clmulavxmovbe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/neon.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/vclmulavx2.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/less_safe_key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/nonce.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/opening_key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/overlapping/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/overlapping/array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/overlapping/base.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/overlapping/partial_block.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/poly1305.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/poly1305/ffi_arm_neon.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/poly1305/ffi_fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/quic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/sealing_key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/shift.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/unbound_key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/agreement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/ffi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/constant.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/bigint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/bigint/boxed_limbs.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/bigint/modulus.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/bigint/modulusvalue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/bigint/private_exponent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/inout.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs/aarch64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs/x86_64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs/x86_64/mont.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs512/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs512/storage.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/montgomery.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/n0.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bb/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bb/boolmask.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bb/leaky.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bb/word.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/c.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/deprecated_constant_time.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/io.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/io/der.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/io/writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/io/der_writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/io/positive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/cpu.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/dynstate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha1.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha2/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha2/ffi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha2/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha2/sha2_32.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha2/sha2_64.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/ed25519.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/ed25519/signing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/ed25519/verification.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/x25519.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/ops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/scalar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/keys.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/curve.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdh.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa/digest_scalar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa/signing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa/verification.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ops/elem.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ops/p256.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ops/p384.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/private_key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/public_key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/error/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/error/input_too_long.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/error/into_unspecified.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/error/key_rejected.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/error/unspecified.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/hkdf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/hmac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/limb.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/pbkdf2.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/pkcs8.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/padding.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/padding/pkcs1.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/padding/pss.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/keypair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/keypair_components.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/public_exponent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/public_key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/public_key_components.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/public_modulus.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/verification.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/signature.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/deprecated_test.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/chacha/ffi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/chacha20_poly1305/integrated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/cpu/intel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/ed25519/ed25519_pkcs8_v2_template.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa/ecPublicKey_p256_pkcs8_v1_template.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa/ecPublicKey_p384_pkcs8_v1_template.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/../data/alg-rsa-encryption.der + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libring-cb927418caf7d5b2.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/prefixed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/testutil.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bssl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/cold_error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/array_flat_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/array_split_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/cstr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/sliceutil.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/leading_zeros_skipped.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/once_cell/race.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/notsend.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/slice/as_chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/slice/as_chunks_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/unwrap_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes/ffi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes/bs.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes/hw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes/vp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes_gcm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes_gcm/aarch64.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes_gcm/aeshwclmulmovbe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes_gcm/vaesclmulavx2.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/algorithm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/chacha.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/chacha20_poly1305/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/chacha20_poly1305_openssh.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/ffi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/clmul.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/clmulavxmovbe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/neon.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/vclmulavx2.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/less_safe_key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/nonce.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/opening_key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/overlapping/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/overlapping/array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/overlapping/base.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/overlapping/partial_block.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/poly1305.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/poly1305/ffi_arm_neon.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/poly1305/ffi_fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/quic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/sealing_key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/shift.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/unbound_key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/agreement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/ffi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/constant.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/bigint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/bigint/boxed_limbs.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/bigint/modulus.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/bigint/modulusvalue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/bigint/private_exponent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/inout.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs/aarch64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs/x86_64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs/x86_64/mont.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs512/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs512/storage.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/montgomery.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/n0.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bb/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bb/boolmask.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bb/leaky.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bb/word.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/c.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/deprecated_constant_time.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/io.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/io/der.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/io/writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/io/der_writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/io/positive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/cpu.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/dynstate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha1.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha2/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha2/ffi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha2/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha2/sha2_32.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha2/sha2_64.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/ed25519.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/ed25519/signing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/ed25519/verification.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/x25519.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/ops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/scalar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/keys.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/curve.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdh.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa/digest_scalar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa/signing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa/verification.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ops/elem.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ops/p256.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ops/p384.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/private_key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/public_key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/error/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/error/input_too_long.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/error/into_unspecified.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/error/key_rejected.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/error/unspecified.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/hkdf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/hmac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/limb.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/pbkdf2.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/pkcs8.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/padding.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/padding/pkcs1.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/padding/pss.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/keypair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/keypair_components.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/public_exponent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/public_key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/public_key_components.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/public_modulus.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/verification.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/signature.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/deprecated_test.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/chacha/ffi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/chacha20_poly1305/integrated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/cpu/intel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/ed25519/ed25519_pkcs8_v2_template.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa/ecPublicKey_p256_pkcs8_v1_template.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa/ecPublicKey_p384_pkcs8_v1_template.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/../data/alg-rsa-encryption.der + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/debug.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/prefixed.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/testutil.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bssl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/cold_error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/array_flat_map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/array_split_map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/cstr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/sliceutil.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/leading_zeros_skipped.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/once_cell/race.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/notsend.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/ptr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/slice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/slice/as_chunks.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/slice/as_chunks_mut.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/polyfill/unwrap_const.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes/ffi.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes/bs.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes/fallback.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes/hw.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes/vp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes_gcm.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes_gcm/aarch64.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes_gcm/aeshwclmulmovbe.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/aes_gcm/vaesclmulavx2.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/algorithm.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/chacha.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/chacha20_poly1305/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/chacha20_poly1305_openssh.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/ffi.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/clmul.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/clmulavxmovbe.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/fallback.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/neon.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/gcm/vclmulavx2.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/less_safe_key.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/nonce.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/opening_key.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/overlapping/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/overlapping/array.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/overlapping/base.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/overlapping/partial_block.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/poly1305.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/poly1305/ffi_arm_neon.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/poly1305/ffi_fallback.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/quic.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/sealing_key.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/shift.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/unbound_key.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/agreement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/ffi.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/constant.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/bigint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/bigint/boxed_limbs.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/bigint/modulus.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/bigint/modulusvalue.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/bigint/private_exponent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/inout.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs/aarch64/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs/x86_64/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs/x86_64/mont.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs512/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/limbs512/storage.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/montgomery.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/arithmetic/n0.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bits.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bb/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bb/boolmask.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bb/leaky.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/bb/word.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/c.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/deprecated_constant_time.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/io.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/io/der.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/io/writer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/io/der_writer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/io/positive.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/cpu.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/dynstate.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha1.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha2/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha2/ffi.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha2/fallback.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha2/sha2_32.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/digest/sha2/sha2_64.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/ed25519.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/ed25519/signing.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/ed25519/verification.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/x25519.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/ops.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/scalar.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/keys.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/curve.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdh.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa/digest_scalar.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa/signing.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa/verification.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ops.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ops/elem.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ops/p256.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ops/p384.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/private_key.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/public_key.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/error/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/error/input_too_long.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/error/into_unspecified.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/error/key_rejected.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/error/unspecified.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/hkdf.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/hmac.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/limb.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/pbkdf2.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/pkcs8.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rand.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/padding.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/padding/pkcs1.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/padding/pss.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/keypair.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/keypair_components.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/public_exponent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/public_key.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/public_key_components.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/public_modulus.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/verification.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/signature.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/deprecated_test.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/chacha/ffi.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/aead/chacha20_poly1305/integrated.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/cpu/intel.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/curve25519/ed25519/ed25519_pkcs8_v2_template.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa/ecPublicKey_p256_pkcs8_v1_template.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/ec/suite_b/ecdsa/ecPublicKey_p384_pkcs8_v1_template.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ring-0.17.14/src/rsa/../data/alg-rsa-encryption.der: + +# env-dep:CARGO_PKG_NAME=ring +# env-dep:CARGO_PKG_VERSION_MAJOR=0 +# env-dep:CARGO_PKG_VERSION_MINOR=17 +# env-dep:CARGO_PKG_VERSION_PATCH=14 +# env-dep:CARGO_PKG_VERSION_PRE= diff --git a/examples/agent_server/target/debug/deps/rustix-3c830ab66266c07c.d b/examples/agent_server/target/debug/deps/rustix-3c830ab66266c07c.d new file mode 100644 index 0000000..a6ff0e9 --- /dev/null +++ b/examples/agent_server/target/debug/deps/rustix-3c830ab66266c07c.d @@ -0,0 +1,68 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/rustix-3c830ab66266c07c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/cstr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/maybe_polyfill/std/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/bitcast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/arch/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/arch/x86_64.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/conv.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/reg.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/dir.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/inotify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/makedev.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/syscalls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/io/errno.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/io/syscalls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/io/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/c.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/ugid/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/ugid/syscalls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ffi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/abs.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/at.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/constants.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/copy_file_range.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/dir.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fadvise.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fcntl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/id.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/inotify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/ioctl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/makedev.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/memfd_create.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/openat2.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/raw_dir.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/seek_from.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/sendfile.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/special.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/statx.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/sync.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/xattr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/close.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/dup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/errno.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/fcntl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/ioctl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/read_write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/patterns.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/linux.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/arg.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/dec_int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/timespec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ugid.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/librustix-3c830ab66266c07c.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/cstr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/maybe_polyfill/std/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/bitcast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/arch/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/arch/x86_64.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/conv.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/reg.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/dir.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/inotify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/makedev.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/syscalls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/io/errno.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/io/syscalls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/io/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/c.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/ugid/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/ugid/syscalls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ffi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/abs.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/at.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/constants.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/copy_file_range.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/dir.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fadvise.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fcntl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/id.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/inotify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/ioctl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/makedev.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/memfd_create.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/openat2.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/raw_dir.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/seek_from.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/sendfile.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/special.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/statx.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/sync.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/xattr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/close.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/dup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/errno.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/fcntl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/ioctl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/read_write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/patterns.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/linux.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/arg.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/dec_int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/timespec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ugid.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/librustix-3c830ab66266c07c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/cstr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/maybe_polyfill/std/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/bitcast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/arch/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/arch/x86_64.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/conv.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/reg.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/dir.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/inotify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/makedev.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/syscalls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/io/errno.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/io/syscalls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/io/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/c.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/ugid/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/ugid/syscalls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ffi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/abs.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/at.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/constants.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/copy_file_range.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/dir.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fadvise.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fcntl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/id.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/inotify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/ioctl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/makedev.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/memfd_create.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/openat2.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/raw_dir.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/seek_from.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/sendfile.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/special.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/statx.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/sync.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/xattr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/close.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/dup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/errno.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/fcntl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/ioctl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/read_write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/patterns.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/linux.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/arg.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/dec_int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/timespec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ugid.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/buffer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/cstr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/maybe_polyfill/std/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/bitcast.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/arch/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/arch/x86_64.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/conv.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/reg.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/dir.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/inotify.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/makedev.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/syscalls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/fs/types.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/io/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/io/errno.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/io/syscalls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/io/types.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/c.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/ugid/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/backend/linux_raw/ugid/syscalls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ffi.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/abs.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/at.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/constants.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/copy_file_range.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/dir.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fadvise.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fcntl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/fd.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/id.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/inotify.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/ioctl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/makedev.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/memfd_create.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/openat2.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/raw_dir.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/seek_from.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/sendfile.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/special.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/statx.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/sync.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/fs/xattr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/close.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/dup.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/errno.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/fcntl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/ioctl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/io/read_write.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/patterns.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ioctl/linux.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/arg.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/path/dec_int.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/timespec.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustix-1.1.4/src/ugid.rs: diff --git a/examples/agent_server/target/debug/deps/rustls-92851e6ae256ebdb.d b/examples/agent_server/target/debug/deps/rustls-92851e6ae256ebdb.d new file mode 100644 index 0000000..762eed3 --- /dev/null +++ b/examples/agent_server/target/debug/deps/rustls-92851e6ae256ebdb.d @@ -0,0 +1,83 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/rustls-92851e6ae256ebdb.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/alert.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/base.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/ccs.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/codec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/deframer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/enums.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/fragmenter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/handshake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/message.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/persist.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/common_state.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/conn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/sign.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/hash.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/hmac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/kx.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/quic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/ticketer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/tls12.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/tls13.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/cipher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/hash.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/hmac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/tls12.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/tls13.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/hpke.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/signer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/hash_hs.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/limited_cache.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/rand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/record_layer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/tls12/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/tls13/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/tls13/key_schedule.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/vecbuf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/verify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/x509.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/check.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/bs_debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/enums.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/key_log.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/key_log_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/suites.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/versions.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/webpki/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/webpki/anchors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/webpki/client_verifier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/webpki/server_verifier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/webpki/verify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/client_conn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/common.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/handy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/hs.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/tls12.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/tls13.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/common.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/handy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/hs.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/server_conn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/tls12.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/tls13.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/quic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/ticketer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/implvulns.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/tlsvulns.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/howto.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/features.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/defaults.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/librustls-92851e6ae256ebdb.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/alert.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/base.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/ccs.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/codec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/deframer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/enums.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/fragmenter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/handshake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/message.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/persist.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/common_state.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/conn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/sign.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/hash.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/hmac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/kx.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/quic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/ticketer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/tls12.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/tls13.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/cipher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/hash.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/hmac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/tls12.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/tls13.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/hpke.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/signer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/hash_hs.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/limited_cache.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/rand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/record_layer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/tls12/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/tls13/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/tls13/key_schedule.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/vecbuf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/verify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/x509.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/check.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/bs_debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/enums.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/key_log.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/key_log_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/suites.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/versions.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/webpki/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/webpki/anchors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/webpki/client_verifier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/webpki/server_verifier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/webpki/verify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/client_conn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/common.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/handy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/hs.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/tls12.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/tls13.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/common.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/handy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/hs.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/server_conn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/tls12.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/tls13.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/quic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/ticketer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/implvulns.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/tlsvulns.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/howto.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/features.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/defaults.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/alert.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/base.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/ccs.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/codec.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/deframer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/enums.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/fragmenter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/handshake.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/message.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/msgs/persist.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/common_state.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/conn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/sign.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/hash.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/hmac.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/kx.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/quic.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/ticketer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/tls12.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/ring/tls13.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/cipher.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/hash.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/hmac.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/tls12.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/tls13.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/hpke.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/crypto/signer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/hash_hs.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/limited_cache.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/rand.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/record_layer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/stream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/tls12/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/tls13/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/tls13/key_schedule.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/vecbuf.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/verify.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/x509.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/check.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/bs_debug.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/builder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/enums.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/key_log.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/key_log_file.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/suites.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/versions.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/webpki/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/webpki/anchors.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/webpki/client_verifier.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/webpki/server_verifier.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/webpki/verify.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/builder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/client_conn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/common.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/handy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/hs.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/tls12.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/client/tls13.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/builder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/common.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/handy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/hs.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/server_conn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/tls12.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/server/tls13.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/quic.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/ticketer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/implvulns.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/tlsvulns.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/howto.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/features.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-0.22.4/src/manual/defaults.rs: diff --git a/examples/agent_server/target/debug/deps/rustls_pki_types-bfead8a00baeb2a5.d b/examples/agent_server/target/debug/deps/rustls_pki_types-bfead8a00baeb2a5.d new file mode 100644 index 0000000..5a9d3fa --- /dev/null +++ b/examples/agent_server/target/debug/deps/rustls_pki_types-bfead8a00baeb2a5.d @@ -0,0 +1,28 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/rustls_pki_types-bfead8a00baeb2a5.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/alg_id.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/base64.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/server_name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/pem.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ml-dsa-44.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ml-dsa-65.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ml-dsa-87.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-p256k1.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-p256.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-p384.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-p521.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-sha256.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-sha384.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-sha512.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-encryption.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pkcs1-sha256.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pkcs1-sha384.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pkcs1-sha512.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pss-sha256.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pss-sha384.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pss-sha512.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ed25519.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ed448.der + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/librustls_pki_types-bfead8a00baeb2a5.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/alg_id.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/base64.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/server_name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/pem.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ml-dsa-44.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ml-dsa-65.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ml-dsa-87.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-p256k1.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-p256.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-p384.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-p521.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-sha256.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-sha384.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-sha512.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-encryption.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pkcs1-sha256.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pkcs1-sha384.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pkcs1-sha512.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pss-sha256.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pss-sha384.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pss-sha512.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ed25519.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ed448.der + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/alg_id.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/base64.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/server_name.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/pem.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ml-dsa-44.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ml-dsa-65.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ml-dsa-87.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-p256k1.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-p256.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-p384.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-p521.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-sha256.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-sha384.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ecdsa-sha512.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-encryption.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pkcs1-sha256.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pkcs1-sha384.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pkcs1-sha512.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pss-sha256.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pss-sha384.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-rsa-pss-sha512.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ed25519.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-pki-types-1.15.1/src/data/alg-ed448.der: diff --git a/examples/agent_server/target/debug/deps/ryu-1f4bd1732b57412d.d b/examples/agent_server/target/debug/deps/ryu-1f4bd1732b57412d.d new file mode 100644 index 0000000..522e7ff --- /dev/null +++ b/examples/agent_server/target/debug/deps/ryu-1f4bd1732b57412d.d @@ -0,0 +1,16 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/ryu-1f4bd1732b57412d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/buffer/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/common.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_full_table.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_intrinsics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/digit_table.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s_intrinsics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/exponent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mantissa.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libryu-1f4bd1732b57412d.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/buffer/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/common.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_full_table.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_intrinsics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/digit_table.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s_intrinsics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/exponent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mantissa.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/buffer/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/common.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_full_table.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/d2s_intrinsics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/digit_table.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/f2s_intrinsics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/exponent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ryu-1.0.23/src/pretty/mantissa.rs: diff --git a/examples/agent_server/target/debug/deps/scopeguard-9231b86801b00f36.d b/examples/agent_server/target/debug/deps/scopeguard-9231b86801b00f36.d new file mode 100644 index 0000000..68ec905 --- /dev/null +++ b/examples/agent_server/target/debug/deps/scopeguard-9231b86801b00f36.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/scopeguard-9231b86801b00f36.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libscopeguard-9231b86801b00f36.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/serde-2b916ae5b6dcb334.d b/examples/agent_server/target/debug/deps/serde-2b916ae5b6dcb334.d new file mode 100644 index 0000000..7b4a8a1 --- /dev/null +++ b/examples/agent_server/target/debug/deps/serde-2b916ae5b6dcb334.d @@ -0,0 +1,12 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/serde-2b916ae5b6dcb334.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/integer128.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/ser.rs /home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/serde-46367230ef002103/out/private.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libserde-2b916ae5b6dcb334.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/integer128.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/ser.rs /home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/serde-46367230ef002103/out/private.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/integer128.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/de.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/ser.rs: +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/serde-46367230ef002103/out/private.rs: + +# env-dep:OUT_DIR=/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/serde-46367230ef002103/out diff --git a/examples/agent_server/target/debug/deps/serde_core-bbbf2ec4bd875055.d b/examples/agent_server/target/debug/deps/serde_core-bbbf2ec4bd875055.d new file mode 100644 index 0000000..21be24e --- /dev/null +++ b/examples/agent_server/target/debug/deps/serde_core-bbbf2ec4bd875055.d @@ -0,0 +1,25 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/serde_core-bbbf2ec4bd875055.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/crate_root.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/ignored_any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impossible.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/content.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/seed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/doc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/string.rs /home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/out/private.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libserde_core-bbbf2ec4bd875055.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/crate_root.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/ignored_any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impossible.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/content.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/seed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/doc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/string.rs /home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/out/private.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/crate_root.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/ignored_any.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/fmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impossible.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/format.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/content.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/seed.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/doc.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/size_hint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/string.rs: +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/out/private.rs: + +# env-dep:OUT_DIR=/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/serde_core-cbe2b4be7c517a18/out diff --git a/examples/agent_server/target/debug/deps/serde_derive-237a5c301882bb62.d b/examples/agent_server/target/debug/deps/serde_derive-237a5c301882bb62.d new file mode 100644 index 0000000..7592eae --- /dev/null +++ b/examples/agent_server/target/debug/deps/serde_derive-237a5c301882bb62.d @@ -0,0 +1,34 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/serde_derive-237a5c301882bb62.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/check.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/ctxt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/receiver.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/respan.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/symbol.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/bound.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/fragment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_adjacently.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_externally.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_internally.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_untagged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/identifier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/struct_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/tuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/unit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/deprecated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/dummy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/pretend.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/this.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libserde_derive-237a5c301882bb62.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/check.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/ctxt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/receiver.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/respan.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/symbol.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/bound.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/fragment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_adjacently.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_externally.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_internally.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_untagged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/identifier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/struct_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/tuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/unit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/deprecated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/dummy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/pretend.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/this.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/ast.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/name.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/case.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/check.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/ctxt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/receiver.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/respan.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/symbol.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/bound.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/fragment.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_adjacently.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_externally.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_internally.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_untagged.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/identifier.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/struct_.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/tuple.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/unit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/deprecated.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/dummy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/pretend.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/ser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/this.rs: + +# env-dep:CARGO_PKG_VERSION_PATCH=229 diff --git a/examples/agent_server/target/debug/deps/serde_json-e1451d259db2ba72.d b/examples/agent_server/target/debug/deps/serde_json-e1451d259db2ba72.d new file mode 100644 index 0000000..f4add20 --- /dev/null +++ b/examples/agent_server/target/debug/deps/serde_json-e1451d259db2ba72.d @@ -0,0 +1,21 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/serde_json-e1451d259db2ba72.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/from.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/index.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/partial_eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/number.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/raw.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libserde_json-e1451d259db2ba72.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/from.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/index.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/partial_eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/number.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/raw.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/de.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/ser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/de.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/from.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/index.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/partial_eq.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/ser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/io/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/number.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/read.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/raw.rs: diff --git a/examples/agent_server/target/debug/deps/serde_path_to_error-f063d3c09cee7598.d b/examples/agent_server/target/debug/deps/serde_path_to_error-f063d3c09cee7598.d new file mode 100644 index 0000000..8f77d39 --- /dev/null +++ b/examples/agent_server/target/debug/deps/serde_path_to_error-f063d3c09cee7598.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/serde_path_to_error-f063d3c09cee7598.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_path_to_error-0.1.20/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_path_to_error-0.1.20/src/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_path_to_error-0.1.20/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_path_to_error-0.1.20/src/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_path_to_error-0.1.20/src/wrap.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libserde_path_to_error-f063d3c09cee7598.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_path_to_error-0.1.20/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_path_to_error-0.1.20/src/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_path_to_error-0.1.20/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_path_to_error-0.1.20/src/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_path_to_error-0.1.20/src/wrap.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_path_to_error-0.1.20/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_path_to_error-0.1.20/src/de.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_path_to_error-0.1.20/src/path.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_path_to_error-0.1.20/src/ser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_path_to_error-0.1.20/src/wrap.rs: diff --git a/examples/agent_server/target/debug/deps/serde_urlencoded-33aacb420464b1dd.d b/examples/agent_server/target/debug/deps/serde_urlencoded-33aacb420464b1dd.d new file mode 100644 index 0000000..06ccc07 --- /dev/null +++ b/examples/agent_server/target/debug/deps/serde_urlencoded-33aacb420464b1dd.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/serde_urlencoded-33aacb420464b1dd.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/pair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/part.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/value.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libserde_urlencoded-33aacb420464b1dd.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/pair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/part.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/value.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/de.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/key.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/pair.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/part.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_urlencoded-0.7.1/src/ser/value.rs: diff --git a/examples/agent_server/target/debug/deps/sha1-6da5225bc108ed93.d b/examples/agent_server/target/debug/deps/sha1-6da5225bc108ed93.d new file mode 100644 index 0000000..f5c706a --- /dev/null +++ b/examples/agent_server/target/debug/deps/sha1-6da5225bc108ed93.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/sha1-6da5225bc108ed93.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.7/src/compress.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.7/src/compress/soft.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.7/src/compress/x86.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libsha1-6da5225bc108ed93.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.7/src/compress.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.7/src/compress/soft.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.7/src/compress/x86.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.7/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.7/src/compress.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.7/src/compress/soft.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha1-0.10.7/src/compress/x86.rs: diff --git a/examples/agent_server/target/debug/deps/sharded_slab-47d20ae27c42e343.d b/examples/agent_server/target/debug/deps/sharded_slab-47d20ae27c42e343.d new file mode 100644 index 0000000..27ddac5 --- /dev/null +++ b/examples/agent_server/target/debug/deps/sharded_slab-47d20ae27c42e343.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/sharded_slab-47d20ae27c42e343.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/implementation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/pool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/cfg.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/sync.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/clear.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/slot.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/stack.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/shard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/tid.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libsharded_slab-47d20ae27c42e343.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/implementation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/pool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/cfg.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/sync.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/clear.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/slot.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/stack.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/shard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/tid.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/implementation.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/pool.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/cfg.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/sync.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/clear.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/slot.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/page/stack.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/shard.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sharded-slab-0.1.7/src/tid.rs: diff --git a/examples/agent_server/target/debug/deps/shlex-7b06ff0077903996.d b/examples/agent_server/target/debug/deps/shlex-7b06ff0077903996.d new file mode 100644 index 0000000..a8dc885 --- /dev/null +++ b/examples/agent_server/target/debug/deps/shlex-7b06ff0077903996.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/shlex-7b06ff0077903996.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-2.0.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-2.0.1/src/bytes.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libshlex-7b06ff0077903996.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-2.0.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-2.0.1/src/bytes.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libshlex-7b06ff0077903996.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-2.0.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-2.0.1/src/bytes.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-2.0.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/shlex-2.0.1/src/bytes.rs: diff --git a/examples/agent_server/target/debug/deps/signal_hook_registry-ca61398a9ca98351.d b/examples/agent_server/target/debug/deps/signal_hook_registry-ca61398a9ca98351.d new file mode 100644 index 0000000..462028d --- /dev/null +++ b/examples/agent_server/target/debug/deps/signal_hook_registry-ca61398a9ca98351.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/signal_hook_registry-ca61398a9ca98351.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/half_lock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/vec_map.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libsignal_hook_registry-ca61398a9ca98351.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/half_lock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/vec_map.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/half_lock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/signal-hook-registry-1.4.8/src/vec_map.rs: diff --git a/examples/agent_server/target/debug/deps/slab-5ad27fdb4344ece1.d b/examples/agent_server/target/debug/deps/slab-5ad27fdb4344ece1.d new file mode 100644 index 0000000..bf1c64c --- /dev/null +++ b/examples/agent_server/target/debug/deps/slab-5ad27fdb4344ece1.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/slab-5ad27fdb4344ece1.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/builder.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libslab-5ad27fdb4344ece1.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/builder.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/builder.rs: diff --git a/examples/agent_server/target/debug/deps/smallvec-0f6a4b8729e45700.d b/examples/agent_server/target/debug/deps/smallvec-0f6a4b8729e45700.d new file mode 100644 index 0000000..6f3f6b9 --- /dev/null +++ b/examples/agent_server/target/debug/deps/smallvec-0f6a4b8729e45700.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/smallvec-0f6a4b8729e45700.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.2/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libsmallvec-0f6a4b8729e45700.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.2/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.2/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/socket2-f13486a30239ac18.d b/examples/agent_server/target/debug/deps/socket2-f13486a30239ac18.d new file mode 100644 index 0000000..0573ac9 --- /dev/null +++ b/examples/agent_server/target/debug/deps/socket2-f13486a30239ac18.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/socket2-f13486a30239ac18.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.5/src/sockaddr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.5/src/socket.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.5/src/sockref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.5/src/sys/unix.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libsocket2-f13486a30239ac18.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.5/src/sockaddr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.5/src/socket.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.5/src/sockref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.5/src/sys/unix.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.5/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.5/src/sockaddr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.5/src/socket.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.5/src/sockref.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/socket2-0.6.5/src/sys/unix.rs: diff --git a/examples/agent_server/target/debug/deps/stable_deref_trait-22158042bda71a4d.d b/examples/agent_server/target/debug/deps/stable_deref_trait-22158042bda71a4d.d new file mode 100644 index 0000000..2664263 --- /dev/null +++ b/examples/agent_server/target/debug/deps/stable_deref_trait-22158042bda71a4d.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/stable_deref_trait-22158042bda71a4d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libstable_deref_trait-22158042bda71a4d.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/subtle-684c7bd4fb8861f7.d b/examples/agent_server/target/debug/deps/subtle-684c7bd4fb8861f7.d new file mode 100644 index 0000000..9c9053b --- /dev/null +++ b/examples/agent_server/target/debug/deps/subtle-684c7bd4fb8861f7.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/subtle-684c7bd4fb8861f7.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/subtle-2.6.1/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libsubtle-684c7bd4fb8861f7.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/subtle-2.6.1/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/subtle-2.6.1/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/syn-4e45116c709dc0d0.d b/examples/agent_server/target/debug/deps/syn-4e45116c709dc0d0.d new file mode 100644 index 0000000..6dab98e --- /dev/null +++ b/examples/agent_server/target/debug/deps/syn-4e45116c709dc0d0.d @@ -0,0 +1,60 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/syn-4e45116c709dc0d0.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/group.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/bigint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_punctuation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/derive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/drops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ident.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lookahead.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/discouraged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_macro_input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_quote.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/punctuated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/restriction.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/sealed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/tt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/verbatim.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/whitespace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/export.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/fold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/clone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/hash.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libsyn-4e45116c709dc0d0.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/group.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/bigint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_punctuation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/derive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/drops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ident.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lookahead.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/discouraged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_macro_input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_quote.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/punctuated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/restriction.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/sealed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/tt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/verbatim.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/whitespace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/export.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/fold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/clone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/hash.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libsyn-4e45116c709dc0d0.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/group.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/bigint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_punctuation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/derive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/drops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ident.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lookahead.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/discouraged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_macro_input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_quote.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/punctuated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/restriction.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/sealed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/tt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/verbatim.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/whitespace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/export.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/fold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/clone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/hash.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/group.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/token.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/bigint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/buffer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/classify.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_keyword.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_punctuation.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/data.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/derive.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/drops.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/expr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/file.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/fixup.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/generics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ident.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/item.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lifetime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lookahead.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/mac.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/meta.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/op.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/discouraged.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_macro_input.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_quote.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/pat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/path.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/precedence.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/print.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/punctuated.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/restriction.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/sealed.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/span.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/spanned.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/stmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/thread.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/tt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ty.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/verbatim.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/whitespace.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/export.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/fold.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit_mut.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/clone.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/debug.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/eq.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/hash.rs: diff --git a/examples/agent_server/target/debug/deps/syn-641c960597529d4f.d b/examples/agent_server/target/debug/deps/syn-641c960597529d4f.d new file mode 100644 index 0000000..494caf8 --- /dev/null +++ b/examples/agent_server/target/debug/deps/syn-641c960597529d4f.d @@ -0,0 +1,53 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/syn-641c960597529d4f.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/group.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/bigint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/custom_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/custom_punctuation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/derive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/drops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ident.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lookahead.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/discouraged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse_macro_input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse_quote.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/punctuated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/restriction.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/sealed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/verbatim.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/whitespace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/export.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/gen/clone.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libsyn-641c960597529d4f.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/group.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/bigint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/custom_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/custom_punctuation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/derive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/drops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ident.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lookahead.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/discouraged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse_macro_input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse_quote.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/punctuated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/restriction.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/sealed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/verbatim.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/whitespace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/export.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/gen/clone.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libsyn-641c960597529d4f.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/group.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/bigint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/custom_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/custom_punctuation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/derive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/drops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ident.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lookahead.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/discouraged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse_macro_input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse_quote.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/punctuated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/restriction.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/sealed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/verbatim.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/whitespace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/export.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/gen/clone.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/group.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/token.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/bigint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/buffer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/classify.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/custom_keyword.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/custom_punctuation.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/data.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/derive.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/drops.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/expr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/file.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/fixup.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/generics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ident.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/item.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lifetime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lookahead.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/mac.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/meta.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/op.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/discouraged.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse_macro_input.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse_quote.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/pat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/path.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/precedence.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/print.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/punctuated.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/restriction.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/sealed.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/span.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/spanned.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/stmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/thread.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ty.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/verbatim.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/whitespace.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/export.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/gen/clone.rs: diff --git a/examples/agent_server/target/debug/deps/sync_wrapper-0c3d1a23b3d6f802.d b/examples/agent_server/target/debug/deps/sync_wrapper-0c3d1a23b3d6f802.d new file mode 100644 index 0000000..b74b908 --- /dev/null +++ b/examples/agent_server/target/debug/deps/sync_wrapper-0c3d1a23b3d6f802.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/sync_wrapper-0c3d1a23b3d6f802.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sync_wrapper-1.0.2/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libsync_wrapper-0c3d1a23b3d6f802.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sync_wrapper-1.0.2/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sync_wrapper-1.0.2/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/synstructure-388c3c6b693bfc93.d b/examples/agent_server/target/debug/deps/synstructure-388c3c6b693bfc93.d new file mode 100644 index 0000000..f77565a --- /dev/null +++ b/examples/agent_server/target/debug/deps/synstructure-388c3c6b693bfc93.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/synstructure-388c3c6b693bfc93.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/macros.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libsynstructure-388c3c6b693bfc93.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/macros.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libsynstructure-388c3c6b693bfc93.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/macros.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/macros.rs: diff --git a/examples/agent_server/target/debug/deps/tempfile-3acfc3754cdd2eb8.d b/examples/agent_server/target/debug/deps/tempfile-3acfc3754cdd2eb8.d new file mode 100644 index 0000000..d79b122 --- /dev/null +++ b/examples/agent_server/target/debug/deps/tempfile-3acfc3754cdd2eb8.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/tempfile-3acfc3754cdd2eb8.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/dir/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/dir/imp/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/dir/imp/unix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/file/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/file/imp/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/file/imp/unix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/spooled.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/env.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtempfile-3acfc3754cdd2eb8.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/dir/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/dir/imp/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/dir/imp/unix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/file/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/file/imp/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/file/imp/unix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/spooled.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/env.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtempfile-3acfc3754cdd2eb8.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/dir/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/dir/imp/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/dir/imp/unix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/file/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/file/imp/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/file/imp/unix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/spooled.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/env.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/dir/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/dir/imp/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/dir/imp/unix.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/file/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/file/imp/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/file/imp/unix.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/spooled.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tempfile-3.27.0/src/env.rs: diff --git a/examples/agent_server/target/debug/deps/thiserror-0ffc10629a337cf8.d b/examples/agent_server/target/debug/deps/thiserror-0ffc10629a337cf8.d new file mode 100644 index 0000000..ae2f293 --- /dev/null +++ b/examples/agent_server/target/debug/deps/thiserror-0ffc10629a337cf8.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/thiserror-0ffc10629a337cf8.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libthiserror-0ffc10629a337cf8.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs: diff --git a/examples/agent_server/target/debug/deps/thiserror-b814df2309f8fad4.d b/examples/agent_server/target/debug/deps/thiserror-b814df2309f8fad4.d new file mode 100644 index 0000000..f005a33 --- /dev/null +++ b/examples/agent_server/target/debug/deps/thiserror-b814df2309f8fad4.d @@ -0,0 +1,12 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/thiserror-b814df2309f8fad4.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/aserror.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/var.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/private.rs /home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/out/private.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libthiserror-b814df2309f8fad4.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/aserror.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/var.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/private.rs /home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/out/private.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/aserror.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/display.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/var.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/private.rs: +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/out/private.rs: + +# env-dep:OUT_DIR=/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/build/thiserror-065d38539fa57520/out diff --git a/examples/agent_server/target/debug/deps/thiserror_impl-6a19198988d98108.d b/examples/agent_server/target/debug/deps/thiserror_impl-6a19198988d98108.d new file mode 100644 index 0000000..172c776 --- /dev/null +++ b/examples/agent_server/target/debug/deps/thiserror_impl-6a19198988d98108.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/thiserror_impl-6a19198988d98108.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/expand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/prop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/scan_expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/unraw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/valid.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libthiserror_impl-6a19198988d98108.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/expand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/prop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/scan_expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/unraw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/valid.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/ast.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/expand.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/fallback.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/fmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/generics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/prop.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/scan_expr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/unraw.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/valid.rs: + +# env-dep:CARGO_PKG_VERSION_PATCH=19 diff --git a/examples/agent_server/target/debug/deps/thiserror_impl-f63d760665632888.d b/examples/agent_server/target/debug/deps/thiserror_impl-f63d760665632888.d new file mode 100644 index 0000000..9d3474a --- /dev/null +++ b/examples/agent_server/target/debug/deps/thiserror_impl-f63d760665632888.d @@ -0,0 +1,14 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/thiserror_impl-f63d760665632888.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libthiserror_impl-f63d760665632888.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs: diff --git a/examples/agent_server/target/debug/deps/thread_local-55b9ef038294e1f7.d b/examples/agent_server/target/debug/deps/thread_local-55b9ef038294e1f7.d new file mode 100644 index 0000000..44f7f51 --- /dev/null +++ b/examples/agent_server/target/debug/deps/thread_local-55b9ef038294e1f7.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/thread_local-55b9ef038294e1f7.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.10/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.10/src/cached.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.10/src/thread_id.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libthread_local-55b9ef038294e1f7.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.10/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.10/src/cached.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.10/src/thread_id.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.10/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.10/src/cached.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thread_local-1.1.10/src/thread_id.rs: diff --git a/examples/agent_server/target/debug/deps/tinystr-af9dc0146ac638b2.d b/examples/agent_server/target/debug/deps/tinystr-af9dc0146ac638b2.d new file mode 100644 index 0000000..8e0ee21 --- /dev/null +++ b/examples/agent_server/target/debug/deps/tinystr-af9dc0146ac638b2.d @@ -0,0 +1,12 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/tinystr-af9dc0146ac638b2.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ascii.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/asciibyte.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/int_ops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/unvalidated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ule.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtinystr-af9dc0146ac638b2.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ascii.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/asciibyte.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/int_ops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/unvalidated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ule.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ascii.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/asciibyte.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/int_ops.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/unvalidated.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ule.rs: diff --git a/examples/agent_server/target/debug/deps/tokio-1633ed0d6bbdec8f.d b/examples/agent_server/target/debug/deps/tokio-1633ed0d6bbdec8f.d new file mode 100644 index 0000000..6ac8e2d --- /dev/null +++ b/examples/agent_server/target/debug/deps/tokio-1633ed0d6bbdec8f.d @@ -0,0 +1,291 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/tokio-1633ed0d6bbdec8f.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/cfg.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/loom.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/pin.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/thread_local.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/addr_of.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/support.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/future/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/future/maybe_done.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/async_buf_read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/async_read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/async_seek.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/async_write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/read_buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/addr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/atomic_u16.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/atomic_u32.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/atomic_u64.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/atomic_usize.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/barrier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/parking_lot.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/rwlock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/unsafe_cell.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/blocking.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/as_ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/atomic_cell.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/blocking_check.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/metric_atomics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/wake_list.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/linked_list.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/rand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/trace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/typeid.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/markers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/cacheline.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/try_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/canonicalize.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/create_dir.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/create_dir_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/dir_builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/hard_link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/metadata.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/open_options.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/read_dir.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/read_link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/read_to_string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/remove_dir.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/remove_dir_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/remove_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/rename.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/set_permissions.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/symlink_metadata.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/copy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/try_exists.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/symlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/future/try_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/future/block_on.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/blocking.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/interest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/ready.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/poll_evented.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/async_fd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/stdio_common.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/stderr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/stdin.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/stdout.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/seek.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/async_buf_read_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/async_read_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/async_seek_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/async_write_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/buf_reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/buf_stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/buf_writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/copy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/copy_bidirectional.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/copy_buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/empty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/flush.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/lines.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/mem.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_exact.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_line.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/fill_buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_to_end.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/vec_with_initialized.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_to_string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_until.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/repeat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/shutdown.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/sink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/take.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write_vectored.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write_buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write_all_buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write_int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/lookup_host.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/listener.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/split_owned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/socket.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/udp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/datagram/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/datagram/socket.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/listener.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/socket.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/split_owned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/socketaddr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/ucred.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/pipe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/atomic_u64_native.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/unix/orphan.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/unix/reap.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/unix/pidfd_reaper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/kill.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/park.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/driver.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context/blocking.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context/current.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context/scoped.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context/runtime_mt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/current_thread/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/defer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject/pop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject/shared.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject/synced.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject/metrics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject/rt_multi_thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/block_in_place.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/lock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/counters.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/handle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/handle/metrics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/overflow.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/idle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/stats.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/park.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/queue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/worker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/worker/metrics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/trace_mock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/driver.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/registration.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/registration_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/scheduled_io.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/metrics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/driver/signal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/process.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/handle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/wheel/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/wheel/level.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/signal/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/core.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/harness.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/id.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/abort.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/list.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/state.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/waker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/config.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/blocking/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/blocking/pool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/blocking/schedule.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/blocking/shutdown.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/blocking/task.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task_hooks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/handle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/local_runtime/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/local_runtime/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/local_runtime/options.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/id.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/thread_id.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/batch.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/worker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/mock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/schedule_latency_mock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/ctrl_c.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/registry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/unix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/windows.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/reusable_box.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/barrier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/broadcast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/block.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/bounded.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/chan.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/list.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/unbounded.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/notify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/oneshot.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/batch_semaphore.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/semaphore.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/owned_read_guard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/owned_write_guard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/owned_write_guard_mapped.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/read_guard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/write_guard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/write_guard_mapped.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/task/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/task/atomic_waker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/once_cell.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/set_once.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/watch.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/blocking.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/spawn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/yield_now.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/coop/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/local.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/task_local.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/join_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/coop/consume_budget.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/coop/unconstrained.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/clock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/instant.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/interval.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/sleep.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/timeout.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/bit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/sharded_list.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/rand/rt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/idle_notified_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/wake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/sync_wrapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/rc_cell.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/try_lock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/ptr_expose.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtokio-1633ed0d6bbdec8f.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/cfg.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/loom.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/pin.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/thread_local.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/addr_of.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/support.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/future/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/future/maybe_done.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/async_buf_read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/async_read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/async_seek.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/async_write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/read_buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/addr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/atomic_u16.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/atomic_u32.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/atomic_u64.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/atomic_usize.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/barrier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/parking_lot.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/rwlock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/unsafe_cell.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/blocking.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/as_ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/atomic_cell.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/blocking_check.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/metric_atomics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/wake_list.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/linked_list.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/rand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/trace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/typeid.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/markers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/cacheline.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/try_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/canonicalize.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/create_dir.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/create_dir_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/dir_builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/hard_link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/metadata.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/open_options.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/read_dir.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/read_link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/read_to_string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/remove_dir.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/remove_dir_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/remove_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/rename.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/set_permissions.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/symlink_metadata.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/copy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/try_exists.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/symlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/future/try_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/future/block_on.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/blocking.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/interest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/ready.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/poll_evented.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/async_fd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/stdio_common.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/stderr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/stdin.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/stdout.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/seek.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/async_buf_read_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/async_read_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/async_seek_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/async_write_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/buf_reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/buf_stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/buf_writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/copy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/copy_bidirectional.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/copy_buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/empty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/flush.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/lines.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/mem.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_exact.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_line.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/fill_buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_to_end.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/vec_with_initialized.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_to_string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_until.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/repeat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/shutdown.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/sink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/take.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write_vectored.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write_buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write_all_buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write_int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/lookup_host.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/listener.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/split_owned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/socket.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/udp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/datagram/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/datagram/socket.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/listener.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/socket.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/split_owned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/socketaddr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/ucred.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/pipe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/atomic_u64_native.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/unix/orphan.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/unix/reap.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/unix/pidfd_reaper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/kill.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/park.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/driver.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context/blocking.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context/current.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context/scoped.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context/runtime_mt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/current_thread/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/defer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject/pop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject/shared.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject/synced.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject/metrics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject/rt_multi_thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/block_in_place.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/lock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/counters.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/handle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/handle/metrics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/overflow.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/idle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/stats.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/park.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/queue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/worker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/worker/metrics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/trace_mock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/driver.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/registration.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/registration_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/scheduled_io.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/metrics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/driver/signal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/process.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/handle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/wheel/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/wheel/level.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/signal/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/core.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/harness.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/id.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/abort.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/list.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/state.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/waker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/config.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/blocking/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/blocking/pool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/blocking/schedule.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/blocking/shutdown.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/blocking/task.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task_hooks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/handle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/local_runtime/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/local_runtime/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/local_runtime/options.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/id.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/thread_id.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/batch.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/worker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/mock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/schedule_latency_mock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/ctrl_c.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/registry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/unix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/windows.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/reusable_box.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/barrier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/broadcast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/block.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/bounded.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/chan.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/list.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/unbounded.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/notify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/oneshot.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/batch_semaphore.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/semaphore.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/owned_read_guard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/owned_write_guard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/owned_write_guard_mapped.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/read_guard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/write_guard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/write_guard_mapped.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/task/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/task/atomic_waker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/once_cell.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/set_once.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/watch.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/blocking.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/spawn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/yield_now.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/coop/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/local.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/task_local.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/join_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/coop/consume_budget.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/coop/unconstrained.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/clock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/instant.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/interval.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/sleep.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/timeout.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/bit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/sharded_list.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/rand/rt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/idle_notified_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/wake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/sync_wrapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/rc_cell.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/try_lock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/ptr_expose.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/cfg.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/loom.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/pin.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/thread_local.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/addr_of.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/support.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/future/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/future/maybe_done.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/async_buf_read.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/async_read.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/async_seek.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/async_write.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/read_buf.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/addr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/atomic_u16.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/atomic_u32.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/atomic_u64.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/atomic_usize.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/barrier.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/mutex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/parking_lot.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/rwlock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/unsafe_cell.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/blocking.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/as_ref.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/atomic_cell.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/blocking_check.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/metric_atomics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/wake_list.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/linked_list.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/rand.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/trace.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/typeid.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/markers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/cacheline.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/select.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/join.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/macros/try_join.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/canonicalize.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/create_dir.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/create_dir_all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/dir_builder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/file.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/hard_link.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/metadata.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/open_options.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/read.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/read_dir.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/read_link.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/read_to_string.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/remove_dir.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/remove_dir_all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/remove_file.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/rename.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/set_permissions.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/symlink_metadata.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/write.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/copy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/try_exists.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/fs/symlink.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/future/try_join.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/future/block_on.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/blocking.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/interest.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/ready.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/poll_evented.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/async_fd.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/stdio_common.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/stderr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/stdin.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/stdout.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/split.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/join.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/seek.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/async_buf_read_ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/async_read_ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/async_seek_ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/async_write_ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/buf_reader.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/buf_stream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/buf_writer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/chain.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/copy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/copy_bidirectional.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/copy_buf.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/empty.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/flush.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/lines.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/mem.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_buf.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_exact.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_int.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_line.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/fill_buf.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_to_end.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/vec_with_initialized.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_to_string.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/read_until.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/repeat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/shutdown.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/sink.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/split.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/take.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write_vectored.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write_all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write_buf.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write_all_buf.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/io/util/write_int.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/lookup_host.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/listener.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/split.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/split_owned.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/stream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/tcp/socket.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/udp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/datagram/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/datagram/socket.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/listener.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/socket.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/split.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/split_owned.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/socketaddr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/stream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/ucred.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/net/unix/pipe.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/loom/std/atomic_u64_native.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/unix/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/unix/orphan.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/unix/reap.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/unix/pidfd_reaper.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/process/kill.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/park.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/driver.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/util/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context/blocking.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context/current.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context/runtime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context/scoped.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/context/runtime_mt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/current_thread/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/defer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject/pop.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject/shared.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject/synced.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject/metrics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/inject/rt_multi_thread.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/block_in_place.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/lock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/counters.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/handle.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/handle/metrics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/overflow.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/idle.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/stats.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/park.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/queue.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/worker.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/worker/metrics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/scheduler/multi_thread/trace_mock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/driver.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/registration.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/registration_set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/scheduled_io.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/metrics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/io/driver/signal.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/process.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/entry.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/handle.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/source.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/wheel/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/time/wheel/level.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/signal/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/core.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/harness.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/id.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/abort.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/join.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/list.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/raw.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/state.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task/waker.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/config.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/blocking/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/blocking/pool.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/blocking/schedule.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/blocking/shutdown.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/blocking/task.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/builder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/task_hooks.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/handle.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/runtime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/local_runtime/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/local_runtime/runtime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/local_runtime/options.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/id.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/thread_id.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/runtime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/batch.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/worker.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/mock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/runtime/metrics/schedule_latency_mock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/ctrl_c.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/registry.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/unix.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/windows.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/signal/reusable_box.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/barrier.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/broadcast.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/block.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/bounded.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/chan.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/list.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/unbounded.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mpsc/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/mutex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/notify.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/oneshot.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/batch_semaphore.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/semaphore.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/owned_read_guard.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/owned_write_guard.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/owned_write_guard_mapped.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/read_guard.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/write_guard.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/rwlock/write_guard_mapped.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/task/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/task/atomic_waker.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/once_cell.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/set_once.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/sync/watch.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/blocking.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/spawn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/yield_now.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/coop/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/local.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/task_local.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/join_set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/coop/consume_budget.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/task/coop/unconstrained.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/clock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/instant.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/interval.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/sleep.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/time/timeout.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/bit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/sharded_list.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/rand/rt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/idle_notified_set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/wake.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/sync_wrapper.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/rc_cell.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/try_lock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-1.53.1/src/util/ptr_expose.rs: diff --git a/examples/agent_server/target/debug/deps/tokio_macros-41de4fbeebd28ef7.d b/examples/agent_server/target/debug/deps/tokio_macros-41de4fbeebd28ef7.d new file mode 100644 index 0000000..f2cfd5b --- /dev/null +++ b/examples/agent_server/target/debug/deps/tokio_macros-41de4fbeebd28ef7.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/tokio_macros-41de4fbeebd28ef7.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.2/src/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.2/src/select.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtokio_macros-41de4fbeebd28ef7.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.2/src/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.2/src/select.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.2/src/entry.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-macros-2.7.2/src/select.rs: diff --git a/examples/agent_server/target/debug/deps/tokio_rustls-34de4ca72ecfdb02.d b/examples/agent_server/target/debug/deps/tokio_rustls-34de4ca72ecfdb02.d new file mode 100644 index 0000000..aef12a0 --- /dev/null +++ b/examples/agent_server/target/debug/deps/tokio_rustls-34de4ca72ecfdb02.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/tokio_rustls-34de4ca72ecfdb02.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.25.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.25.0/src/client.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.25.0/src/common/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.25.0/src/common/handshake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.25.0/src/server.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtokio_rustls-34de4ca72ecfdb02.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.25.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.25.0/src/client.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.25.0/src/common/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.25.0/src/common/handshake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.25.0/src/server.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.25.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.25.0/src/client.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.25.0/src/common/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.25.0/src/common/handshake.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-rustls-0.25.0/src/server.rs: diff --git a/examples/agent_server/target/debug/deps/tokio_tungstenite-51f69eaa954daa2f.d b/examples/agent_server/target/debug/deps/tokio_tungstenite-51f69eaa954daa2f.d new file mode 100644 index 0000000..552859a --- /dev/null +++ b/examples/agent_server/target/debug/deps/tokio_tungstenite-51f69eaa954daa2f.d @@ -0,0 +1,10 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/tokio_tungstenite-51f69eaa954daa2f.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/compat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/connect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/handshake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/tls.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtokio_tungstenite-51f69eaa954daa2f.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/compat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/connect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/handshake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/tls.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/compat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/connect.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/handshake.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/stream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tokio-tungstenite-0.21.0/src/tls.rs: diff --git a/examples/agent_server/target/debug/deps/tower-126d242f05b34f56.d b/examples/agent_server/target/debug/deps/tower-126d242f05b34f56.d new file mode 100644 index 0000000..a8d2820 --- /dev/null +++ b/examples/agent_server/target/debug/deps/tower-126d242f05b34f56.d @@ -0,0 +1,41 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/tower-126d242f05b34f56.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/make/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/make/make_connection.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/make/make_service.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/make/make_service/shared.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/and_then.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer_clone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer_clone_sync.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/sync.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/unsync.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed_clone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed_clone_sync.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/common.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/ordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/future_service.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_result.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/oneshot.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/ready.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/service_fn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/then.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/rng.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/builder/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/layer.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtower-126d242f05b34f56.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/make/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/make/make_connection.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/make/make_service.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/make/make_service/shared.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/and_then.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer_clone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer_clone_sync.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/sync.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/unsync.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed_clone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed_clone_sync.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/common.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/ordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/future_service.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_result.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/oneshot.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/ready.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/service_fn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/then.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/rng.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/builder/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/layer.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/make/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/make/make_connection.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/make/make_service.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/make/make_service/shared.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/and_then.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer_clone.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/layer_clone_sync.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/sync.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed/unsync.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed_clone.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/boxed_clone_sync.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/common.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/ordered.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/call_all/unordered.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/either.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/future_service.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_err.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_request.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_response.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_result.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/map_future.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/oneshot.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/optional/future.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/ready.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/service_fn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/then.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/util/rng.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/builder/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-0.5.3/src/layer.rs: diff --git a/examples/agent_server/target/debug/deps/tower_http-5e81b246364aa994.d b/examples/agent_server/target/debug/deps/tower_http-5e81b246364aa994.d new file mode 100644 index 0000000..e2c4c2a --- /dev/null +++ b/examples/agent_server/target/debug/deps/tower_http-5e81b246364aa994.d @@ -0,0 +1,20 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/tower_http-5e81b246364aa994.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/allow_credentials.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/allow_headers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/allow_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/allow_origin.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/allow_private_network.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/expose_headers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/max_age.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/vary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/classify/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/classify/grpc_errors_as_failures.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/classify/map_failure_class.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/classify/status_in_range_is_error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/services/mod.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtower_http-5e81b246364aa994.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/allow_credentials.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/allow_headers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/allow_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/allow_origin.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/allow_private_network.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/expose_headers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/max_age.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/vary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/classify/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/classify/grpc_errors_as_failures.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/classify/map_failure_class.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/classify/status_in_range_is_error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/services/mod.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/allow_credentials.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/allow_headers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/allow_methods.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/allow_origin.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/allow_private_network.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/expose_headers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/max_age.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/cors/vary.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/classify/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/classify/grpc_errors_as_failures.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/classify/map_failure_class.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/classify/status_in_range_is_error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-http-0.6.11/src/services/mod.rs: diff --git a/examples/agent_server/target/debug/deps/tower_layer-cbfd986b2c761aee.d b/examples/agent_server/target/debug/deps/tower_layer-cbfd986b2c761aee.d new file mode 100644 index 0000000..1519bdf --- /dev/null +++ b/examples/agent_server/target/debug/deps/tower_layer-cbfd986b2c761aee.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/tower_layer-cbfd986b2c761aee.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/identity.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/layer_fn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/stack.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/tuple.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtower_layer-cbfd986b2c761aee.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/identity.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/layer_fn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/stack.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/tuple.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/identity.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/layer_fn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/stack.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-layer-0.3.3/src/tuple.rs: diff --git a/examples/agent_server/target/debug/deps/tower_service-eace9da83de8d2ed.d b/examples/agent_server/target/debug/deps/tower_service-eace9da83de8d2ed.d new file mode 100644 index 0000000..f458f60 --- /dev/null +++ b/examples/agent_server/target/debug/deps/tower_service-eace9da83de8d2ed.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/tower_service-eace9da83de8d2ed.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-service-0.3.3/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtower_service-eace9da83de8d2ed.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-service-0.3.3/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tower-service-0.3.3/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/tracing-624ee079969c6ffb.d b/examples/agent_server/target/debug/deps/tracing-624ee079969c6ffb.d new file mode 100644 index 0000000..321e2c6 --- /dev/null +++ b/examples/agent_server/target/debug/deps/tracing-624ee079969c6ffb.d @@ -0,0 +1,12 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/tracing-624ee079969c6ffb.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/dispatcher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/field.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/instrument.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/level_filters.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/subscriber.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtracing-624ee079969c6ffb.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/dispatcher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/field.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/instrument.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/level_filters.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/subscriber.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/dispatcher.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/field.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/instrument.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/level_filters.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/span.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-0.1.44/src/subscriber.rs: diff --git a/examples/agent_server/target/debug/deps/tracing_attributes-dd89f51f7f268213.d b/examples/agent_server/target/debug/deps/tracing_attributes-dd89f51f7f268213.d new file mode 100644 index 0000000..3cde981 --- /dev/null +++ b/examples/agent_server/target/debug/deps/tracing_attributes-dd89f51f7f268213.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/tracing_attributes-dd89f51f7f268213.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/expand.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtracing_attributes-dd89f51f7f268213.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/expand.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-attributes-0.1.31/src/expand.rs: diff --git a/examples/agent_server/target/debug/deps/tracing_core-86839c816b2e0c2e.d b/examples/agent_server/target/debug/deps/tracing_core-86839c816b2e0c2e.d new file mode 100644 index 0000000..2cb8018 --- /dev/null +++ b/examples/agent_server/target/debug/deps/tracing_core-86839c816b2e0c2e.d @@ -0,0 +1,14 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/tracing_core-86839c816b2e0c2e.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/callsite.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/dispatcher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/event.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/field.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/metadata.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/parent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/subscriber.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtracing_core-86839c816b2e0c2e.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/callsite.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/dispatcher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/event.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/field.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/metadata.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/parent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/subscriber.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/lazy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/callsite.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/dispatcher.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/event.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/field.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/metadata.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/parent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/span.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-core-0.1.36/src/subscriber.rs: diff --git a/examples/agent_server/target/debug/deps/tracing_log-4e4514a0c3f7a13a.d b/examples/agent_server/target/debug/deps/tracing_log-4e4514a0c3f7a13a.d new file mode 100644 index 0000000..6787e25 --- /dev/null +++ b/examples/agent_server/target/debug/deps/tracing_log-4e4514a0c3f7a13a.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/tracing_log-4e4514a0c3f7a13a.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-log-0.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-log-0.2.0/src/log_tracer.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtracing_log-4e4514a0c3f7a13a.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-log-0.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-log-0.2.0/src/log_tracer.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-log-0.2.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-log-0.2.0/src/log_tracer.rs: diff --git a/examples/agent_server/target/debug/deps/tracing_subscriber-9a3203c357d69d99.d b/examples/agent_server/target/debug/deps/tracing_subscriber-9a3203c357d69d99.d new file mode 100644 index 0000000..fae4900 --- /dev/null +++ b/examples/agent_server/target/debug/deps/tracing_subscriber-9a3203c357d69d99.d @@ -0,0 +1,40 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/tracing_subscriber-9a3203c357d69d99.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/field/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/field/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/field/delimited.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/field/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/filter_fn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/level.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/prelude.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/registry/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/layer/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/layer/context.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/layer/layered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/env/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/env/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/env/directive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/env/field.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/layer_filters/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/layer_filters/combinator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/targets.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/directive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/registry/extensions.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/registry/sharded.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/registry/stack.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/reload.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/sync.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/fmt_layer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/format/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/format/escape.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/format/pretty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/time/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/time/datetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/writer.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtracing_subscriber-9a3203c357d69d99.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/field/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/field/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/field/delimited.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/field/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/filter_fn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/level.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/prelude.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/registry/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/layer/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/layer/context.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/layer/layered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/env/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/env/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/env/directive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/env/field.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/layer_filters/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/layer_filters/combinator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/targets.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/directive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/registry/extensions.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/registry/sharded.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/registry/stack.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/reload.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/sync.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/fmt_layer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/format/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/format/escape.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/format/pretty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/time/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/time/datetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/writer.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/field/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/field/debug.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/field/delimited.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/field/display.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/filter_fn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/level.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/prelude.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/registry/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/layer/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/layer/context.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/layer/layered.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/env/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/env/builder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/env/directive.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/env/field.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/layer_filters/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/layer_filters/combinator.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/targets.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/filter/directive.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/registry/extensions.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/registry/sharded.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/registry/stack.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/reload.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/sync.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/fmt_layer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/format/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/format/escape.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/format/pretty.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/time/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/time/datetime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tracing-subscriber-0.3.23/src/fmt/writer.rs: diff --git a/examples/agent_server/target/debug/deps/tungstenite-91f3723d4e936b7b.d b/examples/agent_server/target/debug/deps/tungstenite-91f3723d4e936b7b.d new file mode 100644 index 0000000..9a63c6e --- /dev/null +++ b/examples/agent_server/target/debug/deps/tungstenite-91f3723d4e936b7b.d @@ -0,0 +1,23 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/tungstenite-91f3723d4e936b7b.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/client.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/handshake/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/handshake/client.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/handshake/headers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/handshake/machine.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/handshake/server.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/frame/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/frame/coding.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/frame/frame.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/frame/mask.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/message.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/server.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/tls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/util.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtungstenite-91f3723d4e936b7b.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/client.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/handshake/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/handshake/client.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/handshake/headers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/handshake/machine.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/handshake/server.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/frame/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/frame/coding.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/frame/frame.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/frame/mask.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/message.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/server.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/tls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/util.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/buffer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/client.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/handshake/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/handshake/client.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/handshake/headers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/handshake/machine.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/handshake/server.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/frame/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/frame/coding.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/frame/frame.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/frame/mask.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/protocol/message.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/server.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/stream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/tls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tungstenite-0.21.0/src/util.rs: diff --git a/examples/agent_server/target/debug/deps/typenum-0bb98beaf5b40e6d.d b/examples/agent_server/target/debug/deps/typenum-0bb98beaf5b40e6d.d new file mode 100644 index 0000000..0110d59 --- /dev/null +++ b/examples/agent_server/target/debug/deps/typenum-0bb98beaf5b40e6d.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/typenum-0bb98beaf5b40e6d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/bit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen/consts.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/marker_traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/operator_aliases.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/private.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/type_operators.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/uint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/tuple.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libtypenum-0bb98beaf5b40e6d.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/bit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen/consts.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/marker_traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/operator_aliases.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/private.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/type_operators.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/uint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/tuple.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/bit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen/consts.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen/op.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/int.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/marker_traits.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/operator_aliases.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/private.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/type_operators.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/uint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/array.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/tuple.rs: diff --git a/examples/agent_server/target/debug/deps/unicode_ident-8443eb632a3fbe4c.d b/examples/agent_server/target/debug/deps/unicode_ident-8443eb632a3fbe4c.d new file mode 100644 index 0000000..9cdf387 --- /dev/null +++ b/examples/agent_server/target/debug/deps/unicode_ident-8443eb632a3fbe4c.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/unicode_ident-8443eb632a3fbe4c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libunicode_ident-8443eb632a3fbe4c.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libunicode_ident-8443eb632a3fbe4c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs: diff --git a/examples/agent_server/target/debug/deps/untrusted-19fd2289d6420e0d.d b/examples/agent_server/target/debug/deps/untrusted-19fd2289d6420e0d.d new file mode 100644 index 0000000..9f49a8d --- /dev/null +++ b/examples/agent_server/target/debug/deps/untrusted-19fd2289d6420e0d.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/untrusted-19fd2289d6420e0d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/src/input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/src/no_panic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/src/reader.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libuntrusted-19fd2289d6420e0d.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/src/input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/src/no_panic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/src/reader.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/src/input.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/src/no_panic.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/untrusted-0.9.0/src/reader.rs: diff --git a/examples/agent_server/target/debug/deps/url-5422e6f5e81cbd38.d b/examples/agent_server/target/debug/deps/url-5422e6f5e81cbd38.d new file mode 100644 index 0000000..24db545 --- /dev/null +++ b/examples/agent_server/target/debug/deps/url-5422e6f5e81cbd38.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/url-5422e6f5e81cbd38.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/host.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/origin.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/path_segments.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/slicing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/quirks.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/liburl-5422e6f5e81cbd38.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/host.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/origin.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/path_segments.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/slicing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/quirks.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/host.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/origin.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/parser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/path_segments.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/slicing.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/quirks.rs: diff --git a/examples/agent_server/target/debug/deps/utf8-0973d5089af50192.d b/examples/agent_server/target/debug/deps/utf8-0973d5089af50192.d new file mode 100644 index 0000000..771e18c --- /dev/null +++ b/examples/agent_server/target/debug/deps/utf8-0973d5089af50192.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/utf8-0973d5089af50192.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lossy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/read.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libutf8-0973d5089af50192.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lossy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/read.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/lossy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf-8-0.7.6/src/read.rs: diff --git a/examples/agent_server/target/debug/deps/utf8_iter-7da21bedc099d769.d b/examples/agent_server/target/debug/deps/utf8_iter-7da21bedc099d769.d new file mode 100644 index 0000000..7f8f119 --- /dev/null +++ b/examples/agent_server/target/debug/deps/utf8_iter-7da21bedc099d769.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/utf8_iter-7da21bedc099d769.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/indices.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/report.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libutf8_iter-7da21bedc099d769.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/indices.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/report.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/indices.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/report.rs: diff --git a/examples/agent_server/target/debug/deps/version_check-48d66f356588878b.d b/examples/agent_server/target/debug/deps/version_check-48d66f356588878b.d new file mode 100644 index 0000000..81e320e --- /dev/null +++ b/examples/agent_server/target/debug/deps/version_check-48d66f356588878b.d @@ -0,0 +1,10 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/version_check-48d66f356588878b.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libversion_check-48d66f356588878b.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libversion_check-48d66f356588878b.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs: diff --git a/examples/agent_server/target/debug/deps/webpki-52cdf20fac36380a.d b/examples/agent_server/target/debug/deps/webpki-52cdf20fac36380a.d new file mode 100644 index 0000000..06968a9 --- /dev/null +++ b/examples/agent_server/target/debug/deps/webpki-52cdf20fac36380a.d @@ -0,0 +1,36 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/webpki-52cdf20fac36380a.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/der.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/cert.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/end_entity.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/ring_algs.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/rpk_entity.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/signed_data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/subject_name/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/subject_name/dns_name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/subject_name/ip_address.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/subject_name/verify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/time.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/trust_anchor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/crl/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/crl/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/verify_cert.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/x509.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-p256.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-p384.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-p521.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-sha256.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-sha384.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-sha512.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-encryption.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pkcs1-sha256.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pkcs1-sha384.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pkcs1-sha512.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pss-sha256.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pss-sha384.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pss-sha512.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ed25519.der + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libwebpki-52cdf20fac36380a.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/der.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/cert.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/end_entity.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/ring_algs.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/rpk_entity.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/signed_data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/subject_name/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/subject_name/dns_name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/subject_name/ip_address.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/subject_name/verify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/time.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/trust_anchor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/crl/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/crl/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/verify_cert.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/x509.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-p256.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-p384.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-p521.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-sha256.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-sha384.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-sha512.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-encryption.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pkcs1-sha256.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pkcs1-sha384.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pkcs1-sha512.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pss-sha256.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pss-sha384.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pss-sha512.der /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ed25519.der + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/der.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/cert.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/end_entity.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/ring_algs.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/rpk_entity.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/signed_data.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/subject_name/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/subject_name/dns_name.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/subject_name/ip_address.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/subject_name/verify.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/time.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/trust_anchor.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/crl/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/crl/types.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/verify_cert.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/x509.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-p256.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-p384.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-p521.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-sha256.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-sha384.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ecdsa-sha512.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-encryption.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pkcs1-sha256.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pkcs1-sha384.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pkcs1-sha512.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pss-sha256.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pss-sha384.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-rsa-pss-sha512.der: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustls-webpki-0.102.8/src/data/alg-ed25519.der: diff --git a/examples/agent_server/target/debug/deps/webpki_roots-6759103a522ed320.d b/examples/agent_server/target/debug/deps/webpki_roots-6759103a522ed320.d new file mode 100644 index 0000000..67d7b28 --- /dev/null +++ b/examples/agent_server/target/debug/deps/webpki_roots-6759103a522ed320.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/webpki_roots-6759103a522ed320.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-1.0.9/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libwebpki_roots-6759103a522ed320.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-1.0.9/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-1.0.9/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/webpki_roots-b79135aa405a6d6f.d b/examples/agent_server/target/debug/deps/webpki_roots-b79135aa405a6d6f.d new file mode 100644 index 0000000..710ab6c --- /dev/null +++ b/examples/agent_server/target/debug/deps/webpki_roots-b79135aa405a6d6f.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/webpki_roots-b79135aa405a6d6f.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.11/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libwebpki_roots-b79135aa405a6d6f.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.11/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/webpki-roots-0.26.11/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/writeable-d27a59526004cf7e.d b/examples/agent_server/target/debug/deps/writeable-d27a59526004cf7e.d new file mode 100644 index 0000000..ccd6730 --- /dev/null +++ b/examples/agent_server/target/debug/deps/writeable-d27a59526004cf7e.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/writeable-d27a59526004cf7e.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/cmp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/concat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/ops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/parts_write_adapter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/try_writeable.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libwriteable-d27a59526004cf7e.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/cmp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/concat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/ops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/parts_write_adapter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/try_writeable.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/cmp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/concat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/ops.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/parts_write_adapter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/try_writeable.rs: diff --git a/examples/agent_server/target/debug/deps/yoke-a23da5055a12e7d2.d b/examples/agent_server/target/debug/deps/yoke-a23da5055a12e7d2.d new file mode 100644 index 0000000..5ffab72 --- /dev/null +++ b/examples/agent_server/target/debug/deps/yoke-a23da5055a12e7d2.d @@ -0,0 +1,13 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/yoke-a23da5055a12e7d2.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/cartable_ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/kinda_sorta_dangling.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/macro_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/yoke.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/yokeable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/zero_from.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libyoke-a23da5055a12e7d2.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/cartable_ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/kinda_sorta_dangling.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/macro_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/yoke.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/yokeable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/zero_from.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/cartable_ptr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/either.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/kinda_sorta_dangling.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/macro_impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/yoke.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/yokeable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/zero_from.rs: diff --git a/examples/agent_server/target/debug/deps/yoke_derive-50144caf197ce3d3.d b/examples/agent_server/target/debug/deps/yoke_derive-50144caf197ce3d3.d new file mode 100644 index 0000000..07d6eb1 --- /dev/null +++ b/examples/agent_server/target/debug/deps/yoke_derive-50144caf197ce3d3.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/yoke_derive-50144caf197ce3d3.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lifetimes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/visitor.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libyoke_derive-50144caf197ce3d3.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lifetimes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/visitor.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lifetimes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/visitor.rs: diff --git a/examples/agent_server/target/debug/deps/zerocopy-b770e178a71ee8b7.d b/examples/agent_server/target/debug/deps/zerocopy-b770e178a71ee8b7.d new file mode 100644 index 0000000..914c795 --- /dev/null +++ b/examples/agent_server/target/debug/deps/zerocopy-b770e178a71ee8b7.d @@ -0,0 +1,25 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/zerocopy-b770e178a71ee8b7.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/util/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/util/macro_util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/byte_slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/byteorder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/deprecated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/layout.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/pointer/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/pointer/inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/pointer/invariant.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/pointer/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/pointer/transmute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/split_at.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/wrappers.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libzerocopy-b770e178a71ee8b7.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/util/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/util/macro_util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/byte_slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/byteorder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/deprecated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/layout.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/pointer/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/pointer/inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/pointer/invariant.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/pointer/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/pointer/transmute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/split_at.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/wrappers.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/util/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/util/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/util/macro_util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/byte_slice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/byteorder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/deprecated.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/layout.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/pointer/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/pointer/inner.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/pointer/invariant.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/pointer/ptr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/pointer/transmute.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/ref.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/split_at.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.55/src/wrappers.rs: + +# env-dep:CARGO_PKG_VERSION=0.8.55 diff --git a/examples/agent_server/target/debug/deps/zerofrom-77e989a3aae75ab1.d b/examples/agent_server/target/debug/deps/zerofrom-77e989a3aae75ab1.d new file mode 100644 index 0000000..547e746 --- /dev/null +++ b/examples/agent_server/target/debug/deps/zerofrom-77e989a3aae75ab1.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/zerofrom-77e989a3aae75ab1.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/macro_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/zero_from.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libzerofrom-77e989a3aae75ab1.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/macro_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/zero_from.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/macro_impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/zero_from.rs: diff --git a/examples/agent_server/target/debug/deps/zerofrom_derive-3a4d23d5b36d2ca9.d b/examples/agent_server/target/debug/deps/zerofrom_derive-3a4d23d5b36d2ca9.d new file mode 100644 index 0000000..0813998 --- /dev/null +++ b/examples/agent_server/target/debug/deps/zerofrom_derive-3a4d23d5b36d2ca9.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/zerofrom_derive-3a4d23d5b36d2ca9.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/visitor.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libzerofrom_derive-3a4d23d5b36d2ca9.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/visitor.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/visitor.rs: diff --git a/examples/agent_server/target/debug/deps/zeroize-b69ca5a7f93c9720.d b/examples/agent_server/target/debug/deps/zeroize-b69ca5a7f93c9720.d new file mode 100644 index 0000000..0c56d04 --- /dev/null +++ b/examples/agent_server/target/debug/deps/zeroize-b69ca5a7f93c9720.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/zeroize-b69ca5a7f93c9720.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.9.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.9.0/src/x86.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.9.0/src/barrier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.9.0/src/stack.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.9.0/src/../README.md + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libzeroize-b69ca5a7f93c9720.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.9.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.9.0/src/x86.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.9.0/src/barrier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.9.0/src/stack.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.9.0/src/../README.md + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.9.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.9.0/src/x86.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.9.0/src/barrier.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.9.0/src/stack.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize-1.9.0/src/../README.md: diff --git a/examples/agent_server/target/debug/deps/zeroize_derive-d3fa77acb6994567.d b/examples/agent_server/target/debug/deps/zeroize_derive-d3fa77acb6994567.d new file mode 100644 index 0000000..fc79784 --- /dev/null +++ b/examples/agent_server/target/debug/deps/zeroize_derive-d3fa77acb6994567.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/zeroize_derive-d3fa77acb6994567.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize_derive-1.5.0/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libzeroize_derive-d3fa77acb6994567.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize_derive-1.5.0/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zeroize_derive-1.5.0/src/lib.rs: diff --git a/examples/agent_server/target/debug/deps/zerotrie-e366599f5babf6f1.d b/examples/agent_server/target/debug/deps/zerotrie-e366599f5babf6f1.d new file mode 100644 index 0000000..cdc727d --- /dev/null +++ b/examples/agent_server/target/debug/deps/zerotrie-e366599f5babf6f1.d @@ -0,0 +1,19 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/zerotrie-e366599f5babf6f1.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/branch_meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/store.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/slice_indices.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/byte_phf/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/cursor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/helpers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/options.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/varint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/zerotrie.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libzerotrie-e366599f5babf6f1.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/branch_meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/store.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/slice_indices.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/byte_phf/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/cursor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/helpers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/options.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/varint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/zerotrie.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/branch_meta.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/builder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/store.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/slice_indices.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/byte_phf/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/cursor.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/helpers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/options.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/reader.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/varint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/zerotrie.rs: diff --git a/examples/agent_server/target/debug/deps/zerovec-460e8f612daf2d2e.d b/examples/agent_server/target/debug/deps/zerovec-460e8f612daf2d2e.d new file mode 100644 index 0000000..894ba9a --- /dev/null +++ b/examples/agent_server/target/debug/deps/zerovec-460e8f612daf2d2e.d @@ -0,0 +1,28 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/zerovec-460e8f612daf2d2e.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/cow.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/components.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/lengthless.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/vec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/chars.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/encode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/multi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/niche.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/plain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/slices.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuplevar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/vartuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/yoke_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerofrom_impls.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libzerovec-460e8f612daf2d2e.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/cow.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/components.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/lengthless.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/vec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/chars.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/encode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/multi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/niche.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/plain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/slices.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuplevar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/vartuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/yoke_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerofrom_impls.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/cow.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/components.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/lengthless.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/slice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/vec.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/slice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/chars.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/encode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/multi.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/niche.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/option.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/plain.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/slices.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuple.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuplevar.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/vartuple.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/yoke_impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerofrom_impls.rs: diff --git a/examples/agent_server/target/debug/deps/zerovec_derive-1b28ea032c489d8a.d b/examples/agent_server/target/debug/deps/zerovec_derive-1b28ea032c489d8a.d new file mode 100644 index 0000000..67ab094 --- /dev/null +++ b/examples/agent_server/target/debug/deps/zerovec_derive-1b28ea032c489d8a.d @@ -0,0 +1,10 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/zerovec_derive-1b28ea032c489d8a.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_ule.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_varule.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/ule.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/varule.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libzerovec_derive-1b28ea032c489d8a.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_ule.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_varule.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/ule.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/varule.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_ule.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_varule.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/ule.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/varule.rs: diff --git a/examples/agent_server/target/debug/deps/zmij-09764c09118bc5c9.d b/examples/agent_server/target/debug/deps/zmij-09764c09118bc5c9.d new file mode 100644 index 0000000..8d657f1 --- /dev/null +++ b/examples/agent_server/target/debug/deps/zmij-09764c09118bc5c9.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/zmij-09764c09118bc5c9.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/stdarch_x86.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/traits.rs + +/home/user/antigravity-sdk-rust/examples/agent_server/target/debug/deps/libzmij-09764c09118bc5c9.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/stdarch_x86.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/traits.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/stdarch_x86.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/traits.rs: diff --git a/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz09ysw7p-1tt06ru-eacf5ros1pbpjvnv4jowljr2m/dep-graph.bin b/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz09ysw7p-1tt06ru-eacf5ros1pbpjvnv4jowljr2m/dep-graph.bin new file mode 100644 index 0000000..ff6e7df Binary files /dev/null and b/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz09ysw7p-1tt06ru-eacf5ros1pbpjvnv4jowljr2m/dep-graph.bin differ diff --git a/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz09ysw7p-1tt06ru-eacf5ros1pbpjvnv4jowljr2m/query-cache.bin b/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz09ysw7p-1tt06ru-eacf5ros1pbpjvnv4jowljr2m/query-cache.bin new file mode 100644 index 0000000..fd05766 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz09ysw7p-1tt06ru-eacf5ros1pbpjvnv4jowljr2m/query-cache.bin differ diff --git a/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz09ysw7p-1tt06ru-eacf5ros1pbpjvnv4jowljr2m/work-products.bin b/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz09ysw7p-1tt06ru-eacf5ros1pbpjvnv4jowljr2m/work-products.bin new file mode 100644 index 0000000..3b4e26a Binary files /dev/null and b/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz09ysw7p-1tt06ru-eacf5ros1pbpjvnv4jowljr2m/work-products.bin differ diff --git a/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz0f97kf6-1pb9qew-7xgjlzfyiws3ucakcq6ycllq3/dep-graph.bin b/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz0f97kf6-1pb9qew-7xgjlzfyiws3ucakcq6ycllq3/dep-graph.bin new file mode 100644 index 0000000..d60dd81 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz0f97kf6-1pb9qew-7xgjlzfyiws3ucakcq6ycllq3/dep-graph.bin differ diff --git a/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz0f97kf6-1pb9qew-7xgjlzfyiws3ucakcq6ycllq3/query-cache.bin b/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz0f97kf6-1pb9qew-7xgjlzfyiws3ucakcq6ycllq3/query-cache.bin new file mode 100644 index 0000000..f17d5a0 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz0f97kf6-1pb9qew-7xgjlzfyiws3ucakcq6ycllq3/query-cache.bin differ diff --git a/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz0f97kf6-1pb9qew-7xgjlzfyiws3ucakcq6ycllq3/work-products.bin b/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz0f97kf6-1pb9qew-7xgjlzfyiws3ucakcq6ycllq3/work-products.bin new file mode 100644 index 0000000..3b4e26a Binary files /dev/null and b/examples/agent_server/target/debug/incremental/agent_server-1u2uo4rnvba61/s-hkz0f97kf6-1pb9qew-7xgjlzfyiws3ucakcq6ycllq3/work-products.bin differ diff --git a/examples/agent_server/target/debug/incremental/agent_server-25vj9yfbzrbjr/s-hkysm34n47-1mgq5dt-djdyqufu7wfpuk5o5z216kto2/dep-graph.bin b/examples/agent_server/target/debug/incremental/agent_server-25vj9yfbzrbjr/s-hkysm34n47-1mgq5dt-djdyqufu7wfpuk5o5z216kto2/dep-graph.bin new file mode 100644 index 0000000..bc49012 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/agent_server-25vj9yfbzrbjr/s-hkysm34n47-1mgq5dt-djdyqufu7wfpuk5o5z216kto2/dep-graph.bin differ diff --git a/examples/agent_server/target/debug/incremental/agent_server-25vj9yfbzrbjr/s-hkysm34n47-1mgq5dt-djdyqufu7wfpuk5o5z216kto2/query-cache.bin b/examples/agent_server/target/debug/incremental/agent_server-25vj9yfbzrbjr/s-hkysm34n47-1mgq5dt-djdyqufu7wfpuk5o5z216kto2/query-cache.bin new file mode 100644 index 0000000..e3d6ed3 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/agent_server-25vj9yfbzrbjr/s-hkysm34n47-1mgq5dt-djdyqufu7wfpuk5o5z216kto2/query-cache.bin differ diff --git a/examples/agent_server/target/debug/incremental/agent_server-25vj9yfbzrbjr/s-hkysm34n47-1mgq5dt-djdyqufu7wfpuk5o5z216kto2/work-products.bin b/examples/agent_server/target/debug/incremental/agent_server-25vj9yfbzrbjr/s-hkysm34n47-1mgq5dt-djdyqufu7wfpuk5o5z216kto2/work-products.bin new file mode 100644 index 0000000..3b4e26a Binary files /dev/null and b/examples/agent_server/target/debug/incremental/agent_server-25vj9yfbzrbjr/s-hkysm34n47-1mgq5dt-djdyqufu7wfpuk5o5z216kto2/work-products.bin differ diff --git a/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz09x1v57-1qhxng1-cnhtzxzswo08op4ekbnc8ry8a/dep-graph.bin b/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz09x1v57-1qhxng1-cnhtzxzswo08op4ekbnc8ry8a/dep-graph.bin new file mode 100644 index 0000000..3d3ceb0 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz09x1v57-1qhxng1-cnhtzxzswo08op4ekbnc8ry8a/dep-graph.bin differ diff --git a/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz09x1v57-1qhxng1-cnhtzxzswo08op4ekbnc8ry8a/metadata.rmeta b/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz09x1v57-1qhxng1-cnhtzxzswo08op4ekbnc8ry8a/metadata.rmeta new file mode 100644 index 0000000..cd8dca3 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz09x1v57-1qhxng1-cnhtzxzswo08op4ekbnc8ry8a/metadata.rmeta differ diff --git a/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz09x1v57-1qhxng1-cnhtzxzswo08op4ekbnc8ry8a/query-cache.bin b/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz09x1v57-1qhxng1-cnhtzxzswo08op4ekbnc8ry8a/query-cache.bin new file mode 100644 index 0000000..06ef239 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz09x1v57-1qhxng1-cnhtzxzswo08op4ekbnc8ry8a/query-cache.bin differ diff --git a/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz09x1v57-1qhxng1-cnhtzxzswo08op4ekbnc8ry8a/work-products.bin b/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz09x1v57-1qhxng1-cnhtzxzswo08op4ekbnc8ry8a/work-products.bin new file mode 100644 index 0000000..4f769ac Binary files /dev/null and b/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz09x1v57-1qhxng1-cnhtzxzswo08op4ekbnc8ry8a/work-products.bin differ diff --git a/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz0f5hzcy-0jcv79j-a0ep1kq2corigzujr6nlb9eph/dep-graph.bin b/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz0f5hzcy-0jcv79j-a0ep1kq2corigzujr6nlb9eph/dep-graph.bin new file mode 100644 index 0000000..c0b1d75 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz0f5hzcy-0jcv79j-a0ep1kq2corigzujr6nlb9eph/dep-graph.bin differ diff --git a/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz0f5hzcy-0jcv79j-a0ep1kq2corigzujr6nlb9eph/metadata.rmeta b/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz0f5hzcy-0jcv79j-a0ep1kq2corigzujr6nlb9eph/metadata.rmeta new file mode 100644 index 0000000..2691a05 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz0f5hzcy-0jcv79j-a0ep1kq2corigzujr6nlb9eph/metadata.rmeta differ diff --git a/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz0f5hzcy-0jcv79j-a0ep1kq2corigzujr6nlb9eph/query-cache.bin b/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz0f5hzcy-0jcv79j-a0ep1kq2corigzujr6nlb9eph/query-cache.bin new file mode 100644 index 0000000..b87ad3e Binary files /dev/null and b/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz0f5hzcy-0jcv79j-a0ep1kq2corigzujr6nlb9eph/query-cache.bin differ diff --git a/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz0f5hzcy-0jcv79j-a0ep1kq2corigzujr6nlb9eph/work-products.bin b/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz0f5hzcy-0jcv79j-a0ep1kq2corigzujr6nlb9eph/work-products.bin new file mode 100644 index 0000000..4f769ac Binary files /dev/null and b/examples/agent_server/target/debug/incremental/antigravity_sdk_rust-3p080az5l95jq/s-hkz0f5hzcy-0jcv79j-a0ep1kq2corigzujr6nlb9eph/work-products.bin differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/0s9z0qyw86ahvtyhwj41sijla.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/0s9z0qyw86ahvtyhwj41sijla.o new file mode 100644 index 0000000..b192662 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/0s9z0qyw86ahvtyhwj41sijla.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/0uy7xrq8vjmjc3dr5kxs83zdu.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/0uy7xrq8vjmjc3dr5kxs83zdu.o new file mode 100644 index 0000000..8adaaa5 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/0uy7xrq8vjmjc3dr5kxs83zdu.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/1664brrd8fldwknsqqh1ssezl.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/1664brrd8fldwknsqqh1ssezl.o new file mode 100644 index 0000000..d0c321b Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/1664brrd8fldwknsqqh1ssezl.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/19s0ty5d6azux901m59q5r0pa.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/19s0ty5d6azux901m59q5r0pa.o new file mode 100644 index 0000000..238c2a9 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/19s0ty5d6azux901m59q5r0pa.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/1gda6i6ztqu1fbtllpbv4zn83.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/1gda6i6ztqu1fbtllpbv4zn83.o new file mode 100644 index 0000000..3d4b30f Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/1gda6i6ztqu1fbtllpbv4zn83.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/1ikah0t69glv1binbt0a2zkdz.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/1ikah0t69glv1binbt0a2zkdz.o new file mode 100644 index 0000000..872e487 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/1ikah0t69glv1binbt0a2zkdz.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/2772668ws5143iwop23rw768m.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/2772668ws5143iwop23rw768m.o new file mode 100644 index 0000000..910663c Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/2772668ws5143iwop23rw768m.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/2dnlq710jdjiwyu1vj7emtiv9.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/2dnlq710jdjiwyu1vj7emtiv9.o new file mode 100644 index 0000000..30c776e Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/2dnlq710jdjiwyu1vj7emtiv9.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/2ibz7ancb6xzfbaluwnf7t9cq.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/2ibz7ancb6xzfbaluwnf7t9cq.o new file mode 100644 index 0000000..5a1f40d Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/2ibz7ancb6xzfbaluwnf7t9cq.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/2t7nmoxooox467mhhip1wbn9m.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/2t7nmoxooox467mhhip1wbn9m.o new file mode 100644 index 0000000..dc283ee Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/2t7nmoxooox467mhhip1wbn9m.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/30ouduwjya17sab677wizl00i.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/30ouduwjya17sab677wizl00i.o new file mode 100644 index 0000000..6e2606e Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/30ouduwjya17sab677wizl00i.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/31tiblyc2qc6w6y80yolrtndo.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/31tiblyc2qc6w6y80yolrtndo.o new file mode 100644 index 0000000..d55901f Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/31tiblyc2qc6w6y80yolrtndo.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/3506ylg3i6xfw4xvphlq0ulaf.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/3506ylg3i6xfw4xvphlq0ulaf.o new file mode 100644 index 0000000..e08de21 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/3506ylg3i6xfw4xvphlq0ulaf.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/3h9h3dx5hl99jq82bjo0h0kax.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/3h9h3dx5hl99jq82bjo0h0kax.o new file mode 100644 index 0000000..08dc57f Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/3h9h3dx5hl99jq82bjo0h0kax.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/3tkap4bpcre6yy7m6p0vwy4ki.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/3tkap4bpcre6yy7m6p0vwy4ki.o new file mode 100644 index 0000000..1e21d59 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/3tkap4bpcre6yy7m6p0vwy4ki.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/3up5lycpln7xr79drghqq9eiq.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/3up5lycpln7xr79drghqq9eiq.o new file mode 100644 index 0000000..0b6c47a Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/3up5lycpln7xr79drghqq9eiq.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/42go2ps3waovg7e0wj0mprmpz.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/42go2ps3waovg7e0wj0mprmpz.o new file mode 100644 index 0000000..e858436 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/42go2ps3waovg7e0wj0mprmpz.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/4ra9nzxhumgdjboy261t917zh.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/4ra9nzxhumgdjboy261t917zh.o new file mode 100644 index 0000000..fa1cbe7 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/4ra9nzxhumgdjboy261t917zh.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/4rltrewyymir1kqumlmv7suwq.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/4rltrewyymir1kqumlmv7suwq.o new file mode 100644 index 0000000..1bf26c4 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/4rltrewyymir1kqumlmv7suwq.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/4s5n0p4gghdkmdkupklg268lr.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/4s5n0p4gghdkmdkupklg268lr.o new file mode 100644 index 0000000..37f5bf4 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/4s5n0p4gghdkmdkupklg268lr.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/4vvxekbt0jehhufwypcu1qdwa.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/4vvxekbt0jehhufwypcu1qdwa.o new file mode 100644 index 0000000..b305cfa Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/4vvxekbt0jehhufwypcu1qdwa.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/50yu9xal1gve34tb9sdnr84gg.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/50yu9xal1gve34tb9sdnr84gg.o new file mode 100644 index 0000000..c193092 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/50yu9xal1gve34tb9sdnr84gg.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/54kgi9egkvv1i1zhw9k1vrxz5.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/54kgi9egkvv1i1zhw9k1vrxz5.o new file mode 100644 index 0000000..ad34a90 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/54kgi9egkvv1i1zhw9k1vrxz5.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/5fyr9yiecqo09ayaukpqwrvwt.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/5fyr9yiecqo09ayaukpqwrvwt.o new file mode 100644 index 0000000..272f13d Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/5fyr9yiecqo09ayaukpqwrvwt.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/5y8hof0nthet8mff0e22gvmkx.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/5y8hof0nthet8mff0e22gvmkx.o new file mode 100644 index 0000000..7915b36 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/5y8hof0nthet8mff0e22gvmkx.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/5z305jvryvdewmso9nih1vik0.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/5z305jvryvdewmso9nih1vik0.o new file mode 100644 index 0000000..8ea03b8 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/5z305jvryvdewmso9nih1vik0.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/6cnd13fk2d9quhcl71xy4qor3.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/6cnd13fk2d9quhcl71xy4qor3.o new file mode 100644 index 0000000..454cf4a Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/6cnd13fk2d9quhcl71xy4qor3.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/6g60cw0jbmgex4riatyoo21ga.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/6g60cw0jbmgex4riatyoo21ga.o new file mode 100644 index 0000000..e6a11e6 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/6g60cw0jbmgex4riatyoo21ga.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/6tgczvrvi9hwzhs3z7qgipudz.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/6tgczvrvi9hwzhs3z7qgipudz.o new file mode 100644 index 0000000..35b0468 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/6tgczvrvi9hwzhs3z7qgipudz.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/6z5ea4gjy251p7cg0uahfpszr.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/6z5ea4gjy251p7cg0uahfpszr.o new file mode 100644 index 0000000..ae48956 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/6z5ea4gjy251p7cg0uahfpszr.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7a26kozk4bsuwhz7mv39y1f9m.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7a26kozk4bsuwhz7mv39y1f9m.o new file mode 100644 index 0000000..d4df1ec Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7a26kozk4bsuwhz7mv39y1f9m.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7ki2o9yt1i38sv21lhuqpl8ei.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7ki2o9yt1i38sv21lhuqpl8ei.o new file mode 100644 index 0000000..ef4d36d Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7ki2o9yt1i38sv21lhuqpl8ei.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7km0u6fq5zj9enyr58oba2fr9.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7km0u6fq5zj9enyr58oba2fr9.o new file mode 100644 index 0000000..bda7c13 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7km0u6fq5zj9enyr58oba2fr9.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7ooxp1ig2ahan9e6kzyn7hlwv.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7ooxp1ig2ahan9e6kzyn7hlwv.o new file mode 100644 index 0000000..f26832b Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7ooxp1ig2ahan9e6kzyn7hlwv.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7ou5lvhjg0uruzuhgi96rxka0.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7ou5lvhjg0uruzuhgi96rxka0.o new file mode 100644 index 0000000..bca8cdd Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7ou5lvhjg0uruzuhgi96rxka0.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7vhj2b4mvi79cp2qqb8ox5g15.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7vhj2b4mvi79cp2qqb8ox5g15.o new file mode 100644 index 0000000..235cee8 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7vhj2b4mvi79cp2qqb8ox5g15.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7vm2otpxtjm5ogb1ffpm3tusn.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7vm2otpxtjm5ogb1ffpm3tusn.o new file mode 100644 index 0000000..dd6226d Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7vm2otpxtjm5ogb1ffpm3tusn.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7w9vwrmk16l0md0w066q6tsn5.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7w9vwrmk16l0md0w066q6tsn5.o new file mode 100644 index 0000000..6c719e2 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/7w9vwrmk16l0md0w066q6tsn5.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/83mxy7a7hc4tlzthbgt0s2ctp.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/83mxy7a7hc4tlzthbgt0s2ctp.o new file mode 100644 index 0000000..445ae82 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/83mxy7a7hc4tlzthbgt0s2ctp.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/8ag7y4thcrwcio5ihey6nyzuf.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/8ag7y4thcrwcio5ihey6nyzuf.o new file mode 100644 index 0000000..95bc0fc Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/8ag7y4thcrwcio5ihey6nyzuf.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/8asvxrhfvy6ib1h5v8fk76e41.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/8asvxrhfvy6ib1h5v8fk76e41.o new file mode 100644 index 0000000..21d3d67 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/8asvxrhfvy6ib1h5v8fk76e41.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/8qcclmnhiaskn3wp2ee1jiurk.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/8qcclmnhiaskn3wp2ee1jiurk.o new file mode 100644 index 0000000..063173e Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/8qcclmnhiaskn3wp2ee1jiurk.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/8qiq2uws2kcbc7b3p3iddymx4.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/8qiq2uws2kcbc7b3p3iddymx4.o new file mode 100644 index 0000000..073bcdd Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/8qiq2uws2kcbc7b3p3iddymx4.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/8wa4j3jmf4rlar63iqnrj0bw9.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/8wa4j3jmf4rlar63iqnrj0bw9.o new file mode 100644 index 0000000..4124032 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/8wa4j3jmf4rlar63iqnrj0bw9.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/9rlzizn4hx2vm7yt7hk29jycn.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/9rlzizn4hx2vm7yt7hk29jycn.o new file mode 100644 index 0000000..c836377 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/9rlzizn4hx2vm7yt7hk29jycn.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/9shgbhqq8p821qx6n3z81z3dd.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/9shgbhqq8p821qx6n3z81z3dd.o new file mode 100644 index 0000000..8df5220 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/9shgbhqq8p821qx6n3z81z3dd.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/9wwzv51qf6en6izoieg6r3uvs.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/9wwzv51qf6en6izoieg6r3uvs.o new file mode 100644 index 0000000..3aaf730 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/9wwzv51qf6en6izoieg6r3uvs.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/a3l8q5lwldyenk22u3kg6ejsz.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/a3l8q5lwldyenk22u3kg6ejsz.o new file mode 100644 index 0000000..fc90d09 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/a3l8q5lwldyenk22u3kg6ejsz.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/a87678u359ukd0gbao66ebqni.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/a87678u359ukd0gbao66ebqni.o new file mode 100644 index 0000000..6803e9a Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/a87678u359ukd0gbao66ebqni.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/acc8897jvthzg10angt7uedo8.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/acc8897jvthzg10angt7uedo8.o new file mode 100644 index 0000000..30c0889 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/acc8897jvthzg10angt7uedo8.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/aedomxzjijo8fy71ajc9ceor9.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/aedomxzjijo8fy71ajc9ceor9.o new file mode 100644 index 0000000..3ed0fb5 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/aedomxzjijo8fy71ajc9ceor9.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/ai089bm76oam99arr2lf8c4td.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/ai089bm76oam99arr2lf8c4td.o new file mode 100644 index 0000000..cd16608 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/ai089bm76oam99arr2lf8c4td.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/aq6ybzvy5ybjcetl0zt5yuxh0.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/aq6ybzvy5ybjcetl0zt5yuxh0.o new file mode 100644 index 0000000..619d51f Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/aq6ybzvy5ybjcetl0zt5yuxh0.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/b3swbpogopet69iy6fcppqpg2.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/b3swbpogopet69iy6fcppqpg2.o new file mode 100644 index 0000000..959f8e9 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/b3swbpogopet69iy6fcppqpg2.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/b73984krh6ngxzlf20sddsrz8.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/b73984krh6ngxzlf20sddsrz8.o new file mode 100644 index 0000000..1fa085a Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/b73984krh6ngxzlf20sddsrz8.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bbjo1tgv78nq4bozof6h0ykw4.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bbjo1tgv78nq4bozof6h0ykw4.o new file mode 100644 index 0000000..16ad3ec Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bbjo1tgv78nq4bozof6h0ykw4.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bbkzg5bkyv0bpo96axix0r5c6.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bbkzg5bkyv0bpo96axix0r5c6.o new file mode 100644 index 0000000..17f7022 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bbkzg5bkyv0bpo96axix0r5c6.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bfdw6mth5bqi1uhmmir214g9c.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bfdw6mth5bqi1uhmmir214g9c.o new file mode 100644 index 0000000..bf80197 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bfdw6mth5bqi1uhmmir214g9c.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bjavj4zrh3x51loqof0t74e6r.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bjavj4zrh3x51loqof0t74e6r.o new file mode 100644 index 0000000..42bc47c Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bjavj4zrh3x51loqof0t74e6r.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bl8cov5we6vsrfwvnav823927.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bl8cov5we6vsrfwvnav823927.o new file mode 100644 index 0000000..a0e516d Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bl8cov5we6vsrfwvnav823927.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bm0lvk8urxdyyz4nay0rwckei.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bm0lvk8urxdyyz4nay0rwckei.o new file mode 100644 index 0000000..9216aa3 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bm0lvk8urxdyyz4nay0rwckei.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bpfjzp09k6t7h26w2wtt4ngyi.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bpfjzp09k6t7h26w2wtt4ngyi.o new file mode 100644 index 0000000..6a4b119 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bpfjzp09k6t7h26w2wtt4ngyi.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bqn6d53vlwsds2h38azyit2dw.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bqn6d53vlwsds2h38azyit2dw.o new file mode 100644 index 0000000..ccc8cbb Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bqn6d53vlwsds2h38azyit2dw.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bzv1102r19rdzimrnbwdabmch.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bzv1102r19rdzimrnbwdabmch.o new file mode 100644 index 0000000..f5e3238 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/bzv1102r19rdzimrnbwdabmch.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/c8f8l9andexuuesvs3ushssbv.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/c8f8l9andexuuesvs3ushssbv.o new file mode 100644 index 0000000..28675ab Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/c8f8l9andexuuesvs3ushssbv.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/ci4bwbrhvpb6cagyblw26tl1h.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/ci4bwbrhvpb6cagyblw26tl1h.o new file mode 100644 index 0000000..a361a81 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/ci4bwbrhvpb6cagyblw26tl1h.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/d6et29kvqsrdvgltv1ejlpcyh.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/d6et29kvqsrdvgltv1ejlpcyh.o new file mode 100644 index 0000000..448ec14 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/d6et29kvqsrdvgltv1ejlpcyh.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/d96lysq2a6ndlf4wyvlsv4ovq.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/d96lysq2a6ndlf4wyvlsv4ovq.o new file mode 100644 index 0000000..e1340d1 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/d96lysq2a6ndlf4wyvlsv4ovq.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/dep-graph.bin b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/dep-graph.bin new file mode 100644 index 0000000..8083b24 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/dep-graph.bin differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/dfyajkm1ghn5bbp4duhmr991e.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/dfyajkm1ghn5bbp4duhmr991e.o new file mode 100644 index 0000000..1e35465 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/dfyajkm1ghn5bbp4duhmr991e.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/dgdhsoe9ozq7p8v2v2wb3twzi.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/dgdhsoe9ozq7p8v2v2wb3twzi.o new file mode 100644 index 0000000..562bb23 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/dgdhsoe9ozq7p8v2v2wb3twzi.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/dwgyj2gv7djf8d5y300kixkpv.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/dwgyj2gv7djf8d5y300kixkpv.o new file mode 100644 index 0000000..473594d Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/dwgyj2gv7djf8d5y300kixkpv.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/e0uyf1p8ui8flagtdv2f4qgz6.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/e0uyf1p8ui8flagtdv2f4qgz6.o new file mode 100644 index 0000000..0a54382 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/e0uyf1p8ui8flagtdv2f4qgz6.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/e7d9zo2w9ebcfth929ihy013u.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/e7d9zo2w9ebcfth929ihy013u.o new file mode 100644 index 0000000..6f1d176 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/e7d9zo2w9ebcfth929ihy013u.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/f45soe2s4xwwnc1jy75er22cj.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/f45soe2s4xwwnc1jy75er22cj.o new file mode 100644 index 0000000..ab49420 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/f45soe2s4xwwnc1jy75er22cj.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/f4n46woimsfmd97rsk9c7es4p.o b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/f4n46woimsfmd97rsk9c7es4p.o new file mode 100644 index 0000000..311b239 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/f4n46woimsfmd97rsk9c7es4p.o differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/query-cache.bin b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/query-cache.bin new file mode 100644 index 0000000..b78a855 Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/query-cache.bin differ diff --git a/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/work-products.bin b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/work-products.bin new file mode 100644 index 0000000..5f537bd Binary files /dev/null and b/examples/agent_server/target/debug/incremental/build_script_build-1fpuc74omis5d/s-hkyslxw7us-0th36en-3n2422lkktz3qf2bptolushiw/work-products.bin differ diff --git a/examples/custom_tools.rs b/examples/custom_tools.rs index 05d72b5..af1a764 100644 --- a/examples/custom_tools.rs +++ b/examples/custom_tools.rs @@ -1,5 +1,6 @@ use antigravity_sdk_rust::agent::Agent; use antigravity_sdk_rust::policy; +use antigravity_sdk_rust::tool_context::ToolContext; use antigravity_sdk_rust::tools::Tool; use serde_json::Value; use std::collections::HashMap; @@ -106,6 +107,50 @@ impl Tool for RecordFruitTool { } } +/// A tool that keeps its state in the session rather than in the process. +/// +/// `needs_context()` is the opt-in; `call_with_context` then receives the +/// session-scoped [`ToolContext`]. `update_state` is a read-modify-write under +/// one lock, so two of these running concurrently cannot lose a count. +struct CallCounterTool; + +impl Tool for CallCounterTool { + fn name(&self) -> &'static str { + "count_requests" + } + + fn description(&self) -> &'static str { + "Reports how many times it has been called during this session." + } + + fn parameters_json_schema(&self) -> &'static str { + r#"{"type": "object", "properties": {}}"# + } + + async fn call(&self, _args: Value) -> Result { + // Never reached: a needs_context tool called without a context is an + // error result, not a silent fallback to this path. + Err(anyhow::anyhow!("count_requests requires a ToolContext")) + } + + fn needs_context(&self) -> bool { + true + } + + async fn call_with_context( + &self, + _args: Value, + context: &ToolContext, + ) -> Result { + context.update_state::("calls", |current| Some(current.unwrap_or(0) + 1)); + let calls: u32 = context.get_state("calls").unwrap_or(0); + let conversation = context.conversation_id().unwrap_or_default(); + Ok(Value::String(format!( + "called {calls} time(s) in conversation {conversation}" + ))) + } +} + #[tokio::main] async fn main() -> Result<(), anyhow::Error> { // Initialize tracing subscriber @@ -145,11 +190,13 @@ async fn main() -> Result<(), anyhow::Error> { Arc::new(RecordFruitTool { inventory: inventory.clone(), }), + Arc::new(CallCounterTool), ]) .policies(vec![ policy::deny_all(), policy::allow("lookup_fruit_sku"), policy::allow("record_fruit"), + policy::allow("count_requests"), ]) .build(); @@ -179,6 +226,15 @@ async fn main() -> Result<(), anyhow::Error> { println!(" Agent: {}", response.text); } + // Context-aware tool: its state lives in the session, not in this process. + println!("\n === Context-Aware Tool Demo ==="); + for _ in 0..2 { + let prompt = "Call count_requests and tell me exactly what it returned."; + println!("\n User: {}", prompt); + let response = agent.chat(prompt).await?; + println!(" Agent: {}", response.text); + } + agent.stop().await?; Ok(()) } diff --git a/examples/leptos_axum/target/.future-incompat-report.json b/examples/leptos_axum/target/.future-incompat-report.json new file mode 100644 index 0000000..8883c69 --- /dev/null +++ b/examples/leptos_axum/target/.future-incompat-report.json @@ -0,0 +1 @@ +{"version":0,"next_id":2,"reports":[{"id":1,"suggestion_message":"to solve this problem, you can try the following approaches:\n\n- ensure the maintainers know of this problem (e.g. creating a bug report if needed)\nor even helping with a fix (e.g. by creating a pull request)\n - proc-macro-error2@2.0.1\n - repository: https://github.com/GnomedDev/proc-macro-error-2\n - detailed warning command: `cargo report future-incompatibilities --id 1 --package proc-macro-error2@2.0.1`\n\n- use your own version of the dependency with the `[patch]` section in `Cargo.toml`\nFor more information, see:\nhttps://doc.rust-lang.org/cargo/reference/overriding-dependencies.html#the-patch-section\n","per_package":{"proc-macro-error2@2.0.1":"The package `proc-macro-error2 v2.0.1` currently triggers the following future incompatibility lints:\n> \u001b[1m\u001b[33mwarning[E0365]\u001b[0m\u001b[1m: extern crate `proc_macro` is private and cannot be re-exported\u001b[0m\n> \u001b[1m\u001b[94m--> \u001b[0m/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/lib.rs:494:13\n> \u001b[1m\u001b[94m|\u001b[0m\n> \u001b[1m\u001b[94m494\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use proc_macro;\n> \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n> \u001b[1m\u001b[94m|\u001b[0m\n> \u001b[1m\u001b[94m= \u001b[0m\u001b[1mwarning\u001b[0m: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!\n> \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: for more information, see issue #127909 \n> \u001b[1m\u001b[96mhelp\u001b[0m: consider making the `extern crate` item publicly accessible\n> \u001b[1m\u001b[94m|\u001b[0m\n> \u001b[1m\u001b[94m277\u001b[0m \u001b[1m\u001b[94m| \u001b[0m\u001b[92mpub \u001b[0mextern crate proc_macro;\n> \u001b[1m\u001b[94m|\u001b[0m \u001b[92m+++\u001b[0m\n> \n"}}]} \ No newline at end of file diff --git a/examples/leptos_axum/target/.rustc_info.json b/examples/leptos_axum/target/.rustc_info.json new file mode 100644 index 0000000..091aa68 --- /dev/null +++ b/examples/leptos_axum/target/.rustc_info.json @@ -0,0 +1 @@ +{"rustc_fingerprint":199858249302242062,"outputs":{"17607329053570456326":{"success":true,"status":"","code":0,"stdout":"rustc 1.97.1 (8bab26f4f 2026-07-14)\nbinary: rustc\ncommit-hash: 8bab26f4f68e0e26f0bb7960be334d5b520ea452\ncommit-date: 2026-07-14\nhost: x86_64-unknown-linux-gnu\nrelease: 1.97.1\nLLVM version: 22.1.6\n","stderr":""},"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/root/.rustup/toolchains/1.97.1-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_has_atomic_primitive_alignment=\"16\"\ntarget_has_atomic_primitive_alignment=\"32\"\ntarget_has_atomic_primitive_alignment=\"64\"\ntarget_has_atomic_primitive_alignment=\"8\"\ntarget_has_atomic_primitive_alignment=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""}},"successes":{}} \ No newline at end of file diff --git a/examples/leptos_axum/target/CACHEDIR.TAG b/examples/leptos_axum/target/CACHEDIR.TAG new file mode 100644 index 0000000..20d7c31 --- /dev/null +++ b/examples/leptos_axum/target/CACHEDIR.TAG @@ -0,0 +1,3 @@ +Signature: 8a477f597d28d172789f06886806bc55 +# This file is a cache directory tag created by cargo. +# For information about cache directory tags see https://bford.info/cachedir/ diff --git a/examples/leptos_axum/target/debug/.cargo-build-lock b/examples/leptos_axum/target/debug/.cargo-build-lock new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/.cargo-lock b/examples/leptos_axum/target/debug/.cargo-lock new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/.fingerprint/aho-corasick-7e7dc3fcb99ca317/dep-lib-aho_corasick b/examples/leptos_axum/target/debug/.fingerprint/aho-corasick-7e7dc3fcb99ca317/dep-lib-aho_corasick new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/aho-corasick-7e7dc3fcb99ca317/dep-lib-aho_corasick differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/aho-corasick-7e7dc3fcb99ca317/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/aho-corasick-7e7dc3fcb99ca317/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/aho-corasick-7e7dc3fcb99ca317/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/aho-corasick-7e7dc3fcb99ca317/lib-aho_corasick b/examples/leptos_axum/target/debug/.fingerprint/aho-corasick-7e7dc3fcb99ca317/lib-aho_corasick new file mode 100644 index 0000000..d280d61 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/aho-corasick-7e7dc3fcb99ca317/lib-aho_corasick @@ -0,0 +1 @@ +ff387f97cf9ac089 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/aho-corasick-7e7dc3fcb99ca317/lib-aho_corasick.json b/examples/leptos_axum/target/debug/.fingerprint/aho-corasick-7e7dc3fcb99ca317/lib-aho_corasick.json new file mode 100644 index 0000000..a3e8eee --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/aho-corasick-7e7dc3fcb99ca317/lib-aho_corasick.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"perf-literal\", \"std\"]","declared_features":"[\"default\", \"logging\", \"perf-literal\", \"std\"]","target":7534583537114156500,"profile":2241668132362809309,"path":11302719016450049861,"deps":[[12613788554453945248,"memchr",false,6429642936732799769]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/aho-corasick-7e7dc3fcb99ca317/dep-lib-aho_corasick","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/any_spawner-361659875a04860f/dep-lib-any_spawner b/examples/leptos_axum/target/debug/.fingerprint/any_spawner-361659875a04860f/dep-lib-any_spawner new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/any_spawner-361659875a04860f/dep-lib-any_spawner differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/any_spawner-361659875a04860f/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/any_spawner-361659875a04860f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/any_spawner-361659875a04860f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/any_spawner-361659875a04860f/lib-any_spawner b/examples/leptos_axum/target/debug/.fingerprint/any_spawner-361659875a04860f/lib-any_spawner new file mode 100644 index 0000000..c672712 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/any_spawner-361659875a04860f/lib-any_spawner @@ -0,0 +1 @@ +a7a3e7dbdd1dcbfb \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/any_spawner-361659875a04860f/lib-any_spawner.json b/examples/leptos_axum/target/debug/.fingerprint/any_spawner-361659875a04860f/lib-any_spawner.json new file mode 100644 index 0000000..fbbc07d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/any_spawner-361659875a04860f/lib-any_spawner.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"futures-executor\", \"wasm-bindgen\"]","declared_features":"[\"async-executor\", \"futures-executor\", \"glib\", \"tokio\", \"tracing\", \"wasm-bindgen\"]","target":11240541087869468356,"profile":2241668132362809309,"path":13814474078058852155,"deps":[[6692650170110433251,"futures",false,8883793258988323716],[11742730876020405241,"thiserror",false,13956677985622615357],[16773483497834534941,"wasm_bindgen_futures",false,4356650302939630260]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/any_spawner-361659875a04860f/dep-lib-any_spawner","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/anyhow-30de1fe9efd21a23/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/anyhow-30de1fe9efd21a23/run-build-script-build-script-build new file mode 100644 index 0000000..78ba76c --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/anyhow-30de1fe9efd21a23/run-build-script-build-script-build @@ -0,0 +1 @@ +9d706938aa8b60f4 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/anyhow-30de1fe9efd21a23/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/anyhow-30de1fe9efd21a23/run-build-script-build-script-build.json new file mode 100644 index 0000000..5f24d4e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/anyhow-30de1fe9efd21a23/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10364619138950789809,"build_script_build",false,6578748408056573194]],"local":[{"RerunIfChanged":{"output":"debug/build/anyhow-30de1fe9efd21a23/output","paths":["src/nightly.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/anyhow-63324738ee307b1e/dep-lib-anyhow b/examples/leptos_axum/target/debug/.fingerprint/anyhow-63324738ee307b1e/dep-lib-anyhow new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/anyhow-63324738ee307b1e/dep-lib-anyhow differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/anyhow-63324738ee307b1e/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/anyhow-63324738ee307b1e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/anyhow-63324738ee307b1e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/anyhow-63324738ee307b1e/lib-anyhow b/examples/leptos_axum/target/debug/.fingerprint/anyhow-63324738ee307b1e/lib-anyhow new file mode 100644 index 0000000..a07ddf8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/anyhow-63324738ee307b1e/lib-anyhow @@ -0,0 +1 @@ +c4d1984272014202 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/anyhow-63324738ee307b1e/lib-anyhow.json b/examples/leptos_axum/target/debug/.fingerprint/anyhow-63324738ee307b1e/lib-anyhow.json new file mode 100644 index 0000000..9ff19a5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/anyhow-63324738ee307b1e/lib-anyhow.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":1563897884725121975,"profile":2225463790103693989,"path":8754348751465933725,"deps":[[10364619138950789809,"build_script_build",false,17609228106225774749]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/anyhow-63324738ee307b1e/dep-lib-anyhow","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/anyhow-b73a1c715f21f557/dep-lib-anyhow b/examples/leptos_axum/target/debug/.fingerprint/anyhow-b73a1c715f21f557/dep-lib-anyhow new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/anyhow-b73a1c715f21f557/dep-lib-anyhow differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/anyhow-b73a1c715f21f557/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/anyhow-b73a1c715f21f557/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/anyhow-b73a1c715f21f557/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/anyhow-b73a1c715f21f557/lib-anyhow b/examples/leptos_axum/target/debug/.fingerprint/anyhow-b73a1c715f21f557/lib-anyhow new file mode 100644 index 0000000..c292398 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/anyhow-b73a1c715f21f557/lib-anyhow @@ -0,0 +1 @@ +c4ead180b7687455 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/anyhow-b73a1c715f21f557/lib-anyhow.json b/examples/leptos_axum/target/debug/.fingerprint/anyhow-b73a1c715f21f557/lib-anyhow.json new file mode 100644 index 0000000..70b62ec --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/anyhow-b73a1c715f21f557/lib-anyhow.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":1563897884725121975,"profile":2241668132362809309,"path":8754348751465933725,"deps":[[10364619138950789809,"build_script_build",false,17609228106225774749]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/anyhow-b73a1c715f21f557/dep-lib-anyhow","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/anyhow-fbd2417508b87357/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/anyhow-fbd2417508b87357/build-script-build-script-build new file mode 100644 index 0000000..74f44a8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/anyhow-fbd2417508b87357/build-script-build-script-build @@ -0,0 +1 @@ +0aede048d2684c5b \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/anyhow-fbd2417508b87357/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/anyhow-fbd2417508b87357/build-script-build-script-build.json new file mode 100644 index 0000000..a419a8c --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/anyhow-fbd2417508b87357/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":5408242616063297496,"profile":2225463790103693989,"path":572388422385001336,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/anyhow-fbd2417508b87357/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/anyhow-fbd2417508b87357/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/anyhow-fbd2417508b87357/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/anyhow-fbd2417508b87357/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/anyhow-fbd2417508b87357/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/anyhow-fbd2417508b87357/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/anyhow-fbd2417508b87357/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/async-lock-382d81936a3e281a/dep-lib-async_lock b/examples/leptos_axum/target/debug/.fingerprint/async-lock-382d81936a3e281a/dep-lib-async_lock new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/async-lock-382d81936a3e281a/dep-lib-async_lock differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/async-lock-382d81936a3e281a/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/async-lock-382d81936a3e281a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/async-lock-382d81936a3e281a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/async-lock-382d81936a3e281a/lib-async_lock b/examples/leptos_axum/target/debug/.fingerprint/async-lock-382d81936a3e281a/lib-async_lock new file mode 100644 index 0000000..8bef5ab --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/async-lock-382d81936a3e281a/lib-async_lock @@ -0,0 +1 @@ +24ba60077f160ac0 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/async-lock-382d81936a3e281a/lib-async_lock.json b/examples/leptos_axum/target/debug/.fingerprint/async-lock-382d81936a3e281a/lib-async_lock.json new file mode 100644 index 0000000..41e1330 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/async-lock-382d81936a3e281a/lib-async_lock.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"loom\", \"std\"]","target":4686383084901058664,"profile":13827760451848848284,"path":9357701294635926798,"deps":[[2251399859588827949,"pin_project_lite",false,4667605112942415018],[3846636397644523246,"event_listener",false,12873209570539375625],[17148897597675491682,"event_listener_strategy",false,12682467194666124556]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/async-lock-382d81936a3e281a/dep-lib-async_lock","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/async-once-cell-ec8006818f625de1/dep-lib-async_once_cell b/examples/leptos_axum/target/debug/.fingerprint/async-once-cell-ec8006818f625de1/dep-lib-async_once_cell new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/async-once-cell-ec8006818f625de1/dep-lib-async_once_cell differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/async-once-cell-ec8006818f625de1/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/async-once-cell-ec8006818f625de1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/async-once-cell-ec8006818f625de1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/async-once-cell-ec8006818f625de1/lib-async_once_cell b/examples/leptos_axum/target/debug/.fingerprint/async-once-cell-ec8006818f625de1/lib-async_once_cell new file mode 100644 index 0000000..81c89fd --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/async-once-cell-ec8006818f625de1/lib-async_once_cell @@ -0,0 +1 @@ +77f985dd796097fc \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/async-once-cell-ec8006818f625de1/lib-async_once_cell.json b/examples/leptos_axum/target/debug/.fingerprint/async-once-cell-ec8006818f625de1/lib-async_once_cell.json new file mode 100644 index 0000000..3caf060 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/async-once-cell-ec8006818f625de1/lib-async_once_cell.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"critical-section\", \"std\"]","target":11971827502962658409,"profile":2241668132362809309,"path":3017696261425935026,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/async-once-cell-ec8006818f625de1/dep-lib-async_once_cell","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/async-trait-05006c89df4656d0/dep-lib-async_trait b/examples/leptos_axum/target/debug/.fingerprint/async-trait-05006c89df4656d0/dep-lib-async_trait new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/async-trait-05006c89df4656d0/dep-lib-async_trait differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/async-trait-05006c89df4656d0/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/async-trait-05006c89df4656d0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/async-trait-05006c89df4656d0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/async-trait-05006c89df4656d0/lib-async_trait b/examples/leptos_axum/target/debug/.fingerprint/async-trait-05006c89df4656d0/lib-async_trait new file mode 100644 index 0000000..446936a --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/async-trait-05006c89df4656d0/lib-async_trait @@ -0,0 +1 @@ +aefd90ea616a7016 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/async-trait-05006c89df4656d0/lib-async_trait.json b/examples/leptos_axum/target/debug/.fingerprint/async-trait-05006c89df4656d0/lib-async_trait.json new file mode 100644 index 0000000..2296996 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/async-trait-05006c89df4656d0/lib-async_trait.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":5116616278641129243,"profile":2225463790103693989,"path":12026249222209715340,"deps":[[694259242500224931,"syn",false,8755383116263869573],[8949245912927223590,"quote",false,14896968245106632325],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/async-trait-05006c89df4656d0/dep-lib-async_trait","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-f62d62e13cdaddf5/dep-lib-attribute_derive b/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-f62d62e13cdaddf5/dep-lib-attribute_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-f62d62e13cdaddf5/dep-lib-attribute_derive differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-f62d62e13cdaddf5/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-f62d62e13cdaddf5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-f62d62e13cdaddf5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-f62d62e13cdaddf5/lib-attribute_derive b/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-f62d62e13cdaddf5/lib-attribute_derive new file mode 100644 index 0000000..d145d5a --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-f62d62e13cdaddf5/lib-attribute_derive @@ -0,0 +1 @@ +e5883298a0a8fb14 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-f62d62e13cdaddf5/lib-attribute_derive.json b/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-f62d62e13cdaddf5/lib-attribute_derive.json new file mode 100644 index 0000000..a3a4794 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-f62d62e13cdaddf5/lib-attribute_derive.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"syn-full\"]","declared_features":"[\"syn-full\"]","target":6813822426008656651,"profile":2225463790103693989,"path":2615949023251429045,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[12471212555875049753,"manyhow",false,16539749868806747223],[12972321744096044277,"derive_where",false,3062441198331273291],[14701936880693394836,"attribute_derive_macro",false,3979575645778145495],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/attribute-derive-f62d62e13cdaddf5/dep-lib-attribute_derive","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-macro-609872bc0610bf37/dep-lib-attribute_derive_macro b/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-macro-609872bc0610bf37/dep-lib-attribute_derive_macro new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-macro-609872bc0610bf37/dep-lib-attribute_derive_macro differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-macro-609872bc0610bf37/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-macro-609872bc0610bf37/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-macro-609872bc0610bf37/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-macro-609872bc0610bf37/lib-attribute_derive_macro b/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-macro-609872bc0610bf37/lib-attribute_derive_macro new file mode 100644 index 0000000..c167aae --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-macro-609872bc0610bf37/lib-attribute_derive_macro @@ -0,0 +1 @@ +d7f06613f74a3a37 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-macro-609872bc0610bf37/lib-attribute_derive_macro.json b/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-macro-609872bc0610bf37/lib-attribute_derive_macro.json new file mode 100644 index 0000000..ee2b33d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/attribute-derive-macro-609872bc0610bf37/lib-attribute_derive_macro.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":6583155963958959481,"profile":2225463790103693989,"path":4221915943277132474,"deps":[[3910196413094511423,"quote_use",false,3757828620173280760],[8949245912927223590,"quote",false,14896968245106632325],[9215727607793359310,"proc_macro_utils",false,13101819241900928405],[10190449710562616856,"syn",false,6080269753824482509],[12471212555875049753,"manyhow",false,16539749868806747223],[14589958105175177231,"collection_literals",false,798476504710609290],[16346726298725429545,"proc_macro2",false,3721553344835398169],[16561426532311248558,"interpolator",false,18377150323210111320]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/attribute-derive-macro-609872bc0610bf37/dep-lib-attribute_derive_macro","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/base16-2acebe9a84ad400d/dep-lib-base16 b/examples/leptos_axum/target/debug/.fingerprint/base16-2acebe9a84ad400d/dep-lib-base16 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/base16-2acebe9a84ad400d/dep-lib-base16 differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/base16-2acebe9a84ad400d/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/base16-2acebe9a84ad400d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/base16-2acebe9a84ad400d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/base16-2acebe9a84ad400d/lib-base16 b/examples/leptos_axum/target/debug/.fingerprint/base16-2acebe9a84ad400d/lib-base16 new file mode 100644 index 0000000..c9b345d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/base16-2acebe9a84ad400d/lib-base16 @@ -0,0 +1 @@ +d5d749598c24855e \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/base16-2acebe9a84ad400d/lib-base16.json b/examples/leptos_axum/target/debug/.fingerprint/base16-2acebe9a84ad400d/lib-base16.json new file mode 100644 index 0000000..410babd --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/base16-2acebe9a84ad400d/lib-base16.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":12945601064179008231,"profile":2225463790103693989,"path":16641396151691619680,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/base16-2acebe9a84ad400d/dep-lib-base16","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/base64-86c29447d3e7c92b/dep-lib-base64 b/examples/leptos_axum/target/debug/.fingerprint/base64-86c29447d3e7c92b/dep-lib-base64 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/base64-86c29447d3e7c92b/dep-lib-base64 differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/base64-86c29447d3e7c92b/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/base64-86c29447d3e7c92b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/base64-86c29447d3e7c92b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/base64-86c29447d3e7c92b/lib-base64 b/examples/leptos_axum/target/debug/.fingerprint/base64-86c29447d3e7c92b/lib-base64 new file mode 100644 index 0000000..8a2bb88 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/base64-86c29447d3e7c92b/lib-base64 @@ -0,0 +1 @@ +e5db65b27e659218 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/base64-86c29447d3e7c92b/lib-base64.json b/examples/leptos_axum/target/debug/.fingerprint/base64-86c29447d3e7c92b/lib-base64.json new file mode 100644 index 0000000..5a7eb24 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/base64-86c29447d3e7c92b/lib-base64.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":13060062996227388079,"profile":2241668132362809309,"path":16841996087006313610,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/base64-86c29447d3e7c92b/dep-lib-base64","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/dep-lib-bitflags b/examples/leptos_axum/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/dep-lib-bitflags new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/dep-lib-bitflags differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/lib-bitflags b/examples/leptos_axum/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/lib-bitflags new file mode 100644 index 0000000..8fc0f38 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/lib-bitflags @@ -0,0 +1 @@ +c2a6d78329b15cea \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/lib-bitflags.json b/examples/leptos_axum/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/lib-bitflags.json new file mode 100644 index 0000000..a873d25 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/bitflags-cff3612a3afc1bc7/lib-bitflags.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"arbitrary\", \"bytemuck\", \"example_generated\", \"serde\", \"serde_core\", \"std\"]","target":7691312148208718491,"profile":2241668132362809309,"path":10975846442840891037,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bitflags-cff3612a3afc1bc7/dep-lib-bitflags","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/block-buffer-82877868746bd0a3/dep-lib-block_buffer b/examples/leptos_axum/target/debug/.fingerprint/block-buffer-82877868746bd0a3/dep-lib-block_buffer new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/block-buffer-82877868746bd0a3/dep-lib-block_buffer differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/block-buffer-82877868746bd0a3/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/block-buffer-82877868746bd0a3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/block-buffer-82877868746bd0a3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/block-buffer-82877868746bd0a3/lib-block_buffer b/examples/leptos_axum/target/debug/.fingerprint/block-buffer-82877868746bd0a3/lib-block_buffer new file mode 100644 index 0000000..8b4c8ac --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/block-buffer-82877868746bd0a3/lib-block_buffer @@ -0,0 +1 @@ +69b451e72da31361 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/block-buffer-82877868746bd0a3/lib-block_buffer.json b/examples/leptos_axum/target/debug/.fingerprint/block-buffer-82877868746bd0a3/lib-block_buffer.json new file mode 100644 index 0000000..788c696 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/block-buffer-82877868746bd0a3/lib-block_buffer.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":4098124618827574291,"profile":2225463790103693989,"path":14279399928065507674,"deps":[[10520923840501062997,"generic_array",false,17656794869992706645]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/block-buffer-82877868746bd0a3/dep-lib-block_buffer","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/bumpalo-79e9bea688dd5fa8/dep-lib-bumpalo b/examples/leptos_axum/target/debug/.fingerprint/bumpalo-79e9bea688dd5fa8/dep-lib-bumpalo new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/bumpalo-79e9bea688dd5fa8/dep-lib-bumpalo differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/bumpalo-79e9bea688dd5fa8/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/bumpalo-79e9bea688dd5fa8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/bumpalo-79e9bea688dd5fa8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/bumpalo-79e9bea688dd5fa8/lib-bumpalo b/examples/leptos_axum/target/debug/.fingerprint/bumpalo-79e9bea688dd5fa8/lib-bumpalo new file mode 100644 index 0000000..8e49cbd --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/bumpalo-79e9bea688dd5fa8/lib-bumpalo @@ -0,0 +1 @@ +e8cabd054d78b820 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/bumpalo-79e9bea688dd5fa8/lib-bumpalo.json b/examples/leptos_axum/target/debug/.fingerprint/bumpalo-79e9bea688dd5fa8/lib-bumpalo.json new file mode 100644 index 0000000..31abdbc --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/bumpalo-79e9bea688dd5fa8/lib-bumpalo.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\"]","declared_features":"[\"allocator-api2\", \"allocator_api\", \"bench_allocator_api\", \"boxed\", \"collections\", \"default\", \"serde\", \"std\"]","target":10625613344215589528,"profile":2225463790103693989,"path":2505802522878701074,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bumpalo-79e9bea688dd5fa8/dep-lib-bumpalo","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/bytes-c3394b0af77a15c5/dep-lib-bytes b/examples/leptos_axum/target/debug/.fingerprint/bytes-c3394b0af77a15c5/dep-lib-bytes new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/bytes-c3394b0af77a15c5/dep-lib-bytes differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/bytes-c3394b0af77a15c5/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/bytes-c3394b0af77a15c5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/bytes-c3394b0af77a15c5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/bytes-c3394b0af77a15c5/lib-bytes b/examples/leptos_axum/target/debug/.fingerprint/bytes-c3394b0af77a15c5/lib-bytes new file mode 100644 index 0000000..4fc60f6 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/bytes-c3394b0af77a15c5/lib-bytes @@ -0,0 +1 @@ +1da444ab53f82cee \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/bytes-c3394b0af77a15c5/lib-bytes.json b/examples/leptos_axum/target/debug/.fingerprint/bytes-c3394b0af77a15c5/lib-bytes.json new file mode 100644 index 0000000..f55045f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/bytes-c3394b0af77a15c5/lib-bytes.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"extra-platforms\", \"serde\", \"std\"]","target":11402411492164584411,"profile":13827760451848848284,"path":12239386155630862137,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/bytes-c3394b0af77a15c5/dep-lib-bytes","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/camino-58afb4f8704430ea/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/camino-58afb4f8704430ea/run-build-script-build-script-build new file mode 100644 index 0000000..3e97226 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/camino-58afb4f8704430ea/run-build-script-build-script-build @@ -0,0 +1 @@ +107b0d3cefde24b6 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/camino-58afb4f8704430ea/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/camino-58afb4f8704430ea/run-build-script-build-script-build.json new file mode 100644 index 0000000..e6ea3c4 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/camino-58afb4f8704430ea/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[16363191550422148033,"build_script_build",false,309607144351476975]],"local":[{"RerunIfChanged":{"output":"debug/build/camino-58afb4f8704430ea/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/camino-66e40624b2ee4131/dep-lib-camino b/examples/leptos_axum/target/debug/.fingerprint/camino-66e40624b2ee4131/dep-lib-camino new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/camino-66e40624b2ee4131/dep-lib-camino differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/camino-66e40624b2ee4131/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/camino-66e40624b2ee4131/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/camino-66e40624b2ee4131/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/camino-66e40624b2ee4131/lib-camino b/examples/leptos_axum/target/debug/.fingerprint/camino-66e40624b2ee4131/lib-camino new file mode 100644 index 0000000..bf91f4c --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/camino-66e40624b2ee4131/lib-camino @@ -0,0 +1 @@ +ba678ae49cddb9d1 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/camino-66e40624b2ee4131/lib-camino.json b/examples/leptos_axum/target/debug/.fingerprint/camino-66e40624b2ee4131/lib-camino.json new file mode 100644 index 0000000..fa45e73 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/camino-66e40624b2ee4131/lib-camino.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"proptest1\", \"serde1\"]","target":4916930958703370761,"profile":2225463790103693989,"path":17568390163377812514,"deps":[[16363191550422148033,"build_script_build",false,13124860333150534416]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/camino-66e40624b2ee4131/dep-lib-camino","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/camino-7ece83f2109c1466/dep-lib-camino b/examples/leptos_axum/target/debug/.fingerprint/camino-7ece83f2109c1466/dep-lib-camino new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/camino-7ece83f2109c1466/dep-lib-camino differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/camino-7ece83f2109c1466/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/camino-7ece83f2109c1466/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/camino-7ece83f2109c1466/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/camino-7ece83f2109c1466/lib-camino b/examples/leptos_axum/target/debug/.fingerprint/camino-7ece83f2109c1466/lib-camino new file mode 100644 index 0000000..ce81140 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/camino-7ece83f2109c1466/lib-camino @@ -0,0 +1 @@ +125d1a07c02d52cb \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/camino-7ece83f2109c1466/lib-camino.json b/examples/leptos_axum/target/debug/.fingerprint/camino-7ece83f2109c1466/lib-camino.json new file mode 100644 index 0000000..9be0e0f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/camino-7ece83f2109c1466/lib-camino.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"proptest1\", \"serde1\"]","target":4916930958703370761,"profile":2241668132362809309,"path":17568390163377812514,"deps":[[16363191550422148033,"build_script_build",false,13124860333150534416]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/camino-7ece83f2109c1466/dep-lib-camino","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/camino-9d1e7ce5f7a0108a/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/camino-9d1e7ce5f7a0108a/build-script-build-script-build new file mode 100644 index 0000000..c6c1114 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/camino-9d1e7ce5f7a0108a/build-script-build-script-build @@ -0,0 +1 @@ +ef2cfeb20ef24b04 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/camino-9d1e7ce5f7a0108a/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/camino-9d1e7ce5f7a0108a/build-script-build-script-build.json new file mode 100644 index 0000000..daad2d5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/camino-9d1e7ce5f7a0108a/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"proptest1\", \"serde1\"]","target":5408242616063297496,"profile":2225463790103693989,"path":10467522948552000482,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/camino-9d1e7ce5f7a0108a/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/camino-9d1e7ce5f7a0108a/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/camino-9d1e7ce5f7a0108a/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/camino-9d1e7ce5f7a0108a/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/camino-9d1e7ce5f7a0108a/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/camino-9d1e7ce5f7a0108a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/camino-9d1e7ce5f7a0108a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/dep-lib-cfg_if b/examples/leptos_axum/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/dep-lib-cfg_if new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/dep-lib-cfg_if differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/lib-cfg_if b/examples/leptos_axum/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/lib-cfg_if new file mode 100644 index 0000000..5801f2a --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/lib-cfg_if @@ -0,0 +1 @@ +05cf99796df8210f \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/lib-cfg_if.json b/examples/leptos_axum/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/lib-cfg_if.json new file mode 100644 index 0000000..5d4bc7e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/cfg-if-8e014ddcb785b96d/lib-cfg_if.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":2241668132362809309,"path":12502755193429384494,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-8e014ddcb785b96d/dep-lib-cfg_if","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/dep-lib-cfg_if b/examples/leptos_axum/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/dep-lib-cfg_if new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/dep-lib-cfg_if differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/lib-cfg_if b/examples/leptos_axum/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/lib-cfg_if new file mode 100644 index 0000000..eb87867 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/lib-cfg_if @@ -0,0 +1 @@ +b1818d6cfa833f1a \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/lib-cfg_if.json b/examples/leptos_axum/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/lib-cfg_if.json new file mode 100644 index 0000000..11fd2ec --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/lib-cfg_if.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":2225463790103693989,"path":12502755193429384494,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cfg-if-a5d74e57c5b7e6d1/dep-lib-cfg_if","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/codee-52695188789e516c/dep-lib-codee b/examples/leptos_axum/target/debug/.fingerprint/codee-52695188789e516c/dep-lib-codee new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/codee-52695188789e516c/dep-lib-codee differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/codee-52695188789e516c/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/codee-52695188789e516c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/codee-52695188789e516c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/codee-52695188789e516c/lib-codee b/examples/leptos_axum/target/debug/.fingerprint/codee-52695188789e516c/lib-codee new file mode 100644 index 0000000..53d3d49 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/codee-52695188789e516c/lib-codee @@ -0,0 +1 @@ +49d07e2787200d6f \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/codee-52695188789e516c/lib-codee.json b/examples/leptos_axum/target/debug/.fingerprint/codee-52695188789e516c/lib-codee.json new file mode 100644 index 0000000..01c5b8c --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/codee-52695188789e516c/lib-codee.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"json_serde\"]","declared_features":"[\"base64\", \"bincode\", \"bincode_serde\", \"bitcode\", \"bitcode_serde\", \"json_serde\", \"json_serde_wasm\", \"miniserde\", \"msgpack_serde\", \"postcard\", \"prost\", \"rkyv\", \"serde_lite\"]","target":1288793534740336044,"profile":2241668132362809309,"path":15246217207185692529,"deps":[[5330460842384404171,"serde_json",false,2434650379303972315],[6557439603276904804,"serde",false,660198786115094860],[11742730876020405241,"thiserror",false,13956677985622615357]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/codee-52695188789e516c/dep-lib-codee","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/collection_literals-4f0a9919e4b05d61/dep-lib-collection_literals b/examples/leptos_axum/target/debug/.fingerprint/collection_literals-4f0a9919e4b05d61/dep-lib-collection_literals new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/collection_literals-4f0a9919e4b05d61/dep-lib-collection_literals differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/collection_literals-4f0a9919e4b05d61/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/collection_literals-4f0a9919e4b05d61/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/collection_literals-4f0a9919e4b05d61/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/collection_literals-4f0a9919e4b05d61/lib-collection_literals b/examples/leptos_axum/target/debug/.fingerprint/collection_literals-4f0a9919e4b05d61/lib-collection_literals new file mode 100644 index 0000000..bf88cc5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/collection_literals-4f0a9919e4b05d61/lib-collection_literals @@ -0,0 +1 @@ +8a79c58826c2140b \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/collection_literals-4f0a9919e4b05d61/lib-collection_literals.json b/examples/leptos_axum/target/debug/.fingerprint/collection_literals-4f0a9919e4b05d61/lib-collection_literals.json new file mode 100644 index 0000000..a266e29 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/collection_literals-4f0a9919e4b05d61/lib-collection_literals.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":2158647155550734036,"profile":3680507240753135027,"path":7190995378335854942,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/collection_literals-4f0a9919e4b05d61/dep-lib-collection_literals","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/config-3c9b85a4af98af1d/dep-lib-config b/examples/leptos_axum/target/debug/.fingerprint/config-3c9b85a4af98af1d/dep-lib-config new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/config-3c9b85a4af98af1d/dep-lib-config differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/config-3c9b85a4af98af1d/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/config-3c9b85a4af98af1d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/config-3c9b85a4af98af1d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/config-3c9b85a4af98af1d/lib-config b/examples/leptos_axum/target/debug/.fingerprint/config-3c9b85a4af98af1d/lib-config new file mode 100644 index 0000000..10c48f6 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/config-3c9b85a4af98af1d/lib-config @@ -0,0 +1 @@ +766d361c79355585 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/config-3c9b85a4af98af1d/lib-config.json b/examples/leptos_axum/target/debug/.fingerprint/config-3c9b85a4af98af1d/lib-config.json new file mode 100644 index 0000000..789c053 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/config-3c9b85a4af98af1d/lib-config.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"convert-case\", \"convert_case\", \"toml\"]","declared_features":"[\"async\", \"async-trait\", \"convert-case\", \"convert_case\", \"corn\", \"default\", \"indexmap\", \"ini\", \"json\", \"json5\", \"preserve_order\", \"ron\", \"rust-ini\", \"serde_json\", \"toml\", \"yaml\", \"yaml-rust2\"]","target":8954660916738304918,"profile":17646343673514590993,"path":12864641653255492432,"deps":[[6338624599557368326,"winnow",false,2498182386461177683],[6517602928339163454,"pathdiff",false,3250930306777830653],[11029742160753049355,"serde_core",false,10952133628660192943],[13475460906694513802,"convert_case",false,12532644744159686558],[15271898103425950885,"toml",false,13322354640766107154]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/config-3c9b85a4af98af1d/dep-lib-config","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/console_error_panic_hook-711a7aa6723a560b/dep-lib-console_error_panic_hook b/examples/leptos_axum/target/debug/.fingerprint/console_error_panic_hook-711a7aa6723a560b/dep-lib-console_error_panic_hook new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/console_error_panic_hook-711a7aa6723a560b/dep-lib-console_error_panic_hook differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/console_error_panic_hook-711a7aa6723a560b/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/console_error_panic_hook-711a7aa6723a560b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/console_error_panic_hook-711a7aa6723a560b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/console_error_panic_hook-711a7aa6723a560b/lib-console_error_panic_hook b/examples/leptos_axum/target/debug/.fingerprint/console_error_panic_hook-711a7aa6723a560b/lib-console_error_panic_hook new file mode 100644 index 0000000..e1a0a3c --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/console_error_panic_hook-711a7aa6723a560b/lib-console_error_panic_hook @@ -0,0 +1 @@ +798c5c9015500f6c \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/console_error_panic_hook-711a7aa6723a560b/lib-console_error_panic_hook.json b/examples/leptos_axum/target/debug/.fingerprint/console_error_panic_hook-711a7aa6723a560b/lib-console_error_panic_hook.json new file mode 100644 index 0000000..9ed54c8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/console_error_panic_hook-711a7aa6723a560b/lib-console_error_panic_hook.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":9676079782213560798,"profile":2241668132362809309,"path":5527672383765910920,"deps":[[5098792620852445434,"wasm_bindgen",false,6650567199088231542],[7667230146095136825,"cfg_if",false,1090425733875617541]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/console_error_panic_hook-711a7aa6723a560b/dep-lib-console_error_panic_hook","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/const-str-52f1d0f8e7a003ce/dep-lib-const_str b/examples/leptos_axum/target/debug/.fingerprint/const-str-52f1d0f8e7a003ce/dep-lib-const_str new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/const-str-52f1d0f8e7a003ce/dep-lib-const_str differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/const-str-52f1d0f8e7a003ce/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/const-str-52f1d0f8e7a003ce/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/const-str-52f1d0f8e7a003ce/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/const-str-52f1d0f8e7a003ce/lib-const_str b/examples/leptos_axum/target/debug/.fingerprint/const-str-52f1d0f8e7a003ce/lib-const_str new file mode 100644 index 0000000..37d8f8d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/const-str-52f1d0f8e7a003ce/lib-const_str @@ -0,0 +1 @@ +ceb985f50dc74b68 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/const-str-52f1d0f8e7a003ce/lib-const_str.json b/examples/leptos_axum/target/debug/.fingerprint/const-str-52f1d0f8e7a003ce/lib-const_str.json new file mode 100644 index 0000000..f842496 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/const-str-52f1d0f8e7a003ce/lib-const_str.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\"]","declared_features":"[\"all\", \"case\", \"default\", \"http\", \"proc\", \"regex\", \"std\", \"unstable\"]","target":13435840823033975640,"profile":2241668132362809309,"path":11252124331131563357,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/const-str-52f1d0f8e7a003ce/dep-lib-const_str","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/const_format-e1fe68a0dc334ca5/dep-lib-const_format b/examples/leptos_axum/target/debug/.fingerprint/const_format-e1fe68a0dc334ca5/dep-lib-const_format new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/const_format-e1fe68a0dc334ca5/dep-lib-const_format differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/const_format-e1fe68a0dc334ca5/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/const_format-e1fe68a0dc334ca5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/const_format-e1fe68a0dc334ca5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/const_format-e1fe68a0dc334ca5/lib-const_format b/examples/leptos_axum/target/debug/.fingerprint/const_format-e1fe68a0dc334ca5/lib-const_format new file mode 100644 index 0000000..a294c8a --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/const_format-e1fe68a0dc334ca5/lib-const_format @@ -0,0 +1 @@ +dde7969c0d01ccdf \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/const_format-e1fe68a0dc334ca5/lib-const_format.json b/examples/leptos_axum/target/debug/.fingerprint/const_format-e1fe68a0dc334ca5/lib-const_format.json new file mode 100644 index 0000000..ea4d085 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/const_format-e1fe68a0dc334ca5/lib-const_format.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\"]","declared_features":"[\"__debug\", \"__docsrs\", \"__inline_const_pat_tests\", \"__only_new_tests\", \"__test\", \"all\", \"assert\", \"assertc\", \"assertcp\", \"const_generics\", \"constant_time_as_str\", \"default\", \"derive\", \"fmt\", \"more_str_macros\", \"nightly_const_generics\", \"rust_1_51\", \"rust_1_64\", \"rust_1_83\"]","target":18050621619102943376,"profile":2241668132362809309,"path":7409867729677478130,"deps":[[1224365877716328643,"konst",false,17958263187084222460],[18351378648494636016,"const_format_proc_macros",false,7353874636588401054]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/const_format-e1fe68a0dc334ca5/dep-lib-const_format","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/const_format-f314c68d7f0a66dd/dep-lib-const_format b/examples/leptos_axum/target/debug/.fingerprint/const_format-f314c68d7f0a66dd/dep-lib-const_format new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/const_format-f314c68d7f0a66dd/dep-lib-const_format differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/const_format-f314c68d7f0a66dd/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/const_format-f314c68d7f0a66dd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/const_format-f314c68d7f0a66dd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/const_format-f314c68d7f0a66dd/lib-const_format b/examples/leptos_axum/target/debug/.fingerprint/const_format-f314c68d7f0a66dd/lib-const_format new file mode 100644 index 0000000..35e1ef8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/const_format-f314c68d7f0a66dd/lib-const_format @@ -0,0 +1 @@ +eeabf6105e330af0 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/const_format-f314c68d7f0a66dd/lib-const_format.json b/examples/leptos_axum/target/debug/.fingerprint/const_format-f314c68d7f0a66dd/lib-const_format.json new file mode 100644 index 0000000..8f9d0a6 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/const_format-f314c68d7f0a66dd/lib-const_format.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\"]","declared_features":"[\"__debug\", \"__docsrs\", \"__inline_const_pat_tests\", \"__only_new_tests\", \"__test\", \"all\", \"assert\", \"assertc\", \"assertcp\", \"const_generics\", \"constant_time_as_str\", \"default\", \"derive\", \"fmt\", \"more_str_macros\", \"nightly_const_generics\", \"rust_1_51\", \"rust_1_64\", \"rust_1_83\"]","target":18050621619102943376,"profile":2225463790103693989,"path":7409867729677478130,"deps":[[1224365877716328643,"konst",false,18114004301369529020],[18351378648494636016,"const_format_proc_macros",false,7353874636588401054]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/const_format-f314c68d7f0a66dd/dep-lib-const_format","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/const_format_proc_macros-0f337214c362af6d/dep-lib-const_format_proc_macros b/examples/leptos_axum/target/debug/.fingerprint/const_format_proc_macros-0f337214c362af6d/dep-lib-const_format_proc_macros new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/const_format_proc_macros-0f337214c362af6d/dep-lib-const_format_proc_macros differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/const_format_proc_macros-0f337214c362af6d/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/const_format_proc_macros-0f337214c362af6d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/const_format_proc_macros-0f337214c362af6d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/const_format_proc_macros-0f337214c362af6d/lib-const_format_proc_macros b/examples/leptos_axum/target/debug/.fingerprint/const_format_proc_macros-0f337214c362af6d/lib-const_format_proc_macros new file mode 100644 index 0000000..423612c --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/const_format_proc_macros-0f337214c362af6d/lib-const_format_proc_macros @@ -0,0 +1 @@ +9e419bfc04360e66 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/const_format_proc_macros-0f337214c362af6d/lib-const_format_proc_macros.json b/examples/leptos_axum/target/debug/.fingerprint/const_format_proc_macros-0f337214c362af6d/lib-const_format_proc_macros.json new file mode 100644 index 0000000..c361f86 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/const_format_proc_macros-0f337214c362af6d/lib-const_format_proc_macros.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\"]","declared_features":"[\"all\", \"debug\", \"default\", \"derive\", \"syn\"]","target":16759659672032282443,"profile":2225463790103693989,"path":11753562267120727221,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[16126285161989458480,"unicode_xid",false,4081008977976947043],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/const_format_proc_macros-0f337214c362af6d/dep-lib-const_format_proc_macros","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/const_str_slice_concat-82fcb9501360d738/dep-lib-const_str_slice_concat b/examples/leptos_axum/target/debug/.fingerprint/const_str_slice_concat-82fcb9501360d738/dep-lib-const_str_slice_concat new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/const_str_slice_concat-82fcb9501360d738/dep-lib-const_str_slice_concat differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/const_str_slice_concat-82fcb9501360d738/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/const_str_slice_concat-82fcb9501360d738/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/const_str_slice_concat-82fcb9501360d738/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/const_str_slice_concat-82fcb9501360d738/lib-const_str_slice_concat b/examples/leptos_axum/target/debug/.fingerprint/const_str_slice_concat-82fcb9501360d738/lib-const_str_slice_concat new file mode 100644 index 0000000..607c1a6 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/const_str_slice_concat-82fcb9501360d738/lib-const_str_slice_concat @@ -0,0 +1 @@ +8d9fd8a35e79785f \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/const_str_slice_concat-82fcb9501360d738/lib-const_str_slice_concat.json b/examples/leptos_axum/target/debug/.fingerprint/const_str_slice_concat-82fcb9501360d738/lib-const_str_slice_concat.json new file mode 100644 index 0000000..d8a7497 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/const_str_slice_concat-82fcb9501360d738/lib-const_str_slice_concat.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":16434561374368028687,"profile":2241668132362809309,"path":9628767659292758386,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/const_str_slice_concat-82fcb9501360d738/dep-lib-const_str_slice_concat","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/convert_case-2628ae2be3deb1b5/dep-lib-convert_case b/examples/leptos_axum/target/debug/.fingerprint/convert_case-2628ae2be3deb1b5/dep-lib-convert_case new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/convert_case-2628ae2be3deb1b5/dep-lib-convert_case differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/convert_case-2628ae2be3deb1b5/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/convert_case-2628ae2be3deb1b5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/convert_case-2628ae2be3deb1b5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/convert_case-2628ae2be3deb1b5/lib-convert_case b/examples/leptos_axum/target/debug/.fingerprint/convert_case-2628ae2be3deb1b5/lib-convert_case new file mode 100644 index 0000000..4be0b09 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/convert_case-2628ae2be3deb1b5/lib-convert_case @@ -0,0 +1 @@ +18610d49e4a5a58e \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/convert_case-2628ae2be3deb1b5/lib-convert_case.json b/examples/leptos_axum/target/debug/.fingerprint/convert_case-2628ae2be3deb1b5/lib-convert_case.json new file mode 100644 index 0000000..98c10f8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/convert_case-2628ae2be3deb1b5/lib-convert_case.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":16347249514369226306,"profile":2225463790103693989,"path":4708750291525700090,"deps":[[16198203750081063573,"unicode_segmentation",false,14730733823508508692]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/convert_case-2628ae2be3deb1b5/dep-lib-convert_case","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/convert_case-7209f6d0f64c0ef2/dep-lib-convert_case b/examples/leptos_axum/target/debug/.fingerprint/convert_case-7209f6d0f64c0ef2/dep-lib-convert_case new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/convert_case-7209f6d0f64c0ef2/dep-lib-convert_case differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/convert_case-7209f6d0f64c0ef2/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/convert_case-7209f6d0f64c0ef2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/convert_case-7209f6d0f64c0ef2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/convert_case-7209f6d0f64c0ef2/lib-convert_case b/examples/leptos_axum/target/debug/.fingerprint/convert_case-7209f6d0f64c0ef2/lib-convert_case new file mode 100644 index 0000000..de4f30f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/convert_case-7209f6d0f64c0ef2/lib-convert_case @@ -0,0 +1 @@ +9eefcd77fee5ecad \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/convert_case-7209f6d0f64c0ef2/lib-convert_case.json b/examples/leptos_axum/target/debug/.fingerprint/convert_case-7209f6d0f64c0ef2/lib-convert_case.json new file mode 100644 index 0000000..40fc081 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/convert_case-7209f6d0f64c0ef2/lib-convert_case.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"rand\", \"random\"]","target":13517390075341535229,"profile":2241668132362809309,"path":16444549719325733125,"deps":[[16198203750081063573,"unicode_segmentation",false,2466144158463094337]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/convert_case-7209f6d0f64c0ef2/dep-lib-convert_case","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/convert_case_extras-6f78dc8bb04e6ee9/dep-lib-convert_case_extras b/examples/leptos_axum/target/debug/.fingerprint/convert_case_extras-6f78dc8bb04e6ee9/dep-lib-convert_case_extras new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/convert_case_extras-6f78dc8bb04e6ee9/dep-lib-convert_case_extras differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/convert_case_extras-6f78dc8bb04e6ee9/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/convert_case_extras-6f78dc8bb04e6ee9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/convert_case_extras-6f78dc8bb04e6ee9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/convert_case_extras-6f78dc8bb04e6ee9/lib-convert_case_extras b/examples/leptos_axum/target/debug/.fingerprint/convert_case_extras-6f78dc8bb04e6ee9/lib-convert_case_extras new file mode 100644 index 0000000..d1092cf --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/convert_case_extras-6f78dc8bb04e6ee9/lib-convert_case_extras @@ -0,0 +1 @@ +64f6b0c4cd2f201b \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/convert_case_extras-6f78dc8bb04e6ee9/lib-convert_case_extras.json b/examples/leptos_axum/target/debug/.fingerprint/convert_case_extras-6f78dc8bb04e6ee9/lib-convert_case_extras.json new file mode 100644 index 0000000..9f2c537 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/convert_case_extras-6f78dc8bb04e6ee9/lib-convert_case_extras.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"rand\", \"random\"]","target":16887068871451239988,"profile":2225463790103693989,"path":6078264065077761166,"deps":[[17865014727662549706,"convert_case",false,10278804124439765272]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/convert_case_extras-6f78dc8bb04e6ee9/dep-lib-convert_case_extras","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/cpufeatures-13cf37fdce80f82f/dep-lib-cpufeatures b/examples/leptos_axum/target/debug/.fingerprint/cpufeatures-13cf37fdce80f82f/dep-lib-cpufeatures new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/cpufeatures-13cf37fdce80f82f/dep-lib-cpufeatures differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/cpufeatures-13cf37fdce80f82f/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/cpufeatures-13cf37fdce80f82f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/cpufeatures-13cf37fdce80f82f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/cpufeatures-13cf37fdce80f82f/lib-cpufeatures b/examples/leptos_axum/target/debug/.fingerprint/cpufeatures-13cf37fdce80f82f/lib-cpufeatures new file mode 100644 index 0000000..2fe611d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/cpufeatures-13cf37fdce80f82f/lib-cpufeatures @@ -0,0 +1 @@ +068fc948914ff186 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/cpufeatures-13cf37fdce80f82f/lib-cpufeatures.json b/examples/leptos_axum/target/debug/.fingerprint/cpufeatures-13cf37fdce80f82f/lib-cpufeatures.json new file mode 100644 index 0000000..5cf503a --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/cpufeatures-13cf37fdce80f82f/lib-cpufeatures.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":2330704043955282025,"profile":2225463790103693989,"path":13716377211716279772,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/cpufeatures-13cf37fdce80f82f/dep-lib-cpufeatures","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/crypto-common-c0edffe7f96ddd28/dep-lib-crypto_common b/examples/leptos_axum/target/debug/.fingerprint/crypto-common-c0edffe7f96ddd28/dep-lib-crypto_common new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/crypto-common-c0edffe7f96ddd28/dep-lib-crypto_common differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/crypto-common-c0edffe7f96ddd28/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/crypto-common-c0edffe7f96ddd28/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/crypto-common-c0edffe7f96ddd28/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/crypto-common-c0edffe7f96ddd28/lib-crypto_common b/examples/leptos_axum/target/debug/.fingerprint/crypto-common-c0edffe7f96ddd28/lib-crypto_common new file mode 100644 index 0000000..acffa74 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/crypto-common-c0edffe7f96ddd28/lib-crypto_common @@ -0,0 +1 @@ +f16be01f2218f059 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/crypto-common-c0edffe7f96ddd28/lib-crypto_common.json b/examples/leptos_axum/target/debug/.fingerprint/crypto-common-c0edffe7f96ddd28/lib-crypto_common.json new file mode 100644 index 0000000..7da8cc8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/crypto-common-c0edffe7f96ddd28/lib-crypto_common.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"std\"]","declared_features":"[\"getrandom\", \"rand_core\", \"std\"]","target":12082577455412410174,"profile":2225463790103693989,"path":7291763692715038708,"deps":[[6918147871599447195,"typenum",false,9049874933642133015],[10520923840501062997,"generic_array",false,17656794869992706645]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/crypto-common-c0edffe7f96ddd28/dep-lib-crypto_common","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/derive-where-8f93f40d0a741f91/dep-lib-derive_where b/examples/leptos_axum/target/debug/.fingerprint/derive-where-8f93f40d0a741f91/dep-lib-derive_where new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/derive-where-8f93f40d0a741f91/dep-lib-derive_where differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/derive-where-8f93f40d0a741f91/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/derive-where-8f93f40d0a741f91/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/derive-where-8f93f40d0a741f91/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/derive-where-8f93f40d0a741f91/lib-derive_where b/examples/leptos_axum/target/debug/.fingerprint/derive-where-8f93f40d0a741f91/lib-derive_where new file mode 100644 index 0000000..15b18bd --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/derive-where-8f93f40d0a741f91/lib-derive_where @@ -0,0 +1 @@ +4ba00e5c0bfa7f2a \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/derive-where-8f93f40d0a741f91/lib-derive_where.json b/examples/leptos_axum/target/debug/.fingerprint/derive-where-8f93f40d0a741f91/lib-derive_where.json new file mode 100644 index 0000000..877098f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/derive-where-8f93f40d0a741f91/lib-derive_where.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"nightly\", \"safe\", \"serde\", \"zeroize\", \"zeroize-on-drop\"]","target":7397471525269518464,"profile":2225463790103693989,"path":12981926337418564072,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/derive-where-8f93f40d0a741f91/dep-lib-derive_where","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/digest-229773c461897454/dep-lib-digest b/examples/leptos_axum/target/debug/.fingerprint/digest-229773c461897454/dep-lib-digest new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/digest-229773c461897454/dep-lib-digest differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/digest-229773c461897454/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/digest-229773c461897454/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/digest-229773c461897454/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/digest-229773c461897454/lib-digest b/examples/leptos_axum/target/debug/.fingerprint/digest-229773c461897454/lib-digest new file mode 100644 index 0000000..dfb4653 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/digest-229773c461897454/lib-digest @@ -0,0 +1 @@ +6da4409f14273c9d \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/digest-229773c461897454/lib-digest.json b/examples/leptos_axum/target/debug/.fingerprint/digest-229773c461897454/lib-digest.json new file mode 100644 index 0000000..fa69ed9 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/digest-229773c461897454/lib-digest.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"block-buffer\", \"core-api\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"blobby\", \"block-buffer\", \"const-oid\", \"core-api\", \"default\", \"dev\", \"mac\", \"oid\", \"rand_core\", \"std\", \"subtle\"]","target":7510122432137863311,"profile":2225463790103693989,"path":7748842688086968266,"deps":[[6039282458970808711,"crypto_common",false,6480706398628899825],[10626340395483396037,"block_buffer",false,6995114063786259561]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/digest-229773c461897454/dep-lib-digest","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/displaydoc-39890585602376ad/dep-lib-displaydoc b/examples/leptos_axum/target/debug/.fingerprint/displaydoc-39890585602376ad/dep-lib-displaydoc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/displaydoc-39890585602376ad/dep-lib-displaydoc differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/displaydoc-39890585602376ad/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/displaydoc-39890585602376ad/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/displaydoc-39890585602376ad/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/displaydoc-39890585602376ad/lib-displaydoc b/examples/leptos_axum/target/debug/.fingerprint/displaydoc-39890585602376ad/lib-displaydoc new file mode 100644 index 0000000..6f9c017 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/displaydoc-39890585602376ad/lib-displaydoc @@ -0,0 +1 @@ +f88756a37531a33e \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/displaydoc-39890585602376ad/lib-displaydoc.json b/examples/leptos_axum/target/debug/.fingerprint/displaydoc-39890585602376ad/lib-displaydoc.json new file mode 100644 index 0000000..225a909 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/displaydoc-39890585602376ad/lib-displaydoc.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"default\", \"std\"]","target":12413876779241186693,"profile":2225463790103693989,"path":6334246633371072079,"deps":[[694259242500224931,"syn",false,8755383116263869573],[8949245912927223590,"quote",false,14896968245106632325],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/displaydoc-39890585602376ad/dep-lib-displaydoc","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/drain_filter_polyfill-cfdd89c70b92254c/dep-lib-drain_filter_polyfill b/examples/leptos_axum/target/debug/.fingerprint/drain_filter_polyfill-cfdd89c70b92254c/dep-lib-drain_filter_polyfill new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/drain_filter_polyfill-cfdd89c70b92254c/dep-lib-drain_filter_polyfill differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/drain_filter_polyfill-cfdd89c70b92254c/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/drain_filter_polyfill-cfdd89c70b92254c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/drain_filter_polyfill-cfdd89c70b92254c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/drain_filter_polyfill-cfdd89c70b92254c/lib-drain_filter_polyfill b/examples/leptos_axum/target/debug/.fingerprint/drain_filter_polyfill-cfdd89c70b92254c/lib-drain_filter_polyfill new file mode 100644 index 0000000..e794d74 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/drain_filter_polyfill-cfdd89c70b92254c/lib-drain_filter_polyfill @@ -0,0 +1 @@ +b21afa4b1e53b978 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/drain_filter_polyfill-cfdd89c70b92254c/lib-drain_filter_polyfill.json b/examples/leptos_axum/target/debug/.fingerprint/drain_filter_polyfill-cfdd89c70b92254c/lib-drain_filter_polyfill.json new file mode 100644 index 0000000..73b71e6 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/drain_filter_polyfill-cfdd89c70b92254c/lib-drain_filter_polyfill.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":15566077041174120515,"profile":2241668132362809309,"path":7471961779552185351,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/drain_filter_polyfill-cfdd89c70b92254c/dep-lib-drain_filter_polyfill","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/either-4df26a1332d7081b/dep-lib-either b/examples/leptos_axum/target/debug/.fingerprint/either-4df26a1332d7081b/dep-lib-either new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/either-4df26a1332d7081b/dep-lib-either differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/either-4df26a1332d7081b/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/either-4df26a1332d7081b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/either-4df26a1332d7081b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/either-4df26a1332d7081b/lib-either b/examples/leptos_axum/target/debug/.fingerprint/either-4df26a1332d7081b/lib-either new file mode 100644 index 0000000..f5c0e2f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/either-4df26a1332d7081b/lib-either @@ -0,0 +1 @@ +792c68ca6949f14d \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/either-4df26a1332d7081b/lib-either.json b/examples/leptos_axum/target/debug/.fingerprint/either-4df26a1332d7081b/lib-either.json new file mode 100644 index 0000000..9350072 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/either-4df26a1332d7081b/lib-either.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"std\", \"use_std\"]","declared_features":"[\"default\", \"serde\", \"std\", \"use_std\"]","target":17124342308084364240,"profile":2225463790103693989,"path":9187943537850640418,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/either-4df26a1332d7081b/dep-lib-either","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/either-9f0a89081c0ca233/dep-lib-either b/examples/leptos_axum/target/debug/.fingerprint/either-9f0a89081c0ca233/dep-lib-either new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/either-9f0a89081c0ca233/dep-lib-either differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/either-9f0a89081c0ca233/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/either-9f0a89081c0ca233/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/either-9f0a89081c0ca233/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/either-9f0a89081c0ca233/lib-either b/examples/leptos_axum/target/debug/.fingerprint/either-9f0a89081c0ca233/lib-either new file mode 100644 index 0000000..389126c --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/either-9f0a89081c0ca233/lib-either @@ -0,0 +1 @@ +fd206be8c51dea13 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/either-9f0a89081c0ca233/lib-either.json b/examples/leptos_axum/target/debug/.fingerprint/either-9f0a89081c0ca233/lib-either.json new file mode 100644 index 0000000..8937e50 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/either-9f0a89081c0ca233/lib-either.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"std\", \"use_std\"]","declared_features":"[\"default\", \"serde\", \"std\", \"use_std\"]","target":17124342308084364240,"profile":2241668132362809309,"path":9187943537850640418,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/either-9f0a89081c0ca233/dep-lib-either","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/either_of-bfce8fd63a10cb69/dep-lib-either_of b/examples/leptos_axum/target/debug/.fingerprint/either_of-bfce8fd63a10cb69/dep-lib-either_of new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/either_of-bfce8fd63a10cb69/dep-lib-either_of differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/either_of-bfce8fd63a10cb69/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/either_of-bfce8fd63a10cb69/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/either_of-bfce8fd63a10cb69/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/either_of-bfce8fd63a10cb69/lib-either_of b/examples/leptos_axum/target/debug/.fingerprint/either_of-bfce8fd63a10cb69/lib-either_of new file mode 100644 index 0000000..0031a51 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/either_of-bfce8fd63a10cb69/lib-either_of @@ -0,0 +1 @@ +e6893c48c9a09b1d \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/either_of-bfce8fd63a10cb69/lib-either_of.json b/examples/leptos_axum/target/debug/.fingerprint/either_of-bfce8fd63a10cb69/lib-either_of.json new file mode 100644 index 0000000..a93ee82 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/either_of-bfce8fd63a10cb69/lib-either_of.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"no_std\"]","declared_features":"[\"default\", \"no_std\"]","target":13428752142343606567,"profile":2241668132362809309,"path":5362728916969962182,"deps":[[2251399859588827949,"pin_project_lite",false,4667605112942415018],[17605717126308396068,"paste",false,7624392697941303859]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/either_of-bfce8fd63a10cb69/dep-lib-either_of","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/dep-lib-equivalent b/examples/leptos_axum/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/dep-lib-equivalent new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/dep-lib-equivalent differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/lib-equivalent b/examples/leptos_axum/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/lib-equivalent new file mode 100644 index 0000000..74fcebd --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/lib-equivalent @@ -0,0 +1 @@ +84bbffab0f9052c9 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/lib-equivalent.json b/examples/leptos_axum/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/lib-equivalent.json new file mode 100644 index 0000000..08f42fe --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/equivalent-0aada0f55b2e54f9/lib-equivalent.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":1524667692659508025,"profile":2225463790103693989,"path":12089184285681878692,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/equivalent-0aada0f55b2e54f9/dep-lib-equivalent","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/equivalent-c8922812beabd051/dep-lib-equivalent b/examples/leptos_axum/target/debug/.fingerprint/equivalent-c8922812beabd051/dep-lib-equivalent new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/equivalent-c8922812beabd051/dep-lib-equivalent differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/equivalent-c8922812beabd051/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/equivalent-c8922812beabd051/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/equivalent-c8922812beabd051/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/equivalent-c8922812beabd051/lib-equivalent b/examples/leptos_axum/target/debug/.fingerprint/equivalent-c8922812beabd051/lib-equivalent new file mode 100644 index 0000000..d68c868 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/equivalent-c8922812beabd051/lib-equivalent @@ -0,0 +1 @@ +d517f1fc5d34c9c9 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/equivalent-c8922812beabd051/lib-equivalent.json b/examples/leptos_axum/target/debug/.fingerprint/equivalent-c8922812beabd051/lib-equivalent.json new file mode 100644 index 0000000..59602c3 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/equivalent-c8922812beabd051/lib-equivalent.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":1524667692659508025,"profile":2241668132362809309,"path":12089184285681878692,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/equivalent-c8922812beabd051/dep-lib-equivalent","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/erased-68f74a5e08c5e561/dep-lib-erased b/examples/leptos_axum/target/debug/.fingerprint/erased-68f74a5e08c5e561/dep-lib-erased new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/erased-68f74a5e08c5e561/dep-lib-erased differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/erased-68f74a5e08c5e561/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/erased-68f74a5e08c5e561/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/erased-68f74a5e08c5e561/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/erased-68f74a5e08c5e561/lib-erased b/examples/leptos_axum/target/debug/.fingerprint/erased-68f74a5e08c5e561/lib-erased new file mode 100644 index 0000000..4aa17a6 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/erased-68f74a5e08c5e561/lib-erased @@ -0,0 +1 @@ +f47f3616581051fc \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/erased-68f74a5e08c5e561/lib-erased.json b/examples/leptos_axum/target/debug/.fingerprint/erased-68f74a5e08c5e561/lib-erased.json new file mode 100644 index 0000000..2d71cb1 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/erased-68f74a5e08c5e561/lib-erased.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":13107236420964227871,"profile":2241668132362809309,"path":12608774542839250841,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/erased-68f74a5e08c5e561/dep-lib-erased","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/event-listener-1f42df9c57044c2d/dep-lib-event_listener b/examples/leptos_axum/target/debug/.fingerprint/event-listener-1f42df9c57044c2d/dep-lib-event_listener new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/event-listener-1f42df9c57044c2d/dep-lib-event_listener differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/event-listener-1f42df9c57044c2d/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/event-listener-1f42df9c57044c2d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/event-listener-1f42df9c57044c2d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/event-listener-1f42df9c57044c2d/lib-event_listener b/examples/leptos_axum/target/debug/.fingerprint/event-listener-1f42df9c57044c2d/lib-event_listener new file mode 100644 index 0000000..09dc415 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/event-listener-1f42df9c57044c2d/lib-event_listener @@ -0,0 +1 @@ +098c2833e6d3a6b2 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/event-listener-1f42df9c57044c2d/lib-event_listener.json b/examples/leptos_axum/target/debug/.fingerprint/event-listener-1f42df9c57044c2d/lib-event_listener.json new file mode 100644 index 0000000..572757e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/event-listener-1f42df9c57044c2d/lib-event_listener.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"parking\", \"std\"]","declared_features":"[\"critical-section\", \"default\", \"loom\", \"parking\", \"portable-atomic\", \"portable-atomic-util\", \"portable_atomic_crate\", \"std\"]","target":8831420706606120547,"profile":13827760451848848284,"path":12564095642268895448,"deps":[[189982446159473706,"parking",false,9029553484808313737],[2251399859588827949,"pin_project_lite",false,4667605112942415018]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/event-listener-1f42df9c57044c2d/dep-lib-event_listener","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/event-listener-strategy-d390ec938f25d728/dep-lib-event_listener_strategy b/examples/leptos_axum/target/debug/.fingerprint/event-listener-strategy-d390ec938f25d728/dep-lib-event_listener_strategy new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/event-listener-strategy-d390ec938f25d728/dep-lib-event_listener_strategy differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/event-listener-strategy-d390ec938f25d728/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/event-listener-strategy-d390ec938f25d728/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/event-listener-strategy-d390ec938f25d728/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/event-listener-strategy-d390ec938f25d728/lib-event_listener_strategy b/examples/leptos_axum/target/debug/.fingerprint/event-listener-strategy-d390ec938f25d728/lib-event_listener_strategy new file mode 100644 index 0000000..2eca2b2 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/event-listener-strategy-d390ec938f25d728/lib-event_listener_strategy @@ -0,0 +1 @@ +0c859e0db82c01b0 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/event-listener-strategy-d390ec938f25d728/lib-event_listener_strategy.json b/examples/leptos_axum/target/debug/.fingerprint/event-listener-strategy-d390ec938f25d728/lib-event_listener_strategy.json new file mode 100644 index 0000000..c33c7e5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/event-listener-strategy-d390ec938f25d728/lib-event_listener_strategy.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"std\"]","declared_features":"[\"default\", \"loom\", \"portable-atomic\", \"std\"]","target":5996387411282892707,"profile":15166882104203745860,"path":10876429399594532443,"deps":[[2251399859588827949,"pin_project_lite",false,4667605112942415018],[3846636397644523246,"event_listener",false,12873209570539375625]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/event-listener-strategy-d390ec938f25d728/dep-lib-event_listener_strategy","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/form_urlencoded-53df02ed96661281/dep-lib-form_urlencoded b/examples/leptos_axum/target/debug/.fingerprint/form_urlencoded-53df02ed96661281/dep-lib-form_urlencoded new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/form_urlencoded-53df02ed96661281/dep-lib-form_urlencoded differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/form_urlencoded-53df02ed96661281/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/form_urlencoded-53df02ed96661281/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/form_urlencoded-53df02ed96661281/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/form_urlencoded-53df02ed96661281/lib-form_urlencoded b/examples/leptos_axum/target/debug/.fingerprint/form_urlencoded-53df02ed96661281/lib-form_urlencoded new file mode 100644 index 0000000..35e3943 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/form_urlencoded-53df02ed96661281/lib-form_urlencoded @@ -0,0 +1 @@ +82de79dd3acc5122 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/form_urlencoded-53df02ed96661281/lib-form_urlencoded.json b/examples/leptos_axum/target/debug/.fingerprint/form_urlencoded-53df02ed96661281/lib-form_urlencoded.json new file mode 100644 index 0000000..c55d28f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/form_urlencoded-53df02ed96661281/lib-form_urlencoded.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":6496257856677244489,"profile":2241668132362809309,"path":11338158521255556833,"deps":[[6803352382179706244,"percent_encoding",false,17460257087533955988]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/form_urlencoded-53df02ed96661281/dep-lib-form_urlencoded","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-32f26cd5af3706ad/dep-lib-futures b/examples/leptos_axum/target/debug/.fingerprint/futures-32f26cd5af3706ad/dep-lib-futures new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/futures-32f26cd5af3706ad/dep-lib-futures differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-32f26cd5af3706ad/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/futures-32f26cd5af3706ad/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-32f26cd5af3706ad/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-32f26cd5af3706ad/lib-futures b/examples/leptos_axum/target/debug/.fingerprint/futures-32f26cd5af3706ad/lib-futures new file mode 100644 index 0000000..68e832a --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-32f26cd5af3706ad/lib-futures @@ -0,0 +1 @@ +84430294e692497b \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-32f26cd5af3706ad/lib-futures.json b/examples/leptos_axum/target/debug/.fingerprint/futures-32f26cd5af3706ad/lib-futures.json new file mode 100644 index 0000000..0e71bc2 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-32f26cd5af3706ad/lib-futures.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"async-await\", \"default\", \"executor\", \"futures-executor\", \"std\", \"thread-pool\"]","declared_features":"[\"alloc\", \"async-await\", \"bilock\", \"cfg-target-has-atomic\", \"compat\", \"default\", \"executor\", \"futures-executor\", \"io-compat\", \"spin\", \"std\", \"thread-pool\", \"unstable\", \"write-all-vectored\"]","target":7465627196321967167,"profile":17467636112133979524,"path":11146371681984682899,"deps":[[10769450288504473385,"futures_sink",false,5732224354120158166],[11199279636061638679,"futures_executor",false,16054426787237626161],[12626810125273903235,"futures_io",false,7997607804362226192],[12719145368479987149,"futures_channel",false,16946985481981795384],[13067342572498832805,"futures_util",false,7914180329945593403],[15759286673077216516,"futures_core",false,17521305048918112335],[16544062892492636075,"futures_task",false,12286508805619006183]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-32f26cd5af3706ad/dep-lib-futures","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-channel-0ac15f8efb8db236/dep-lib-futures_channel b/examples/leptos_axum/target/debug/.fingerprint/futures-channel-0ac15f8efb8db236/dep-lib-futures_channel new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/futures-channel-0ac15f8efb8db236/dep-lib-futures_channel differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-channel-0ac15f8efb8db236/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/futures-channel-0ac15f8efb8db236/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-channel-0ac15f8efb8db236/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-channel-0ac15f8efb8db236/lib-futures_channel b/examples/leptos_axum/target/debug/.fingerprint/futures-channel-0ac15f8efb8db236/lib-futures_channel new file mode 100644 index 0000000..3e44a49 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-channel-0ac15f8efb8db236/lib-futures_channel @@ -0,0 +1 @@ +381c3ac381c92feb \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-channel-0ac15f8efb8db236/lib-futures_channel.json b/examples/leptos_axum/target/debug/.fingerprint/futures-channel-0ac15f8efb8db236/lib-futures_channel.json new file mode 100644 index 0000000..eb3b5a9 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-channel-0ac15f8efb8db236/lib-futures_channel.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"futures-sink\", \"sink\", \"std\"]","declared_features":"[\"alloc\", \"cfg-target-has-atomic\", \"default\", \"futures-sink\", \"sink\", \"std\", \"unstable\"]","target":13634065851578929263,"profile":17467636112133979524,"path":3438143352174391729,"deps":[[10769450288504473385,"futures_sink",false,5732224354120158166],[15759286673077216516,"futures_core",false,17521305048918112335]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-channel-0ac15f8efb8db236/dep-lib-futures_channel","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-core-77c8ed53374c713b/dep-lib-futures_core b/examples/leptos_axum/target/debug/.fingerprint/futures-core-77c8ed53374c713b/dep-lib-futures_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/futures-core-77c8ed53374c713b/dep-lib-futures_core differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-core-77c8ed53374c713b/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/futures-core-77c8ed53374c713b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-core-77c8ed53374c713b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-core-77c8ed53374c713b/lib-futures_core b/examples/leptos_axum/target/debug/.fingerprint/futures-core-77c8ed53374c713b/lib-futures_core new file mode 100644 index 0000000..13ddd9d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-core-77c8ed53374c713b/lib-futures_core @@ -0,0 +1 @@ +4fb805321c2e28f3 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-core-77c8ed53374c713b/lib-futures_core.json b/examples/leptos_axum/target/debug/.fingerprint/futures-core-77c8ed53374c713b/lib-futures_core.json new file mode 100644 index 0000000..311a480 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-core-77c8ed53374c713b/lib-futures_core.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"cfg-target-has-atomic\", \"default\", \"portable-atomic\", \"std\", \"unstable\"]","target":9453135960607436725,"profile":17467636112133979524,"path":4184652298164139466,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-core-77c8ed53374c713b/dep-lib-futures_core","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-executor-1dc509e8279fc434/dep-lib-futures_executor b/examples/leptos_axum/target/debug/.fingerprint/futures-executor-1dc509e8279fc434/dep-lib-futures_executor new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/futures-executor-1dc509e8279fc434/dep-lib-futures_executor differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-executor-1dc509e8279fc434/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/futures-executor-1dc509e8279fc434/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-executor-1dc509e8279fc434/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-executor-1dc509e8279fc434/lib-futures_executor b/examples/leptos_axum/target/debug/.fingerprint/futures-executor-1dc509e8279fc434/lib-futures_executor new file mode 100644 index 0000000..dc6701d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-executor-1dc509e8279fc434/lib-futures_executor @@ -0,0 +1 @@ +3181d05d1ac8ccde \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-executor-1dc509e8279fc434/lib-futures_executor.json b/examples/leptos_axum/target/debug/.fingerprint/futures-executor-1dc509e8279fc434/lib-futures_executor.json new file mode 100644 index 0000000..410037c --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-executor-1dc509e8279fc434/lib-futures_executor.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"std\", \"thread-pool\"]","declared_features":"[\"default\", \"std\", \"thread-pool\"]","target":11409328241454404632,"profile":17467636112133979524,"path":10785601463621232228,"deps":[[13067342572498832805,"futures_util",false,7914180329945593403],[15759286673077216516,"futures_core",false,17521305048918112335],[16544062892492636075,"futures_task",false,12286508805619006183]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-executor-1dc509e8279fc434/dep-lib-futures_executor","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-io-39c08f9e9c63bb7d/dep-lib-futures_io b/examples/leptos_axum/target/debug/.fingerprint/futures-io-39c08f9e9c63bb7d/dep-lib-futures_io new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/futures-io-39c08f9e9c63bb7d/dep-lib-futures_io differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-io-39c08f9e9c63bb7d/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/futures-io-39c08f9e9c63bb7d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-io-39c08f9e9c63bb7d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-io-39c08f9e9c63bb7d/lib-futures_io b/examples/leptos_axum/target/debug/.fingerprint/futures-io-39c08f9e9c63bb7d/lib-futures_io new file mode 100644 index 0000000..4602fcb --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-io-39c08f9e9c63bb7d/lib-futures_io @@ -0,0 +1 @@ +10fae6c7ec35fd6e \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-io-39c08f9e9c63bb7d/lib-futures_io.json b/examples/leptos_axum/target/debug/.fingerprint/futures-io-39c08f9e9c63bb7d/lib-futures_io.json new file mode 100644 index 0000000..a0d5044 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-io-39c08f9e9c63bb7d/lib-futures_io.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"std\"]","declared_features":"[\"default\", \"std\", \"unstable\"]","target":5742820543410686210,"profile":17467636112133979524,"path":9659149334871386481,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-io-39c08f9e9c63bb7d/dep-lib-futures_io","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-macro-fcd27692e72fee92/dep-lib-futures_macro b/examples/leptos_axum/target/debug/.fingerprint/futures-macro-fcd27692e72fee92/dep-lib-futures_macro new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/futures-macro-fcd27692e72fee92/dep-lib-futures_macro differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-macro-fcd27692e72fee92/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/futures-macro-fcd27692e72fee92/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-macro-fcd27692e72fee92/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-macro-fcd27692e72fee92/lib-futures_macro b/examples/leptos_axum/target/debug/.fingerprint/futures-macro-fcd27692e72fee92/lib-futures_macro new file mode 100644 index 0000000..c718787 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-macro-fcd27692e72fee92/lib-futures_macro @@ -0,0 +1 @@ +833e5de513286d01 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-macro-fcd27692e72fee92/lib-futures_macro.json b/examples/leptos_axum/target/debug/.fingerprint/futures-macro-fcd27692e72fee92/lib-futures_macro.json new file mode 100644 index 0000000..9c40f4d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-macro-fcd27692e72fee92/lib-futures_macro.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":10957102547526291127,"profile":8113656176662020586,"path":15132684453930985494,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-macro-fcd27692e72fee92/dep-lib-futures_macro","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-sink-288f8e7b06f8dcbc/dep-lib-futures_sink b/examples/leptos_axum/target/debug/.fingerprint/futures-sink-288f8e7b06f8dcbc/dep-lib-futures_sink new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/futures-sink-288f8e7b06f8dcbc/dep-lib-futures_sink differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-sink-288f8e7b06f8dcbc/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/futures-sink-288f8e7b06f8dcbc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-sink-288f8e7b06f8dcbc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-sink-288f8e7b06f8dcbc/lib-futures_sink b/examples/leptos_axum/target/debug/.fingerprint/futures-sink-288f8e7b06f8dcbc/lib-futures_sink new file mode 100644 index 0000000..53efff6 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-sink-288f8e7b06f8dcbc/lib-futures_sink @@ -0,0 +1 @@ +d6cb2cf0adf38c4f \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-sink-288f8e7b06f8dcbc/lib-futures_sink.json b/examples/leptos_axum/target/debug/.fingerprint/futures-sink-288f8e7b06f8dcbc/lib-futures_sink.json new file mode 100644 index 0000000..10b3182 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-sink-288f8e7b06f8dcbc/lib-futures_sink.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":10827111567014737887,"profile":17467636112133979524,"path":7795704065456635841,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-sink-288f8e7b06f8dcbc/dep-lib-futures_sink","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/dep-lib-futures_task b/examples/leptos_axum/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/dep-lib-futures_task new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/dep-lib-futures_task differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/lib-futures_task b/examples/leptos_axum/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/lib-futures_task new file mode 100644 index 0000000..de33512 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/lib-futures_task @@ -0,0 +1 @@ +e73aa178a97282aa \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/lib-futures_task.json b/examples/leptos_axum/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/lib-futures_task.json new file mode 100644 index 0000000..5d2d353 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-task-b2cf2b99319e9c19/lib-futures_task.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"cfg-target-has-atomic\", \"default\", \"std\", \"unstable\"]","target":13518091470260541623,"profile":17467636112133979524,"path":17749223150432638202,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-task-b2cf2b99319e9c19/dep-lib-futures_task","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-util-b9ea746dd82c65c2/dep-lib-futures_util b/examples/leptos_axum/target/debug/.fingerprint/futures-util-b9ea746dd82c65c2/dep-lib-futures_util new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/futures-util-b9ea746dd82c65c2/dep-lib-futures_util differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-util-b9ea746dd82c65c2/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/futures-util-b9ea746dd82c65c2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-util-b9ea746dd82c65c2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-util-b9ea746dd82c65c2/lib-futures_util b/examples/leptos_axum/target/debug/.fingerprint/futures-util-b9ea746dd82c65c2/lib-futures_util new file mode 100644 index 0000000..8060d10 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-util-b9ea746dd82c65c2/lib-futures_util @@ -0,0 +1 @@ +3b76ca3614d1d46d \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/futures-util-b9ea746dd82c65c2/lib-futures_util.json b/examples/leptos_axum/target/debug/.fingerprint/futures-util-b9ea746dd82c65c2/lib-futures_util.json new file mode 100644 index 0000000..31f7e21 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/futures-util-b9ea746dd82c65c2/lib-futures_util.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"async-await\", \"async-await-macro\", \"channel\", \"default\", \"futures-channel\", \"futures-io\", \"futures-macro\", \"futures-sink\", \"io\", \"memchr\", \"sink\", \"slab\", \"std\"]","declared_features":"[\"alloc\", \"async-await\", \"async-await-macro\", \"bilock\", \"cfg-target-has-atomic\", \"channel\", \"compat\", \"default\", \"futures-channel\", \"futures-io\", \"futures-macro\", \"futures-sink\", \"futures_01\", \"io\", \"io-compat\", \"libc\", \"memchr\", \"portable-atomic\", \"portable-atomic-alloc\", \"portable-atomic-util\", \"portable_atomic_crate\", \"sink\", \"slab\", \"spin\", \"std\", \"tokio-io\", \"unstable\", \"write-all-vectored\"]","target":1788798584831431502,"profile":17467636112133979524,"path":14872126922440858921,"deps":[[2251399859588827949,"pin_project_lite",false,4667605112942415018],[10769450288504473385,"futures_sink",false,5732224354120158166],[12613788554453945248,"memchr",false,6429642936732799769],[12626810125273903235,"futures_io",false,7997607804362226192],[12719145368479987149,"futures_channel",false,16946985481981795384],[13665774383867259784,"futures_macro",false,102782432416972419],[14895711841936801505,"slab",false,17399717836198745967],[15759286673077216516,"futures_core",false,17521305048918112335],[16544062892492636075,"futures_task",false,12286508805619006183]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/futures-util-b9ea746dd82c65c2/dep-lib-futures_util","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/generic-array-5902fc5acf9fb48e/dep-lib-generic_array b/examples/leptos_axum/target/debug/.fingerprint/generic-array-5902fc5acf9fb48e/dep-lib-generic_array new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/generic-array-5902fc5acf9fb48e/dep-lib-generic_array differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/generic-array-5902fc5acf9fb48e/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/generic-array-5902fc5acf9fb48e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/generic-array-5902fc5acf9fb48e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/generic-array-5902fc5acf9fb48e/lib-generic_array b/examples/leptos_axum/target/debug/.fingerprint/generic-array-5902fc5acf9fb48e/lib-generic_array new file mode 100644 index 0000000..178d3ff --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/generic-array-5902fc5acf9fb48e/lib-generic_array @@ -0,0 +1 @@ +55d2da71628909f5 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/generic-array-5902fc5acf9fb48e/lib-generic_array.json b/examples/leptos_axum/target/debug/.fingerprint/generic-array-5902fc5acf9fb48e/lib-generic_array.json new file mode 100644 index 0000000..63a6e54 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/generic-array-5902fc5acf9fb48e/lib-generic_array.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"more_lengths\"]","declared_features":"[\"more_lengths\", \"serde\", \"zeroize\"]","target":13084005262763373425,"profile":2225463790103693989,"path":9844130611727784320,"deps":[[6918147871599447195,"typenum",false,9049874933642133015],[10520923840501062997,"build_script_build",false,10521014904611148378]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/generic-array-5902fc5acf9fb48e/dep-lib-generic_array","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/generic-array-7f343a2386109d39/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/generic-array-7f343a2386109d39/build-script-build-script-build new file mode 100644 index 0000000..59bf71e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/generic-array-7f343a2386109d39/build-script-build-script-build @@ -0,0 +1 @@ +3675ff0e85b6cf41 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/generic-array-7f343a2386109d39/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/generic-array-7f343a2386109d39/build-script-build-script-build.json new file mode 100644 index 0000000..3c8bdbd --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/generic-array-7f343a2386109d39/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"more_lengths\"]","declared_features":"[\"more_lengths\", \"serde\", \"zeroize\"]","target":12318548087768197662,"profile":2225463790103693989,"path":13778180757357284258,"deps":[[5398981501050481332,"version_check",false,5486698861605516196]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/generic-array-7f343a2386109d39/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/generic-array-7f343a2386109d39/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/generic-array-7f343a2386109d39/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/generic-array-7f343a2386109d39/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/generic-array-7f343a2386109d39/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/generic-array-7f343a2386109d39/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/generic-array-7f343a2386109d39/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/generic-array-ba7aa4dcc8b8bd58/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/generic-array-ba7aa4dcc8b8bd58/run-build-script-build-script-build new file mode 100644 index 0000000..2a29206 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/generic-array-ba7aa4dcc8b8bd58/run-build-script-build-script-build @@ -0,0 +1 @@ +5a12f02150270292 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/generic-array-ba7aa4dcc8b8bd58/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/generic-array-ba7aa4dcc8b8bd58/run-build-script-build-script-build.json new file mode 100644 index 0000000..e036127 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/generic-array-ba7aa4dcc8b8bd58/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10520923840501062997,"build_script_build",false,4742209615242949942]],"local":[{"Precalculated":"0.14.7"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/getrandom-aecce89476706edf/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/getrandom-aecce89476706edf/build-script-build-script-build new file mode 100644 index 0000000..ee77f27 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/getrandom-aecce89476706edf/build-script-build-script-build @@ -0,0 +1 @@ +7ecb655bbe1d10cf \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/getrandom-aecce89476706edf/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/getrandom-aecce89476706edf/build-script-build-script-build.json new file mode 100644 index 0000000..345d200 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/getrandom-aecce89476706edf/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"std\", \"sys_rng\", \"wasm_js\"]","target":2835126046236718539,"profile":14646319430865968450,"path":18174624918038975568,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-aecce89476706edf/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/getrandom-aecce89476706edf/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/getrandom-aecce89476706edf/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/getrandom-aecce89476706edf/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/getrandom-aecce89476706edf/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/getrandom-aecce89476706edf/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/getrandom-aecce89476706edf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/getrandom-d35b6c2445598084/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/getrandom-d35b6c2445598084/run-build-script-build-script-build new file mode 100644 index 0000000..7778261 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/getrandom-d35b6c2445598084/run-build-script-build-script-build @@ -0,0 +1 @@ +a52bf2275ef55ba3 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/getrandom-d35b6c2445598084/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/getrandom-d35b6c2445598084/run-build-script-build-script-build.json new file mode 100644 index 0000000..13e6bae --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/getrandom-d35b6c2445598084/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[17989731678791879549,"build_script_build",false,14920458268892842878]],"local":[{"RerunIfChanged":{"output":"debug/build/getrandom-d35b6c2445598084/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/getrandom-eade8d24da07ca42/dep-lib-getrandom b/examples/leptos_axum/target/debug/.fingerprint/getrandom-eade8d24da07ca42/dep-lib-getrandom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/getrandom-eade8d24da07ca42/dep-lib-getrandom differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/getrandom-eade8d24da07ca42/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/getrandom-eade8d24da07ca42/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/getrandom-eade8d24da07ca42/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/getrandom-eade8d24da07ca42/lib-getrandom b/examples/leptos_axum/target/debug/.fingerprint/getrandom-eade8d24da07ca42/lib-getrandom new file mode 100644 index 0000000..89459a0 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/getrandom-eade8d24da07ca42/lib-getrandom @@ -0,0 +1 @@ +a2789f3b50ce3b08 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/getrandom-eade8d24da07ca42/lib-getrandom.json b/examples/leptos_axum/target/debug/.fingerprint/getrandom-eade8d24da07ca42/lib-getrandom.json new file mode 100644 index 0000000..369bb08 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/getrandom-eade8d24da07ca42/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"std\", \"sys_rng\", \"wasm_js\"]","target":5479159445871601843,"profile":14646319430865968450,"path":13328598597604314923,"deps":[[7667230146095136825,"cfg_if",false,1891375480105173425],[10504718112287328430,"libc",false,11140046993721315775],[17989731678791879549,"build_script_build",false,11771271835808836517]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/getrandom-eade8d24da07ca42/dep-lib-getrandom","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/gloo-net-c2ae71330efea551/dep-lib-gloo_net b/examples/leptos_axum/target/debug/.fingerprint/gloo-net-c2ae71330efea551/dep-lib-gloo_net new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/gloo-net-c2ae71330efea551/dep-lib-gloo_net differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/gloo-net-c2ae71330efea551/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/gloo-net-c2ae71330efea551/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/gloo-net-c2ae71330efea551/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/gloo-net-c2ae71330efea551/lib-gloo_net b/examples/leptos_axum/target/debug/.fingerprint/gloo-net-c2ae71330efea551/lib-gloo_net new file mode 100644 index 0000000..18b4162 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/gloo-net-c2ae71330efea551/lib-gloo_net @@ -0,0 +1 @@ +370316d751212753 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/gloo-net-c2ae71330efea551/lib-gloo_net.json b/examples/leptos_axum/target/debug/.fingerprint/gloo-net-c2ae71330efea551/lib-gloo_net.json new file mode 100644 index 0000000..7d75043 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/gloo-net-c2ae71330efea551/lib-gloo_net.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"eventsource\", \"futures-channel\", \"futures-core\", \"futures-sink\", \"http\", \"json\", \"pin-project\", \"serde\", \"serde_json\", \"websocket\"]","declared_features":"[\"default\", \"eventsource\", \"futures-channel\", \"futures-core\", \"futures-io\", \"futures-sink\", \"http\", \"io-util\", \"json\", \"pin-project\", \"serde\", \"serde_json\", \"websocket\"]","target":7289951416308014359,"profile":2241668132362809309,"path":6874977023705701308,"deps":[[5098792620852445434,"wasm_bindgen",false,6650567199088231542],[5330460842384404171,"serde_json",false,2434650379303972315],[5921074888975346911,"gloo_utils",false,10825798300316833442],[6557439603276904804,"serde",false,660198786115094860],[8008191657135824715,"thiserror",false,2992634928651936203],[10769450288504473385,"futures_sink",false,5732224354120158166],[12328341851100645683,"http",false,13193275052002188385],[12719145368479987149,"futures_channel",false,16946985481981795384],[15759286673077216516,"futures_core",false,17521305048918112335],[16773483497834534941,"wasm_bindgen_futures",false,4356650302939630260],[17001154585428963880,"web_sys",false,15020542606979008053],[17152217488820947184,"pin_project",false,1941055558116524256],[17679330592366598538,"js_sys",false,8592139079836159418]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/gloo-net-c2ae71330efea551/dep-lib-gloo_net","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/gloo-utils-d06d67fc27b6bc59/dep-lib-gloo_utils b/examples/leptos_axum/target/debug/.fingerprint/gloo-utils-d06d67fc27b6bc59/dep-lib-gloo_utils new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/gloo-utils-d06d67fc27b6bc59/dep-lib-gloo_utils differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/gloo-utils-d06d67fc27b6bc59/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/gloo-utils-d06d67fc27b6bc59/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/gloo-utils-d06d67fc27b6bc59/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/gloo-utils-d06d67fc27b6bc59/lib-gloo_utils b/examples/leptos_axum/target/debug/.fingerprint/gloo-utils-d06d67fc27b6bc59/lib-gloo_utils new file mode 100644 index 0000000..536ac58 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/gloo-utils-d06d67fc27b6bc59/lib-gloo_utils @@ -0,0 +1 @@ +a296695432f63c96 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/gloo-utils-d06d67fc27b6bc59/lib-gloo_utils.json b/examples/leptos_axum/target/debug/.fingerprint/gloo-utils-d06d67fc27b6bc59/lib-gloo_utils.json new file mode 100644 index 0000000..a4aac3a --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/gloo-utils-d06d67fc27b6bc59/lib-gloo_utils.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"serde\"]","declared_features":"[\"default\", \"serde\"]","target":1414012289134943335,"profile":2241668132362809309,"path":2499795934532503653,"deps":[[5098792620852445434,"wasm_bindgen",false,6650567199088231542],[5330460842384404171,"serde_json",false,2434650379303972315],[6557439603276904804,"serde",false,660198786115094860],[17001154585428963880,"web_sys",false,15020542606979008053],[17679330592366598538,"js_sys",false,8592139079836159418]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/gloo-utils-d06d67fc27b6bc59/dep-lib-gloo_utils","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/guardian-6410e32068359079/dep-lib-guardian b/examples/leptos_axum/target/debug/.fingerprint/guardian-6410e32068359079/dep-lib-guardian new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/guardian-6410e32068359079/dep-lib-guardian differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/guardian-6410e32068359079/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/guardian-6410e32068359079/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/guardian-6410e32068359079/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/guardian-6410e32068359079/lib-guardian b/examples/leptos_axum/target/debug/.fingerprint/guardian-6410e32068359079/lib-guardian new file mode 100644 index 0000000..c40a04e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/guardian-6410e32068359079/lib-guardian @@ -0,0 +1 @@ +52f725ff4f9d116c \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/guardian-6410e32068359079/lib-guardian.json b/examples/leptos_axum/target/debug/.fingerprint/guardian-6410e32068359079/lib-guardian.json new file mode 100644 index 0000000..820892e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/guardian-6410e32068359079/lib-guardian.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":10051944210206307471,"profile":2241668132362809309,"path":7351819736975060688,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/guardian-6410e32068359079/dep-lib-guardian","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/hashbrown-5cfb98346d9bdeab/dep-lib-hashbrown b/examples/leptos_axum/target/debug/.fingerprint/hashbrown-5cfb98346d9bdeab/dep-lib-hashbrown new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/hashbrown-5cfb98346d9bdeab/dep-lib-hashbrown differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/hashbrown-5cfb98346d9bdeab/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/hashbrown-5cfb98346d9bdeab/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/hashbrown-5cfb98346d9bdeab/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/hashbrown-5cfb98346d9bdeab/lib-hashbrown b/examples/leptos_axum/target/debug/.fingerprint/hashbrown-5cfb98346d9bdeab/lib-hashbrown new file mode 100644 index 0000000..ab9c2ab --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/hashbrown-5cfb98346d9bdeab/lib-hashbrown @@ -0,0 +1 @@ +4f0bd87fa447dea6 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/hashbrown-5cfb98346d9bdeab/lib-hashbrown.json b/examples/leptos_axum/target/debug/.fingerprint/hashbrown-5cfb98346d9bdeab/lib-hashbrown.json new file mode 100644 index 0000000..2582212 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/hashbrown-5cfb98346d9bdeab/lib-hashbrown.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"alloc\", \"allocator-api2\", \"core\", \"default\", \"default-hasher\", \"equivalent\", \"inline-more\", \"nightly\", \"raw-entry\", \"rayon\", \"rustc-dep-of-std\", \"rustc-internal-api\", \"serde\"]","target":7848994504142944354,"profile":1812430064861652470,"path":7388625948292113916,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hashbrown-5cfb98346d9bdeab/dep-lib-hashbrown","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/hashbrown-ae4809890b874568/dep-lib-hashbrown b/examples/leptos_axum/target/debug/.fingerprint/hashbrown-ae4809890b874568/dep-lib-hashbrown new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/hashbrown-ae4809890b874568/dep-lib-hashbrown differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/hashbrown-ae4809890b874568/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/hashbrown-ae4809890b874568/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/hashbrown-ae4809890b874568/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/hashbrown-ae4809890b874568/lib-hashbrown b/examples/leptos_axum/target/debug/.fingerprint/hashbrown-ae4809890b874568/lib-hashbrown new file mode 100644 index 0000000..68e9d88 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/hashbrown-ae4809890b874568/lib-hashbrown @@ -0,0 +1 @@ +032e623eabe5090e \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/hashbrown-ae4809890b874568/lib-hashbrown.json b/examples/leptos_axum/target/debug/.fingerprint/hashbrown-ae4809890b874568/lib-hashbrown.json new file mode 100644 index 0000000..003b23d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/hashbrown-ae4809890b874568/lib-hashbrown.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"alloc\", \"allocator-api2\", \"core\", \"default\", \"default-hasher\", \"equivalent\", \"inline-more\", \"nightly\", \"raw-entry\", \"rayon\", \"rustc-dep-of-std\", \"rustc-internal-api\", \"serde\"]","target":7848994504142944354,"profile":16863736780469185321,"path":7388625948292113916,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hashbrown-ae4809890b874568/dep-lib-hashbrown","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/html-escape-04c58a8291d167e9/dep-lib-html_escape b/examples/leptos_axum/target/debug/.fingerprint/html-escape-04c58a8291d167e9/dep-lib-html_escape new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/html-escape-04c58a8291d167e9/dep-lib-html_escape differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/html-escape-04c58a8291d167e9/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/html-escape-04c58a8291d167e9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/html-escape-04c58a8291d167e9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/html-escape-04c58a8291d167e9/lib-html_escape b/examples/leptos_axum/target/debug/.fingerprint/html-escape-04c58a8291d167e9/lib-html_escape new file mode 100644 index 0000000..3d97ddf --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/html-escape-04c58a8291d167e9/lib-html_escape @@ -0,0 +1 @@ +0cb236bec8b0c388 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/html-escape-04c58a8291d167e9/lib-html_escape.json b/examples/leptos_axum/target/debug/.fingerprint/html-escape-04c58a8291d167e9/lib-html_escape.json new file mode 100644 index 0000000..c485347 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/html-escape-04c58a8291d167e9/lib-html_escape.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":4606346956138884158,"profile":2225463790103693989,"path":972749796447903144,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html-escape-04c58a8291d167e9/dep-lib-html_escape","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/html-escape-9ce23e06efb873ad/dep-lib-html_escape b/examples/leptos_axum/target/debug/.fingerprint/html-escape-9ce23e06efb873ad/dep-lib-html_escape new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/html-escape-9ce23e06efb873ad/dep-lib-html_escape differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/html-escape-9ce23e06efb873ad/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/html-escape-9ce23e06efb873ad/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/html-escape-9ce23e06efb873ad/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/html-escape-9ce23e06efb873ad/lib-html_escape b/examples/leptos_axum/target/debug/.fingerprint/html-escape-9ce23e06efb873ad/lib-html_escape new file mode 100644 index 0000000..e96988d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/html-escape-9ce23e06efb873ad/lib-html_escape @@ -0,0 +1 @@ +10acb88954dc68e9 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/html-escape-9ce23e06efb873ad/lib-html_escape.json b/examples/leptos_axum/target/debug/.fingerprint/html-escape-9ce23e06efb873ad/lib-html_escape.json new file mode 100644 index 0000000..0a41494 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/html-escape-9ce23e06efb873ad/lib-html_escape.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":4606346956138884158,"profile":2241668132362809309,"path":972749796447903144,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/html-escape-9ce23e06efb873ad/dep-lib-html_escape","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/http-70f1741eb8ff2b4a/dep-lib-http b/examples/leptos_axum/target/debug/.fingerprint/http-70f1741eb8ff2b4a/dep-lib-http new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/http-70f1741eb8ff2b4a/dep-lib-http differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/http-70f1741eb8ff2b4a/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/http-70f1741eb8ff2b4a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/http-70f1741eb8ff2b4a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/http-70f1741eb8ff2b4a/lib-http b/examples/leptos_axum/target/debug/.fingerprint/http-70f1741eb8ff2b4a/lib-http new file mode 100644 index 0000000..ac951f4 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/http-70f1741eb8ff2b4a/lib-http @@ -0,0 +1 @@ +611c9d42c2ed17b7 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/http-70f1741eb8ff2b4a/lib-http.json b/examples/leptos_axum/target/debug/.fingerprint/http-70f1741eb8ff2b4a/lib-http.json new file mode 100644 index 0000000..c191bfc --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/http-70f1741eb8ff2b4a/lib-http.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":4766512060560342653,"profile":2241668132362809309,"path":14928329766390979514,"deps":[[5532778797167691009,"itoa",false,728509330440049395],[11926622812581095017,"bytes",false,17162365318241494045]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/http-70f1741eb8ff2b4a/dep-lib-http","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/hydration_context-4357cb4e6b7a3ce3/dep-lib-hydration_context b/examples/leptos_axum/target/debug/.fingerprint/hydration_context-4357cb4e6b7a3ce3/dep-lib-hydration_context new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/hydration_context-4357cb4e6b7a3ce3/dep-lib-hydration_context differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/hydration_context-4357cb4e6b7a3ce3/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/hydration_context-4357cb4e6b7a3ce3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/hydration_context-4357cb4e6b7a3ce3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/hydration_context-4357cb4e6b7a3ce3/lib-hydration_context b/examples/leptos_axum/target/debug/.fingerprint/hydration_context-4357cb4e6b7a3ce3/lib-hydration_context new file mode 100644 index 0000000..e299432 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/hydration_context-4357cb4e6b7a3ce3/lib-hydration_context @@ -0,0 +1 @@ +cc1c14a2c3375fa9 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/hydration_context-4357cb4e6b7a3ce3/lib-hydration_context.json b/examples/leptos_axum/target/debug/.fingerprint/hydration_context-4357cb4e6b7a3ce3/lib-hydration_context.json new file mode 100644 index 0000000..1853683 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/hydration_context-4357cb4e6b7a3ce3/lib-hydration_context.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"browser\"]","target":18257420748281559332,"profile":1569615065688704865,"path":5420423472076574035,"deps":[[2251399859588827949,"pin_project_lite",false,4667605112942415018],[2693190314680930293,"throw_error",false,5073458601212145196],[3146308150807269233,"or_poisoned",false,12685221538892035093],[6557439603276904804,"serde",false,660198786115094860],[6692650170110433251,"futures",false,8883793258988323716]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/hydration_context-4357cb4e6b7a3ce3/dep-lib-hydration_context","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_collections-be359238685b9d13/dep-lib-icu_collections b/examples/leptos_axum/target/debug/.fingerprint/icu_collections-be359238685b9d13/dep-lib-icu_collections new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/icu_collections-be359238685b9d13/dep-lib-icu_collections differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_collections-be359238685b9d13/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/icu_collections-be359238685b9d13/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_collections-be359238685b9d13/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_collections-be359238685b9d13/lib-icu_collections b/examples/leptos_axum/target/debug/.fingerprint/icu_collections-be359238685b9d13/lib-icu_collections new file mode 100644 index 0000000..54f9a23 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_collections-be359238685b9d13/lib-icu_collections @@ -0,0 +1 @@ +b4dae65073d6a547 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_collections-be359238685b9d13/lib-icu_collections.json b/examples/leptos_axum/target/debug/.fingerprint/icu_collections-be359238685b9d13/lib-icu_collections.json new file mode 100644 index 0000000..18e0f07 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_collections-be359238685b9d13/lib-icu_collections.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"alloc\", \"databake\", \"serde\"]","target":8741949119514994751,"profile":15319846033271432293,"path":15445298705701888685,"deps":[[4367327283662589161,"yoke",false,11581598510181064012],[5078124415930854154,"utf8_iter",false,1928312879455688758],[7664967068156160197,"displaydoc",false,4513505632876660728],[9119616491714376884,"zerovec",false,8547845344627906191],[12481580349051900383,"zerofrom",false,8622045262010753522],[16987687164371150135,"potential_utf",false,5996092276354162013]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_collections-be359238685b9d13/dep-lib-icu_collections","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_locale_core-65f9d7248f190242/dep-lib-icu_locale_core b/examples/leptos_axum/target/debug/.fingerprint/icu_locale_core-65f9d7248f190242/dep-lib-icu_locale_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/icu_locale_core-65f9d7248f190242/dep-lib-icu_locale_core differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_locale_core-65f9d7248f190242/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/icu_locale_core-65f9d7248f190242/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_locale_core-65f9d7248f190242/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_locale_core-65f9d7248f190242/lib-icu_locale_core b/examples/leptos_axum/target/debug/.fingerprint/icu_locale_core-65f9d7248f190242/lib-icu_locale_core new file mode 100644 index 0000000..d402c2e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_locale_core-65f9d7248f190242/lib-icu_locale_core @@ -0,0 +1 @@ +775d14ed55b529c8 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_locale_core-65f9d7248f190242/lib-icu_locale_core.json b/examples/leptos_axum/target/debug/.fingerprint/icu_locale_core-65f9d7248f190242/lib-icu_locale_core.json new file mode 100644 index 0000000..58d3db3 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_locale_core-65f9d7248f190242/lib-icu_locale_core.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"serde\", \"zerovec\"]","target":7234736894702847895,"profile":15319846033271432293,"path":1983021566355154636,"deps":[[3472867876026527834,"litemap",false,4936825316213513410],[4600868325190463366,"writeable",false,9576390035156153345],[7664967068156160197,"displaydoc",false,4513505632876660728],[9119616491714376884,"zerovec",false,8547845344627906191],[11371850679357357896,"tinystr",false,7139690580439764512]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_locale_core-65f9d7248f190242/dep-lib-icu_locale_core","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer-83b9c8bf32345378/dep-lib-icu_normalizer b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer-83b9c8bf32345378/dep-lib-icu_normalizer new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer-83b9c8bf32345378/dep-lib-icu_normalizer differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer-83b9c8bf32345378/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer-83b9c8bf32345378/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer-83b9c8bf32345378/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer-83b9c8bf32345378/lib-icu_normalizer b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer-83b9c8bf32345378/lib-icu_normalizer new file mode 100644 index 0000000..a39704e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer-83b9c8bf32345378/lib-icu_normalizer @@ -0,0 +1 @@ +3a619a2eff41004f \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer-83b9c8bf32345378/lib-icu_normalizer.json b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer-83b9c8bf32345378/lib-icu_normalizer.json new file mode 100644 index 0000000..ce20e03 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer-83b9c8bf32345378/lib-icu_normalizer.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"compiled_data\"]","declared_features":"[\"compiled_data\", \"datagen\", \"default\", \"harfbuzz_traits\", \"icu_properties\", \"serde\", \"utf16_iter\", \"utf8_iter\", \"write16\"]","target":4082895731217690114,"profile":15319846033271432293,"path":4188025618706677391,"deps":[[2295442787663447226,"smallvec",false,10655083972191048443],[2740396133377933779,"icu_collections",false,5162768338617031348],[6775492119671411220,"icu_provider",false,17223381444685219444],[8537256058173792506,"icu_normalizer_data",false,770368213524641427],[9119616491714376884,"zerovec",false,8547845344627906191]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_normalizer-83b9c8bf32345378/dep-lib-icu_normalizer","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-8a6d3456e3f5808e/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-8a6d3456e3f5808e/run-build-script-build-script-build new file mode 100644 index 0000000..ee64f74 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-8a6d3456e3f5808e/run-build-script-build-script-build @@ -0,0 +1 @@ +e08a72b5c4f7f09c \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-8a6d3456e3f5808e/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-8a6d3456e3f5808e/run-build-script-build-script-build.json new file mode 100644 index 0000000..3d3bb7d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-8a6d3456e3f5808e/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8537256058173792506,"build_script_build",false,14909448009803402827]],"local":[{"RerunIfEnvChanged":{"var":"ICU4X_DATA_DIR","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/build-script-build-script-build new file mode 100644 index 0000000..1741153 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/build-script-build-script-build @@ -0,0 +1 @@ +4b8e7ca5f8ffe8ce \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/build-script-build-script-build.json new file mode 100644 index 0000000..d93edce --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":13574669494803281578,"path":2388789443101814796,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-972e8c05ead035c0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/dep-lib-icu_normalizer_data b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/dep-lib-icu_normalizer_data new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/dep-lib-icu_normalizer_data differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/lib-icu_normalizer_data b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/lib-icu_normalizer_data new file mode 100644 index 0000000..a7b9a42 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/lib-icu_normalizer_data @@ -0,0 +1 @@ +93766301cfe5b00a \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/lib-icu_normalizer_data.json b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/lib-icu_normalizer_data.json new file mode 100644 index 0000000..24a99a4 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/lib-icu_normalizer_data.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":17980939898269686983,"profile":6379353384314970492,"path":2116740866394051898,"deps":[[8537256058173792506,"build_script_build",false,11308811088557148896]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_normalizer_data-d587184efb5e1f57/dep-lib-icu_normalizer_data","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_properties-5f570ef8bda7b6fe/dep-lib-icu_properties b/examples/leptos_axum/target/debug/.fingerprint/icu_properties-5f570ef8bda7b6fe/dep-lib-icu_properties new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/icu_properties-5f570ef8bda7b6fe/dep-lib-icu_properties differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_properties-5f570ef8bda7b6fe/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/icu_properties-5f570ef8bda7b6fe/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_properties-5f570ef8bda7b6fe/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_properties-5f570ef8bda7b6fe/lib-icu_properties b/examples/leptos_axum/target/debug/.fingerprint/icu_properties-5f570ef8bda7b6fe/lib-icu_properties new file mode 100644 index 0000000..916a704 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_properties-5f570ef8bda7b6fe/lib-icu_properties @@ -0,0 +1 @@ +95f3a054fb2a0726 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_properties-5f570ef8bda7b6fe/lib-icu_properties.json b/examples/leptos_axum/target/debug/.fingerprint/icu_properties-5f570ef8bda7b6fe/lib-icu_properties.json new file mode 100644 index 0000000..c9fe41f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_properties-5f570ef8bda7b6fe/lib-icu_properties.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"compiled_data\"]","declared_features":"[\"alloc\", \"compiled_data\", \"datagen\", \"default\", \"harfbuzz_traits\", \"serde\", \"unicode_bidi\"]","target":12882061015678277883,"profile":15319846033271432293,"path":15816400416892695183,"deps":[[2508912448185119253,"icu_locale_core",false,14423258662285106551],[2740396133377933779,"icu_collections",false,5162768338617031348],[6765506827638725279,"icu_properties_data",false,15622861267114027469],[6775492119671411220,"icu_provider",false,17223381444685219444],[9119616491714376884,"zerovec",false,8547845344627906191],[12042051876675963596,"zerotrie",false,12473007206520192845]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_properties-5f570ef8bda7b6fe/dep-lib-icu_properties","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/dep-lib-icu_properties_data b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/dep-lib-icu_properties_data new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/dep-lib-icu_properties_data differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/lib-icu_properties_data b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/lib-icu_properties_data new file mode 100644 index 0000000..565587d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/lib-icu_properties_data @@ -0,0 +1 @@ +cd698a898c8dcfd8 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/lib-icu_properties_data.json b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/lib-icu_properties_data.json new file mode 100644 index 0000000..7d25093 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/lib-icu_properties_data.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":9037757742335137726,"profile":6379353384314970492,"path":13819747839991729774,"deps":[[6765506827638725279,"build_script_build",false,17146414567280451792]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_properties_data-1d3a2241b6008d88/dep-lib-icu_properties_data","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c25c7adf66567e52/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c25c7adf66567e52/run-build-script-build-script-build new file mode 100644 index 0000000..5cb2baa --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c25c7adf66567e52/run-build-script-build-script-build @@ -0,0 +1 @@ +d0a0550e344df4ed \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c25c7adf66567e52/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c25c7adf66567e52/run-build-script-build-script-build.json new file mode 100644 index 0000000..c0460ef --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c25c7adf66567e52/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6765506827638725279,"build_script_build",false,17369204404844171019]],"local":[{"RerunIfEnvChanged":{"var":"ICU4X_DATA_DIR","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/build-script-build-script-build new file mode 100644 index 0000000..d7685e8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/build-script-build-script-build @@ -0,0 +1 @@ +0b0fe35561cf0bf1 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/build-script-build-script-build.json new file mode 100644 index 0000000..84b88cb --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":13574669494803281578,"path":7462668307701826658,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_properties_data-c6a58e264774ca8f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_provider-197f4ab962bcf7b8/dep-lib-icu_provider b/examples/leptos_axum/target/debug/.fingerprint/icu_provider-197f4ab962bcf7b8/dep-lib-icu_provider new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/icu_provider-197f4ab962bcf7b8/dep-lib-icu_provider differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_provider-197f4ab962bcf7b8/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/icu_provider-197f4ab962bcf7b8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_provider-197f4ab962bcf7b8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_provider-197f4ab962bcf7b8/lib-icu_provider b/examples/leptos_axum/target/debug/.fingerprint/icu_provider-197f4ab962bcf7b8/lib-icu_provider new file mode 100644 index 0000000..abb5cb9 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_provider-197f4ab962bcf7b8/lib-icu_provider @@ -0,0 +1 @@ +744684a92bbe05ef \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/icu_provider-197f4ab962bcf7b8/lib-icu_provider.json b/examples/leptos_axum/target/debug/.fingerprint/icu_provider-197f4ab962bcf7b8/lib-icu_provider.json new file mode 100644 index 0000000..f9c800d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/icu_provider-197f4ab962bcf7b8/lib-icu_provider.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"baked\"]","declared_features":"[\"alloc\", \"baked\", \"deserialize_bincode_1\", \"deserialize_json\", \"deserialize_postcard_1\", \"export\", \"logging\", \"serde\", \"std\", \"sync\", \"zerotrie\"]","target":8134314816311233441,"profile":15319846033271432293,"path":3175045549119858700,"deps":[[2508912448185119253,"icu_locale_core",false,14423258662285106551],[4367327283662589161,"yoke",false,11581598510181064012],[4600868325190463366,"writeable",false,9576390035156153345],[7664967068156160197,"displaydoc",false,4513505632876660728],[9119616491714376884,"zerovec",false,8547845344627906191],[12042051876675963596,"zerotrie",false,12473007206520192845],[12481580349051900383,"zerofrom",false,8622045262010753522]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/icu_provider-197f4ab962bcf7b8/dep-lib-icu_provider","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/idna-568ea53c005b8f2c/dep-lib-idna b/examples/leptos_axum/target/debug/.fingerprint/idna-568ea53c005b8f2c/dep-lib-idna new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/idna-568ea53c005b8f2c/dep-lib-idna differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/idna-568ea53c005b8f2c/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/idna-568ea53c005b8f2c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/idna-568ea53c005b8f2c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/idna-568ea53c005b8f2c/lib-idna b/examples/leptos_axum/target/debug/.fingerprint/idna-568ea53c005b8f2c/lib-idna new file mode 100644 index 0000000..6df4c91 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/idna-568ea53c005b8f2c/lib-idna @@ -0,0 +1 @@ +350444901b448a7f \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/idna-568ea53c005b8f2c/lib-idna.json b/examples/leptos_axum/target/debug/.fingerprint/idna-568ea53c005b8f2c/lib-idna.json new file mode 100644 index 0000000..a0294e8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/idna-568ea53c005b8f2c/lib-idna.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"compiled_data\", \"std\"]","declared_features":"[\"alloc\", \"compiled_data\", \"default\", \"std\"]","target":2602963282308965300,"profile":2241668132362809309,"path":16704507618414675310,"deps":[[2295442787663447226,"smallvec",false,10655083972191048443],[5078124415930854154,"utf8_iter",false,1928312879455688758],[14746133296817838026,"idna_adapter",false,6807453805918437590]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/idna-568ea53c005b8f2c/dep-lib-idna","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/idna_adapter-8ea745f72cf16afb/dep-lib-idna_adapter b/examples/leptos_axum/target/debug/.fingerprint/idna_adapter-8ea745f72cf16afb/dep-lib-idna_adapter new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/idna_adapter-8ea745f72cf16afb/dep-lib-idna_adapter differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/idna_adapter-8ea745f72cf16afb/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/idna_adapter-8ea745f72cf16afb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/idna_adapter-8ea745f72cf16afb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/idna_adapter-8ea745f72cf16afb/lib-idna_adapter b/examples/leptos_axum/target/debug/.fingerprint/idna_adapter-8ea745f72cf16afb/lib-idna_adapter new file mode 100644 index 0000000..2b8bb82 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/idna_adapter-8ea745f72cf16afb/lib-idna_adapter @@ -0,0 +1 @@ +d640a6462bef785e \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/idna_adapter-8ea745f72cf16afb/lib-idna_adapter.json b/examples/leptos_axum/target/debug/.fingerprint/idna_adapter-8ea745f72cf16afb/lib-idna_adapter.json new file mode 100644 index 0000000..d8a4cef --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/idna_adapter-8ea745f72cf16afb/lib-idna_adapter.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"compiled_data\"]","declared_features":"[\"compiled_data\"]","target":11527116880419813357,"profile":2241668132362809309,"path":3031428562148115519,"deps":[[2309614597000388150,"icu_normalizer",false,5692622493250642234],[5565326065051315429,"icu_properties",false,2740206157223228309]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/idna_adapter-8ea745f72cf16afb/dep-lib-idna_adapter","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/indexmap-272d48ecb39dfcc8/dep-lib-indexmap b/examples/leptos_axum/target/debug/.fingerprint/indexmap-272d48ecb39dfcc8/dep-lib-indexmap new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/indexmap-272d48ecb39dfcc8/dep-lib-indexmap differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/indexmap-272d48ecb39dfcc8/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/indexmap-272d48ecb39dfcc8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/indexmap-272d48ecb39dfcc8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/indexmap-272d48ecb39dfcc8/lib-indexmap b/examples/leptos_axum/target/debug/.fingerprint/indexmap-272d48ecb39dfcc8/lib-indexmap new file mode 100644 index 0000000..f0a57c9 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/indexmap-272d48ecb39dfcc8/lib-indexmap @@ -0,0 +1 @@ +9a69b425041d1192 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/indexmap-272d48ecb39dfcc8/lib-indexmap.json b/examples/leptos_axum/target/debug/.fingerprint/indexmap-272d48ecb39dfcc8/lib-indexmap.json new file mode 100644 index 0000000..1c935a5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/indexmap-272d48ecb39dfcc8/lib-indexmap.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"arbitrary\", \"borsh\", \"default\", \"quickcheck\", \"rayon\", \"serde\", \"std\", \"sval\", \"test_debug\"]","target":15738714612577068147,"profile":17770749724986273341,"path":3547674199165799994,"deps":[[3067591776805002636,"hashbrown",false,12024126826970876751],[5230392855116717286,"equivalent",false,14540210450222618581]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/indexmap-272d48ecb39dfcc8/dep-lib-indexmap","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/indexmap-7288faeefca9e398/dep-lib-indexmap b/examples/leptos_axum/target/debug/.fingerprint/indexmap-7288faeefca9e398/dep-lib-indexmap new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/indexmap-7288faeefca9e398/dep-lib-indexmap differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/indexmap-7288faeefca9e398/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/indexmap-7288faeefca9e398/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/indexmap-7288faeefca9e398/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/indexmap-7288faeefca9e398/lib-indexmap b/examples/leptos_axum/target/debug/.fingerprint/indexmap-7288faeefca9e398/lib-indexmap new file mode 100644 index 0000000..1b50076 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/indexmap-7288faeefca9e398/lib-indexmap @@ -0,0 +1 @@ +fdf18751b73d2bff \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/indexmap-7288faeefca9e398/lib-indexmap.json b/examples/leptos_axum/target/debug/.fingerprint/indexmap-7288faeefca9e398/lib-indexmap.json new file mode 100644 index 0000000..303efc3 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/indexmap-7288faeefca9e398/lib-indexmap.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"arbitrary\", \"borsh\", \"default\", \"quickcheck\", \"rayon\", \"serde\", \"std\", \"sval\", \"test_debug\"]","target":15738714612577068147,"profile":11800664513218926762,"path":3547674199165799994,"deps":[[3067591776805002636,"hashbrown",false,1011592114970177027],[5230392855116717286,"equivalent",false,14506815746698361732]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/indexmap-7288faeefca9e398/dep-lib-indexmap","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/interpolator-3f270c6007151882/dep-lib-interpolator b/examples/leptos_axum/target/debug/.fingerprint/interpolator-3f270c6007151882/dep-lib-interpolator new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/interpolator-3f270c6007151882/dep-lib-interpolator differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/interpolator-3f270c6007151882/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/interpolator-3f270c6007151882/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/interpolator-3f270c6007151882/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/interpolator-3f270c6007151882/lib-interpolator b/examples/leptos_axum/target/debug/.fingerprint/interpolator-3f270c6007151882/lib-interpolator new file mode 100644 index 0000000..c4ce498 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/interpolator-3f270c6007151882/lib-interpolator @@ -0,0 +1 @@ +58c9e446dac008ff \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/interpolator-3f270c6007151882/lib-interpolator.json b/examples/leptos_axum/target/debug/.fingerprint/interpolator-3f270c6007151882/lib-interpolator.json new file mode 100644 index 0000000..1e8dceb --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/interpolator-3f270c6007151882/lib-interpolator.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"iter\"]","declared_features":"[\"debug\", \"iter\", \"number\", \"pointer\"]","target":7210577842179254354,"profile":2225463790103693989,"path":14879164690406299290,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/interpolator-3f270c6007151882/dep-lib-interpolator","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/itertools-008f91674e3b4f69/dep-lib-itertools b/examples/leptos_axum/target/debug/.fingerprint/itertools-008f91674e3b4f69/dep-lib-itertools new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/itertools-008f91674e3b4f69/dep-lib-itertools differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/itertools-008f91674e3b4f69/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/itertools-008f91674e3b4f69/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/itertools-008f91674e3b4f69/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/itertools-008f91674e3b4f69/lib-itertools b/examples/leptos_axum/target/debug/.fingerprint/itertools-008f91674e3b4f69/lib-itertools new file mode 100644 index 0000000..87dba5e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/itertools-008f91674e3b4f69/lib-itertools @@ -0,0 +1 @@ +7be4425baa23b8e3 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/itertools-008f91674e3b4f69/lib-itertools.json b/examples/leptos_axum/target/debug/.fingerprint/itertools-008f91674e3b4f69/lib-itertools.json new file mode 100644 index 0000000..f9c1283 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/itertools-008f91674e3b4f69/lib-itertools.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"use_alloc\", \"use_std\"]","declared_features":"[\"default\", \"use_alloc\", \"use_std\"]","target":4043370049547609272,"profile":2241668132362809309,"path":301685388275701725,"deps":[[13203131169721040493,"either",false,1434992167116022013]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/itertools-008f91674e3b4f69/dep-lib-itertools","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/itertools-50c38fa6d921d827/dep-lib-itertools b/examples/leptos_axum/target/debug/.fingerprint/itertools-50c38fa6d921d827/dep-lib-itertools new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/itertools-50c38fa6d921d827/dep-lib-itertools differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/itertools-50c38fa6d921d827/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/itertools-50c38fa6d921d827/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/itertools-50c38fa6d921d827/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/itertools-50c38fa6d921d827/lib-itertools b/examples/leptos_axum/target/debug/.fingerprint/itertools-50c38fa6d921d827/lib-itertools new file mode 100644 index 0000000..4f374cd --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/itertools-50c38fa6d921d827/lib-itertools @@ -0,0 +1 @@ +a8d020aebd6722bf \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/itertools-50c38fa6d921d827/lib-itertools.json b/examples/leptos_axum/target/debug/.fingerprint/itertools-50c38fa6d921d827/lib-itertools.json new file mode 100644 index 0000000..c3d2367 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/itertools-50c38fa6d921d827/lib-itertools.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"use_alloc\", \"use_std\"]","declared_features":"[\"default\", \"use_alloc\", \"use_std\"]","target":4043370049547609272,"profile":2225463790103693989,"path":301685388275701725,"deps":[[13203131169721040493,"either",false,5616350929023937657]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/itertools-50c38fa6d921d827/dep-lib-itertools","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/dep-lib-itoa b/examples/leptos_axum/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/dep-lib-itoa new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/dep-lib-itoa differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/lib-itoa b/examples/leptos_axum/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/lib-itoa new file mode 100644 index 0000000..f3a214d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/lib-itoa @@ -0,0 +1 @@ +f3d26f50602f1c0a \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/lib-itoa.json b/examples/leptos_axum/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/lib-itoa.json new file mode 100644 index 0000000..0b5be23 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/itoa-6ddde9f8d1eacb1c/lib-itoa.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"no-panic\"]","target":18426369533666673425,"profile":2241668132362809309,"path":3355421602437736376,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/itoa-6ddde9f8d1eacb1c/dep-lib-itoa","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/js-sys-20ed683147fa37f6/dep-lib-js_sys b/examples/leptos_axum/target/debug/.fingerprint/js-sys-20ed683147fa37f6/dep-lib-js_sys new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/js-sys-20ed683147fa37f6/dep-lib-js_sys differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/js-sys-20ed683147fa37f6/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/js-sys-20ed683147fa37f6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/js-sys-20ed683147fa37f6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/js-sys-20ed683147fa37f6/lib-js_sys b/examples/leptos_axum/target/debug/.fingerprint/js-sys-20ed683147fa37f6/lib-js_sys new file mode 100644 index 0000000..c9248a5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/js-sys-20ed683147fa37f6/lib-js_sys @@ -0,0 +1 @@ +bacd6252f8683d77 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/js-sys-20ed683147fa37f6/lib-js_sys.json b/examples/leptos_axum/target/debug/.fingerprint/js-sys-20ed683147fa37f6/lib-js_sys.json new file mode 100644 index 0000000..8a449a2 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/js-sys-20ed683147fa37f6/lib-js_sys.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\", \"unsafe-eval\"]","declared_features":"[\"default\", \"std\", \"unsafe-eval\"]","target":4913466754190795764,"profile":15052485574412368234,"path":3468158710389842656,"deps":[[5098792620852445434,"wasm_bindgen",false,6650567199088231542],[5855319743879205494,"once_cell",false,7971582083134256037]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/js-sys-20ed683147fa37f6/dep-lib-js_sys","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/konst-36d38e80de94563b/dep-lib-konst b/examples/leptos_axum/target/debug/.fingerprint/konst-36d38e80de94563b/dep-lib-konst new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/konst-36d38e80de94563b/dep-lib-konst differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/konst-36d38e80de94563b/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/konst-36d38e80de94563b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/konst-36d38e80de94563b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/konst-36d38e80de94563b/lib-konst b/examples/leptos_axum/target/debug/.fingerprint/konst-36d38e80de94563b/lib-konst new file mode 100644 index 0000000..b957e05 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/konst-36d38e80de94563b/lib-konst @@ -0,0 +1 @@ +bc5207a3f0de61fb \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/konst-36d38e80de94563b/lib-konst.json b/examples/leptos_axum/target/debug/.fingerprint/konst-36d38e80de94563b/lib-konst.json new file mode 100644 index 0000000..e915a03 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/konst-36d38e80de94563b/lib-konst.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"rust_1_51\", \"rust_1_55\", \"rust_1_56\", \"rust_1_57\", \"rust_1_61\", \"rust_1_64\"]","declared_features":"[\"__test\", \"__ui\", \"alloc\", \"cmp\", \"const_generics\", \"constant_time_slice\", \"default\", \"deref_raw_in_fn\", \"docsrs\", \"konst_proc_macros\", \"mut_refs\", \"nightly_mut_refs\", \"parsing\", \"parsing_no_proc\", \"rust_1_51\", \"rust_1_55\", \"rust_1_56\", \"rust_1_57\", \"rust_1_61\", \"rust_1_64\", \"rust_latest_stable\", \"trybuild\"]","target":11759568991385181057,"profile":2225463790103693989,"path":2636258974153690988,"deps":[[4075183208982912400,"konst_macro_rules",false,15497678616808446106]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/konst-36d38e80de94563b/dep-lib-konst","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/konst-53c62a561c35e672/dep-lib-konst b/examples/leptos_axum/target/debug/.fingerprint/konst-53c62a561c35e672/dep-lib-konst new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/konst-53c62a561c35e672/dep-lib-konst differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/konst-53c62a561c35e672/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/konst-53c62a561c35e672/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/konst-53c62a561c35e672/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/konst-53c62a561c35e672/lib-konst b/examples/leptos_axum/target/debug/.fingerprint/konst-53c62a561c35e672/lib-konst new file mode 100644 index 0000000..4e3f8f9 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/konst-53c62a561c35e672/lib-konst @@ -0,0 +1 @@ +fc1f21c1389138f9 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/konst-53c62a561c35e672/lib-konst.json b/examples/leptos_axum/target/debug/.fingerprint/konst-53c62a561c35e672/lib-konst.json new file mode 100644 index 0000000..56579cb --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/konst-53c62a561c35e672/lib-konst.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"rust_1_51\", \"rust_1_55\", \"rust_1_56\", \"rust_1_57\", \"rust_1_61\", \"rust_1_64\"]","declared_features":"[\"__test\", \"__ui\", \"alloc\", \"cmp\", \"const_generics\", \"constant_time_slice\", \"default\", \"deref_raw_in_fn\", \"docsrs\", \"konst_proc_macros\", \"mut_refs\", \"nightly_mut_refs\", \"parsing\", \"parsing_no_proc\", \"rust_1_51\", \"rust_1_55\", \"rust_1_56\", \"rust_1_57\", \"rust_1_61\", \"rust_1_64\", \"rust_latest_stable\", \"trybuild\"]","target":11759568991385181057,"profile":2241668132362809309,"path":2636258974153690988,"deps":[[4075183208982912400,"konst_macro_rules",false,17766598502121399140]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/konst-53c62a561c35e672/dep-lib-konst","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-1cd1831f9dad901a/dep-lib-konst_macro_rules b/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-1cd1831f9dad901a/dep-lib-konst_macro_rules new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-1cd1831f9dad901a/dep-lib-konst_macro_rules differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-1cd1831f9dad901a/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-1cd1831f9dad901a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-1cd1831f9dad901a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-1cd1831f9dad901a/lib-konst_macro_rules b/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-1cd1831f9dad901a/lib-konst_macro_rules new file mode 100644 index 0000000..2364d34 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-1cd1831f9dad901a/lib-konst_macro_rules @@ -0,0 +1 @@ +9ad8087e97d012d7 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-1cd1831f9dad901a/lib-konst_macro_rules.json b/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-1cd1831f9dad901a/lib-konst_macro_rules.json new file mode 100644 index 0000000..5aa20ce --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-1cd1831f9dad901a/lib-konst_macro_rules.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"rust_1_51\", \"rust_1_55\", \"rust_1_56\", \"rust_1_57\", \"rust_1_61\"]","declared_features":"[\"deref_raw_in_fn\", \"mut_refs\", \"nightly_mut_refs\", \"rust_1_51\", \"rust_1_55\", \"rust_1_56\", \"rust_1_57\", \"rust_1_61\"]","target":18151127814728596348,"profile":2225463790103693989,"path":7874064247722865202,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/konst_macro_rules-1cd1831f9dad901a/dep-lib-konst_macro_rules","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-e04dc1e800ae5688/dep-lib-konst_macro_rules b/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-e04dc1e800ae5688/dep-lib-konst_macro_rules new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-e04dc1e800ae5688/dep-lib-konst_macro_rules differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-e04dc1e800ae5688/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-e04dc1e800ae5688/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-e04dc1e800ae5688/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-e04dc1e800ae5688/lib-konst_macro_rules b/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-e04dc1e800ae5688/lib-konst_macro_rules new file mode 100644 index 0000000..abdca2e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-e04dc1e800ae5688/lib-konst_macro_rules @@ -0,0 +1 @@ +64e3eec934a38ff6 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-e04dc1e800ae5688/lib-konst_macro_rules.json b/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-e04dc1e800ae5688/lib-konst_macro_rules.json new file mode 100644 index 0000000..46be422 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/konst_macro_rules-e04dc1e800ae5688/lib-konst_macro_rules.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"rust_1_51\", \"rust_1_55\", \"rust_1_56\", \"rust_1_57\", \"rust_1_61\"]","declared_features":"[\"deref_raw_in_fn\", \"mut_refs\", \"nightly_mut_refs\", \"rust_1_51\", \"rust_1_55\", \"rust_1_56\", \"rust_1_57\", \"rust_1_61\"]","target":18151127814728596348,"profile":2241668132362809309,"path":7874064247722865202,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/konst_macro_rules-e04dc1e800ae5688/dep-lib-konst_macro_rules","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos-5d198d707864487d/dep-lib-leptos b/examples/leptos_axum/target/debug/.fingerprint/leptos-5d198d707864487d/dep-lib-leptos new file mode 100644 index 0000000..ee49cfe Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/leptos-5d198d707864487d/dep-lib-leptos differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos-5d198d707864487d/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/leptos-5d198d707864487d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos-5d198d707864487d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos-5d198d707864487d/lib-leptos b/examples/leptos_axum/target/debug/.fingerprint/leptos-5d198d707864487d/lib-leptos new file mode 100644 index 0000000..c44821d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos-5d198d707864487d/lib-leptos @@ -0,0 +1 @@ +e2efa32e25e9d2c0 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos-5d198d707864487d/lib-leptos.json b/examples/leptos_axum/target/debug/.fingerprint/leptos-5d198d707864487d/lib-leptos.json new file mode 100644 index 0000000..b1c68cb --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos-5d198d707864487d/lib-leptos.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"base64\", \"bitcode\", \"bitcode-serde\", \"cbor\", \"csr\", \"default-tls\", \"delegation\", \"hydrate\", \"hydration\", \"islands\", \"islands-router\", \"leptos-spin-macro\", \"msgpack\", \"multipart\", \"nightly\", \"nonce\", \"postcard\", \"rand\", \"rkyv\", \"rustls\", \"serde-lite\", \"spin\", \"ssr\", \"subsecond\", \"trace-component-props\", \"tracing\"]","target":974131996935930491,"profile":17312219244721549137,"path":8726434648492720787,"deps":[[307773296169197729,"serde_qs",false,2228291882265771715],[629160560467727653,"typed_builder_macro",false,7976853137764500072],[1355200188646979141,"build_script_build",false,1400268271279976214],[2693190314680930293,"throw_error",false,5073458601212145196],[3146308150807269233,"or_poisoned",false,12685221538892035093],[4390555356910896043,"hydration_context",false,12204534828574710988],[4606430129565412780,"slotmap",false,5885062458607649051],[5098792620852445434,"wasm_bindgen",false,6650567199088231542],[5330460842384404171,"serde_json",false,2434650379303972315],[5793233592449580592,"rustc_hash",false,1679344276918458792],[6557439603276904804,"serde",false,660198786115094860],[6624467379224148030,"either_of",false,2133475634850859494],[6692650170110433251,"futures",false,8883793258988323716],[6750297597270607254,"leptos_macro",false,13536993197115454328],[7667230146095136825,"cfg_if",false,1090425733875617541],[8485763786069017691,"send_wrapper",false,10504974413404477566],[10309078293267942089,"any_spawner",false,18143628362506544039],[10763386977331689062,"leptos_dom",false,12253861743366717474],[11742730876020405241,"thiserror",false,13956677985622615357],[11920567395562436845,"oco_ref",false,13512699298143461111],[12271223387548352730,"leptos_config",false,13617402562612603268],[13060294044903089844,"tachys",false,11356670495956172950],[13815767637284092715,"leptos_server",false,15698654956516396664],[14150371852535367471,"reactive_graph",false,10078696563620927236],[16274515490523633938,"leptos_hot_reload",false,10670605037095120784],[16701329523062989671,"wasm_split_helpers",false,2638513948544203173],[16773483497834534941,"wasm_bindgen_futures",false,4356650302939630260],[17001154585428963880,"web_sys",false,15020542606979008053],[17605717126308396068,"paste",false,7624392697941303859],[17933273744539915563,"typed_builder",false,10053125935942839978],[18264618153608266588,"server_fn",false,541347128549439978]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/leptos-5d198d707864487d/dep-lib-leptos","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos-79d43df65fd17784/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/leptos-79d43df65fd17784/run-build-script-build-script-build new file mode 100644 index 0000000..33813fd --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos-79d43df65fd17784/run-build-script-build-script-build @@ -0,0 +1 @@ +16afe4e392c06e13 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos-79d43df65fd17784/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/leptos-79d43df65fd17784/run-build-script-build-script-build.json new file mode 100644 index 0000000..f1061e0 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos-79d43df65fd17784/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[1355200188646979141,"build_script_build",false,10879697898615686704]],"local":[{"Precalculated":"0.8.20"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos-f61e3c5e22b91683/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/leptos-f61e3c5e22b91683/build-script-build-script-build new file mode 100644 index 0000000..a310974 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos-f61e3c5e22b91683/build-script-build-script-build @@ -0,0 +1 @@ +30468d7e9873fc96 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos-f61e3c5e22b91683/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/leptos-f61e3c5e22b91683/build-script-build-script-build.json new file mode 100644 index 0000000..b9bfe04 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos-f61e3c5e22b91683/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"base64\", \"bitcode\", \"bitcode-serde\", \"cbor\", \"csr\", \"default-tls\", \"delegation\", \"hydrate\", \"hydration\", \"islands\", \"islands-router\", \"leptos-spin-macro\", \"msgpack\", \"multipart\", \"nightly\", \"nonce\", \"postcard\", \"rand\", \"rkyv\", \"rustls\", \"serde-lite\", \"spin\", \"ssr\", \"subsecond\", \"trace-component-props\", \"tracing\"]","target":5408242616063297496,"profile":7343342488574744331,"path":16657405709790888882,"deps":[[8576480473721236041,"rustc_version",false,8412824128398680801]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/leptos-f61e3c5e22b91683/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos-f61e3c5e22b91683/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/leptos-f61e3c5e22b91683/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/leptos-f61e3c5e22b91683/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos-f61e3c5e22b91683/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/leptos-f61e3c5e22b91683/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos-f61e3c5e22b91683/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-73ea73b170728f0c/dep-lib-leptos_axum_chat b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-73ea73b170728f0c/dep-lib-leptos_axum_chat new file mode 100644 index 0000000..eb45b8c Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-73ea73b170728f0c/dep-lib-leptos_axum_chat differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-73ea73b170728f0c/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-73ea73b170728f0c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-73ea73b170728f0c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-73ea73b170728f0c/lib-leptos_axum_chat b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-73ea73b170728f0c/lib-leptos_axum_chat new file mode 100644 index 0000000..c451b80 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-73ea73b170728f0c/lib-leptos_axum_chat @@ -0,0 +1 @@ +149d02ace012fadf \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-73ea73b170728f0c/lib-leptos_axum_chat.json b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-73ea73b170728f0c/lib-leptos_axum_chat.json new file mode 100644 index 0000000..0799f42 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-73ea73b170728f0c/lib-leptos_axum_chat.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"hydrate\", \"ssr\"]","target":550924573193773075,"profile":17672942494452627365,"path":10763286916239946207,"deps":[[640844532387897103,"pulldown_cmark",false,18012242576221625268],[1355200188646979141,"leptos",false,13894424146296958946],[1490629274602826928,"leptos_router",false,13544959912935341769],[2804187527866942734,"leptos_meta",false,8222204120857716212],[5330460842384404171,"serde_json",false,2434650379303972315],[6557439603276904804,"serde",false,660198786115094860],[6916836217856212698,"console_error_panic_hook",false,7786530334293396601]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/leptos_axum_chat-73ea73b170728f0c/dep-lib-leptos_axum_chat","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-9372dca07d546c6c/bin-leptos_axum_chat b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-9372dca07d546c6c/bin-leptos_axum_chat new file mode 100644 index 0000000..53ca899 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-9372dca07d546c6c/bin-leptos_axum_chat @@ -0,0 +1 @@ +6c99686ab4e249a2 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-9372dca07d546c6c/bin-leptos_axum_chat.json b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-9372dca07d546c6c/bin-leptos_axum_chat.json new file mode 100644 index 0000000..7181be8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-9372dca07d546c6c/bin-leptos_axum_chat.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"hydrate\", \"ssr\"]","target":849905537465195161,"profile":17672942494452627365,"path":4942398508502643691,"deps":[[640844532387897103,"pulldown_cmark",false,18012242576221625268],[1355200188646979141,"leptos",false,13894424146296958946],[1490629274602826928,"leptos_router",false,13544959912935341769],[2804187527866942734,"leptos_meta",false,8222204120857716212],[5330460842384404171,"serde_json",false,2434650379303972315],[6557439603276904804,"serde",false,660198786115094860],[6916836217856212698,"console_error_panic_hook",false,7786530334293396601],[15895023308766064165,"leptos_axum_chat",false,16139232970803420436]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/leptos_axum_chat-9372dca07d546c6c/dep-bin-leptos_axum_chat","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-9372dca07d546c6c/dep-bin-leptos_axum_chat b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-9372dca07d546c6c/dep-bin-leptos_axum_chat new file mode 100644 index 0000000..5c54f74 Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-9372dca07d546c6c/dep-bin-leptos_axum_chat differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-9372dca07d546c6c/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-9372dca07d546c6c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-9372dca07d546c6c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-b106a71cd6154af5/dep-test-lib-leptos_axum_chat b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-b106a71cd6154af5/dep-test-lib-leptos_axum_chat new file mode 100644 index 0000000..adb17c4 Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-b106a71cd6154af5/dep-test-lib-leptos_axum_chat differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-b106a71cd6154af5/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-b106a71cd6154af5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-b106a71cd6154af5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-b106a71cd6154af5/test-lib-leptos_axum_chat b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-b106a71cd6154af5/test-lib-leptos_axum_chat new file mode 100644 index 0000000..bcaf3ce --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-b106a71cd6154af5/test-lib-leptos_axum_chat @@ -0,0 +1 @@ +60c1365151667c64 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-b106a71cd6154af5/test-lib-leptos_axum_chat.json b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-b106a71cd6154af5/test-lib-leptos_axum_chat.json new file mode 100644 index 0000000..33898f9 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-b106a71cd6154af5/test-lib-leptos_axum_chat.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"hydrate\", \"ssr\"]","target":550924573193773075,"profile":3316208278650011218,"path":10763286916239946207,"deps":[[640844532387897103,"pulldown_cmark",false,18012242576221625268],[1355200188646979141,"leptos",false,13894424146296958946],[1490629274602826928,"leptos_router",false,13544959912935341769],[2804187527866942734,"leptos_meta",false,8222204120857716212],[5330460842384404171,"serde_json",false,2434650379303972315],[6557439603276904804,"serde",false,660198786115094860],[6916836217856212698,"console_error_panic_hook",false,7786530334293396601]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/leptos_axum_chat-b106a71cd6154af5/dep-test-lib-leptos_axum_chat","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-f9fb4f11c0d936a2/dep-test-bin-leptos_axum_chat b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-f9fb4f11c0d936a2/dep-test-bin-leptos_axum_chat new file mode 100644 index 0000000..5c54f74 Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-f9fb4f11c0d936a2/dep-test-bin-leptos_axum_chat differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-f9fb4f11c0d936a2/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-f9fb4f11c0d936a2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-f9fb4f11c0d936a2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-f9fb4f11c0d936a2/test-bin-leptos_axum_chat b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-f9fb4f11c0d936a2/test-bin-leptos_axum_chat new file mode 100644 index 0000000..a79b674 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-f9fb4f11c0d936a2/test-bin-leptos_axum_chat @@ -0,0 +1 @@ +f657ec099e125438 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-f9fb4f11c0d936a2/test-bin-leptos_axum_chat.json b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-f9fb4f11c0d936a2/test-bin-leptos_axum_chat.json new file mode 100644 index 0000000..ba95800 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_axum_chat-f9fb4f11c0d936a2/test-bin-leptos_axum_chat.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"hydrate\", \"ssr\"]","target":849905537465195161,"profile":3316208278650011218,"path":4942398508502643691,"deps":[[640844532387897103,"pulldown_cmark",false,18012242576221625268],[1355200188646979141,"leptos",false,13894424146296958946],[1490629274602826928,"leptos_router",false,13544959912935341769],[2804187527866942734,"leptos_meta",false,8222204120857716212],[5330460842384404171,"serde_json",false,2434650379303972315],[6557439603276904804,"serde",false,660198786115094860],[6916836217856212698,"console_error_panic_hook",false,7786530334293396601],[15895023308766064165,"leptos_axum_chat",false,16139232970803420436]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/leptos_axum_chat-f9fb4f11c0d936a2/dep-test-bin-leptos_axum_chat","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_config-4ef11b2b988535be/dep-lib-leptos_config b/examples/leptos_axum/target/debug/.fingerprint/leptos_config-4ef11b2b988535be/dep-lib-leptos_config new file mode 100644 index 0000000..569faac Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/leptos_config-4ef11b2b988535be/dep-lib-leptos_config differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_config-4ef11b2b988535be/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/leptos_config-4ef11b2b988535be/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_config-4ef11b2b988535be/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_config-4ef11b2b988535be/lib-leptos_config b/examples/leptos_axum/target/debug/.fingerprint/leptos_config-4ef11b2b988535be/lib-leptos_config new file mode 100644 index 0000000..87cf8ae --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_config-4ef11b2b988535be/lib-leptos_config @@ -0,0 +1 @@ +84a9048c7bbbfabc \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_config-4ef11b2b988535be/lib-leptos_config.json b/examples/leptos_axum/target/debug/.fingerprint/leptos_config-4ef11b2b988535be/lib-leptos_config.json new file mode 100644 index 0000000..569e1c1 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_config-4ef11b2b988535be/lib-leptos_config.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":7569986482785935948,"profile":1569615065688704865,"path":10766470708833610599,"deps":[[310359321821557790,"regex",false,6804611832448678017],[6557439603276904804,"serde",false,660198786115094860],[9698586013973629214,"config",false,9607644174345465206],[11742730876020405241,"thiserror",false,13956677985622615357],[17933273744539915563,"typed_builder",false,10053125935942839978]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/leptos_config-4ef11b2b988535be/dep-lib-leptos_config","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_dom-016040fd8e1175b7/dep-lib-leptos_dom b/examples/leptos_axum/target/debug/.fingerprint/leptos_dom-016040fd8e1175b7/dep-lib-leptos_dom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/leptos_dom-016040fd8e1175b7/dep-lib-leptos_dom differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_dom-016040fd8e1175b7/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/leptos_dom-016040fd8e1175b7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_dom-016040fd8e1175b7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_dom-016040fd8e1175b7/lib-leptos_dom b/examples/leptos_axum/target/debug/.fingerprint/leptos_dom-016040fd8e1175b7/lib-leptos_dom new file mode 100644 index 0000000..cea98c9 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_dom-016040fd8e1175b7/lib-leptos_dom @@ -0,0 +1 @@ +22401ff454760eaa \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_dom-016040fd8e1175b7/lib-leptos_dom.json b/examples/leptos_axum/target/debug/.fingerprint/leptos_dom-016040fd8e1175b7/lib-leptos_dom.json new file mode 100644 index 0000000..8721de9 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_dom-016040fd8e1175b7/lib-leptos_dom.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\"]","declared_features":"[\"default\", \"hydration\", \"trace-component-props\", \"tracing\"]","target":2775883152463092489,"profile":1569615065688704865,"path":13975724215616246873,"deps":[[3146308150807269233,"or_poisoned",false,12685221538892035093],[5098792620852445434,"wasm_bindgen",false,6650567199088231542],[8485763786069017691,"send_wrapper",false,10504974413404477566],[13060294044903089844,"tachys",false,11356670495956172950],[14150371852535367471,"reactive_graph",false,10078696563620927236],[17001154585428963880,"web_sys",false,15020542606979008053],[17679330592366598538,"js_sys",false,8592139079836159418]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/leptos_dom-016040fd8e1175b7/dep-lib-leptos_dom","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-2bde52d46b1280a7/dep-lib-leptos_hot_reload b/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-2bde52d46b1280a7/dep-lib-leptos_hot_reload new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-2bde52d46b1280a7/dep-lib-leptos_hot_reload differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-2bde52d46b1280a7/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-2bde52d46b1280a7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-2bde52d46b1280a7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-2bde52d46b1280a7/lib-leptos_hot_reload b/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-2bde52d46b1280a7/lib-leptos_hot_reload new file mode 100644 index 0000000..ec81078 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-2bde52d46b1280a7/lib-leptos_hot_reload @@ -0,0 +1 @@ +906f8cf6be9a1594 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-2bde52d46b1280a7/lib-leptos_hot_reload.json b/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-2bde52d46b1280a7/lib-leptos_hot_reload.json new file mode 100644 index 0000000..22eb0af --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-2bde52d46b1280a7/lib-leptos_hot_reload.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":5922519117629338050,"profile":2241668132362809309,"path":1209361143819992427,"deps":[[3146308150807269233,"or_poisoned",false,12685221538892035093],[6557439603276904804,"serde",false,660198786115094860],[8826707145280285270,"indexmap",false,10525225707791215002],[8949245912927223590,"quote",false,17645419880070595363],[10190449710562616856,"syn",false,6637575174125347235],[10364619138950789809,"anyhow",false,6157661727871855300],[13427826853677852578,"rstml",false,8960662815431004758],[15622660310229662834,"walkdir",false,16906490320038572189],[16346726298725429545,"proc_macro2",false,7987514604498767349],[16363191550422148033,"camino",false,14650822840565783826]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/leptos_hot_reload-2bde52d46b1280a7/dep-lib-leptos_hot_reload","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-c80cb73391fbf586/dep-lib-leptos_hot_reload b/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-c80cb73391fbf586/dep-lib-leptos_hot_reload new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-c80cb73391fbf586/dep-lib-leptos_hot_reload differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-c80cb73391fbf586/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-c80cb73391fbf586/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-c80cb73391fbf586/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-c80cb73391fbf586/lib-leptos_hot_reload b/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-c80cb73391fbf586/lib-leptos_hot_reload new file mode 100644 index 0000000..1a4f2ae --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-c80cb73391fbf586/lib-leptos_hot_reload @@ -0,0 +1 @@ +7051369900a21396 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-c80cb73391fbf586/lib-leptos_hot_reload.json b/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-c80cb73391fbf586/lib-leptos_hot_reload.json new file mode 100644 index 0000000..fa1406a --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_hot_reload-c80cb73391fbf586/lib-leptos_hot_reload.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":5922519117629338050,"profile":2225463790103693989,"path":1209361143819992427,"deps":[[3146308150807269233,"or_poisoned",false,4713267383598564334],[6557439603276904804,"serde",false,3032276129811727937],[8826707145280285270,"indexmap",false,18386857761226355197],[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[10364619138950789809,"anyhow",false,162694126793970116],[13427826853677852578,"rstml",false,17641138432259551594],[15622660310229662834,"walkdir",false,9054884579454965333],[16346726298725429545,"proc_macro2",false,3721553344835398169],[16363191550422148033,"camino",false,15112353690537322426]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/leptos_hot_reload-c80cb73391fbf586/dep-lib-leptos_hot_reload","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-006d8d79dc7aab34/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-006d8d79dc7aab34/run-build-script-build-script-build new file mode 100644 index 0000000..26709f9 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-006d8d79dc7aab34/run-build-script-build-script-build @@ -0,0 +1 @@ +c49a893fe99a19e3 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-006d8d79dc7aab34/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-006d8d79dc7aab34/run-build-script-build-script-build.json new file mode 100644 index 0000000..ccfeef2 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-006d8d79dc7aab34/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6750297597270607254,"build_script_build",false,10400112310886160606],[9423015880379144908,"build_script_build",false,7974689806849674773]],"local":[{"Precalculated":"0.8.17"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-4cc6e29f4cbfe6d0/dep-lib-leptos_macro b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-4cc6e29f4cbfe6d0/dep-lib-leptos_macro new file mode 100644 index 0000000..265142b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-4cc6e29f4cbfe6d0/dep-lib-leptos_macro differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-4cc6e29f4cbfe6d0/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-4cc6e29f4cbfe6d0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-4cc6e29f4cbfe6d0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-4cc6e29f4cbfe6d0/lib-leptos_macro b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-4cc6e29f4cbfe6d0/lib-leptos_macro new file mode 100644 index 0000000..2457e8a --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-4cc6e29f4cbfe6d0/lib-leptos_macro @@ -0,0 +1 @@ +7833f238970fddbb \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-4cc6e29f4cbfe6d0/lib-leptos_macro.json b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-4cc6e29f4cbfe6d0/lib-leptos_macro.json new file mode 100644 index 0000000..9f2aeef --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-4cc6e29f4cbfe6d0/lib-leptos_macro.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"__internal_erase_components\", \"actix\", \"axum\", \"csr\", \"generic\", \"hydrate\", \"islands\", \"nightly\", \"ssr\", \"trace-component-props\", \"trace-components\", \"tracing\"]","target":12549337908783728484,"profile":18049487071027133023,"path":7866642016227464847,"deps":[[6063703837838451237,"attribute_derive",false,1511987507614615781],[6750297597270607254,"build_script_build",false,16364281047611448004],[6811835196269279972,"server_fn_macro",false,11946932927395898279],[7586572823156117196,"uuid",false,14177831411801492632],[7667230146095136825,"cfg_if",false,1891375480105173425],[8949245912927223590,"quote",false,14896968245106632325],[9423015880379144908,"prettyplease",false,5472946803512951230],[10190449710562616856,"syn",false,6080269753824482509],[10816375607985991808,"convert_case_extras",false,1954614799093528164],[13427826853677852578,"rstml",false,17641138432259551594],[15009384451223777386,"html_escape",false,9854914785847980556],[15755541468655779741,"proc_macro_error2",false,18009236423862792710],[16274515490523633938,"leptos_hot_reload",false,10814165253700866416],[16326338539882746041,"itertools",false,13772684674820264104],[16346726298725429545,"proc_macro2",false,3721553344835398169],[17865014727662549706,"convert_case",false,10278804124439765272]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/leptos_macro-4cc6e29f4cbfe6d0/dep-lib-leptos_macro","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-bc117aefcaa3b957/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-bc117aefcaa3b957/build-script-build-script-build new file mode 100644 index 0000000..48659a7 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-bc117aefcaa3b957/build-script-build-script-build @@ -0,0 +1 @@ +de58896a0b9f5490 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-bc117aefcaa3b957/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-bc117aefcaa3b957/build-script-build-script-build.json new file mode 100644 index 0000000..963d1a7 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-bc117aefcaa3b957/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"__internal_erase_components\", \"actix\", \"axum\", \"csr\", \"generic\", \"hydrate\", \"islands\", \"nightly\", \"ssr\", \"trace-component-props\", \"trace-components\", \"tracing\"]","target":5408242616063297496,"profile":18049487071027133023,"path":15004990043107350130,"deps":[[8576480473721236041,"rustc_version",false,8412824128398680801]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/leptos_macro-bc117aefcaa3b957/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-bc117aefcaa3b957/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-bc117aefcaa3b957/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-bc117aefcaa3b957/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-bc117aefcaa3b957/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-bc117aefcaa3b957/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_macro-bc117aefcaa3b957/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_meta-20e8073da55bf818/dep-lib-leptos_meta b/examples/leptos_axum/target/debug/.fingerprint/leptos_meta-20e8073da55bf818/dep-lib-leptos_meta new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/leptos_meta-20e8073da55bf818/dep-lib-leptos_meta differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_meta-20e8073da55bf818/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/leptos_meta-20e8073da55bf818/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_meta-20e8073da55bf818/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_meta-20e8073da55bf818/lib-leptos_meta b/examples/leptos_axum/target/debug/.fingerprint/leptos_meta-20e8073da55bf818/lib-leptos_meta new file mode 100644 index 0000000..ba8ac83 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_meta-20e8073da55bf818/lib-leptos_meta @@ -0,0 +1 @@ +f4257ab615231b72 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_meta-20e8073da55bf818/lib-leptos_meta.json b/examples/leptos_axum/target/debug/.fingerprint/leptos_meta-20e8073da55bf818/lib-leptos_meta.json new file mode 100644 index 0000000..d3cefa0 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_meta-20e8073da55bf818/lib-leptos_meta.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\"]","declared_features":"[\"default\", \"nonce\", \"ssr\", \"tracing\"]","target":2916138601192455063,"profile":1569615065688704865,"path":1907864787055757612,"deps":[[1355200188646979141,"leptos",false,13894424146296958946],[3146308150807269233,"or_poisoned",false,12685221538892035093],[5098792620852445434,"wasm_bindgen",false,6650567199088231542],[6692650170110433251,"futures",false,8883793258988323716],[8485763786069017691,"send_wrapper",false,10504974413404477566],[8826707145280285270,"indexmap",false,10525225707791215002],[17001154585428963880,"web_sys",false,15020542606979008053]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/leptos_meta-20e8073da55bf818/dep-lib-leptos_meta","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_router-1b42a9c9350ab3c2/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-1b42a9c9350ab3c2/build-script-build-script-build new file mode 100644 index 0000000..6dcfad8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-1b42a9c9350ab3c2/build-script-build-script-build @@ -0,0 +1 @@ +8791749379e3abe7 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_router-1b42a9c9350ab3c2/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-1b42a9c9350ab3c2/build-script-build-script-build.json new file mode 100644 index 0000000..e682779 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-1b42a9c9350ab3c2/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"nightly\", \"ssr\", \"tracing\"]","target":5408242616063297496,"profile":5100048866775254789,"path":3211852885207685396,"deps":[[8576480473721236041,"rustc_version",false,8412824128398680801]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/leptos_router-1b42a9c9350ab3c2/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_router-1b42a9c9350ab3c2/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-1b42a9c9350ab3c2/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-1b42a9c9350ab3c2/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_router-1b42a9c9350ab3c2/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-1b42a9c9350ab3c2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-1b42a9c9350ab3c2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_router-33c7618d09e94916/dep-lib-leptos_router b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-33c7618d09e94916/dep-lib-leptos_router new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-33c7618d09e94916/dep-lib-leptos_router differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_router-33c7618d09e94916/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-33c7618d09e94916/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-33c7618d09e94916/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_router-33c7618d09e94916/lib-leptos_router b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-33c7618d09e94916/lib-leptos_router new file mode 100644 index 0000000..3f8a687 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-33c7618d09e94916/lib-leptos_router @@ -0,0 +1 @@ +c9be6acb465df9bb \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_router-33c7618d09e94916/lib-leptos_router.json b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-33c7618d09e94916/lib-leptos_router.json new file mode 100644 index 0000000..ed8b8ec --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-33c7618d09e94916/lib-leptos_router.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"nightly\", \"ssr\", \"tracing\"]","target":1540691908399907605,"profile":18289833810726035168,"path":10714522215476328829,"deps":[[1355200188646979141,"leptos",false,13894424146296958946],[1490629274602826928,"build_script_build",false,7596083690985467982],[1528297757488249563,"url",false,10978026625688137635],[3146308150807269233,"or_poisoned",false,12685221538892035093],[5098792620852445434,"wasm_bindgen",false,6650567199088231542],[6624467379224148030,"either_of",false,2133475634850859494],[6692650170110433251,"futures",false,8883793258988323716],[8485763786069017691,"send_wrapper",false,10504974413404477566],[10205035873510305247,"leptos_router_macro",false,5674572751803964292],[10309078293267942089,"any_spawner",false,18143628362506544039],[11742730876020405241,"thiserror",false,13956677985622615357],[12744280046734151787,"gloo_net",false,5991794464624345911],[13060294044903089844,"tachys",false,11356670495956172950],[14150371852535367471,"reactive_graph",false,10078696563620927236],[17001154585428963880,"web_sys",false,15020542606979008053],[17679330592366598538,"js_sys",false,8592139079836159418]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/leptos_router-33c7618d09e94916/dep-lib-leptos_router","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_router-ea02271efca7764f/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-ea02271efca7764f/run-build-script-build-script-build new file mode 100644 index 0000000..da37d44 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-ea02271efca7764f/run-build-script-build-script-build @@ -0,0 +1 @@ +4eb05305dfb56a69 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_router-ea02271efca7764f/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-ea02271efca7764f/run-build-script-build-script-build.json new file mode 100644 index 0000000..66c621a --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_router-ea02271efca7764f/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[1490629274602826928,"build_script_build",false,16693686555083313543]],"local":[{"Precalculated":"0.8.15"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_router_macro-638e3e14858e4264/dep-lib-leptos_router_macro b/examples/leptos_axum/target/debug/.fingerprint/leptos_router_macro-638e3e14858e4264/dep-lib-leptos_router_macro new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/leptos_router_macro-638e3e14858e4264/dep-lib-leptos_router_macro differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_router_macro-638e3e14858e4264/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/leptos_router_macro-638e3e14858e4264/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_router_macro-638e3e14858e4264/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_router_macro-638e3e14858e4264/lib-leptos_router_macro b/examples/leptos_axum/target/debug/.fingerprint/leptos_router_macro-638e3e14858e4264/lib-leptos_router_macro new file mode 100644 index 0000000..910a3ed --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_router_macro-638e3e14858e4264/lib-leptos_router_macro @@ -0,0 +1 @@ +84db6243da21c04e \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_router_macro-638e3e14858e4264/lib-leptos_router_macro.json b/examples/leptos_axum/target/debug/.fingerprint/leptos_router_macro-638e3e14858e4264/lib-leptos_router_macro.json new file mode 100644 index 0000000..0b495b4 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_router_macro-638e3e14858e4264/lib-leptos_router_macro.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":12589126982173208018,"profile":1222305219990185514,"path":17463335082751497985,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[15755541468655779741,"proc_macro_error2",false,18009236423862792710],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/leptos_router_macro-638e3e14858e4264/dep-lib-leptos_router_macro","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_server-416099c92f75dff8/dep-lib-leptos_server b/examples/leptos_axum/target/debug/.fingerprint/leptos_server-416099c92f75dff8/dep-lib-leptos_server new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/leptos_server-416099c92f75dff8/dep-lib-leptos_server differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_server-416099c92f75dff8/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/leptos_server-416099c92f75dff8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_server-416099c92f75dff8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_server-416099c92f75dff8/lib-leptos_server b/examples/leptos_axum/target/debug/.fingerprint/leptos_server-416099c92f75dff8/lib-leptos_server new file mode 100644 index 0000000..0ca1ea5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_server-416099c92f75dff8/lib-leptos_server @@ -0,0 +1 @@ +78ce950682d3dcd9 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/leptos_server-416099c92f75dff8/lib-leptos_server.json b/examples/leptos_axum/target/debug/.fingerprint/leptos_server-416099c92f75dff8/lib-leptos_server.json new file mode 100644 index 0000000..7796924 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/leptos_server-416099c92f75dff8/lib-leptos_server.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"tachys\"]","declared_features":"[\"hydration\", \"js-sys\", \"miniserde\", \"rkyv\", \"serde-lite\", \"serde-wasm-bindgen\", \"ssr\", \"tachys\", \"tracing\", \"wasm-bindgen\"]","target":53568255435305595,"profile":1569615065688704865,"path":15561578730593188838,"deps":[[3146308150807269233,"or_poisoned",false,12685221538892035093],[4390555356910896043,"hydration_context",false,12204534828574710988],[5330460842384404171,"serde_json",false,2434650379303972315],[6557439603276904804,"serde",false,660198786115094860],[6692650170110433251,"futures",false,8883793258988323716],[8485763786069017691,"send_wrapper",false,10504974413404477566],[10309078293267942089,"any_spawner",false,18143628362506544039],[13060294044903089844,"tachys",false,11356670495956172950],[13077212702700853852,"base64",false,1770589198343330789],[14150371852535367471,"reactive_graph",false,10078696563620927236],[16728960909977801165,"codee",false,8002087877762535497],[18264618153608266588,"server_fn",false,541347128549439978]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/leptos_server-416099c92f75dff8/dep-lib-leptos_server","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/libc-421811f1f81d68b1/dep-lib-libc b/examples/leptos_axum/target/debug/.fingerprint/libc-421811f1f81d68b1/dep-lib-libc new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/libc-421811f1f81d68b1/dep-lib-libc differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/libc-421811f1f81d68b1/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/libc-421811f1f81d68b1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/libc-421811f1f81d68b1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/libc-421811f1f81d68b1/lib-libc b/examples/leptos_axum/target/debug/.fingerprint/libc-421811f1f81d68b1/lib-libc new file mode 100644 index 0000000..f9d7b0e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/libc-421811f1f81d68b1/lib-libc @@ -0,0 +1 @@ +bfd1eae1b765999a \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/libc-421811f1f81d68b1/lib-libc.json b/examples/leptos_axum/target/debug/.fingerprint/libc-421811f1f81d68b1/lib-libc.json new file mode 100644 index 0000000..ce05d03 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/libc-421811f1f81d68b1/lib-libc.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":17682796336736096309,"profile":169238399941425392,"path":14882252788787501163,"deps":[[10504718112287328430,"build_script_build",false,2377549685067496203]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-421811f1f81d68b1/dep-lib-libc","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/libc-a0156fe49325159f/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/libc-a0156fe49325159f/run-build-script-build-script-build new file mode 100644 index 0000000..22ec0bd --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/libc-a0156fe49325159f/run-build-script-build-script-build @@ -0,0 +1 @@ +0b3b4a7ed7c0fe20 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/libc-a0156fe49325159f/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/libc-a0156fe49325159f/run-build-script-build-script-build.json new file mode 100644 index 0000000..ac89ee3 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/libc-a0156fe49325159f/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10504718112287328430,"build_script_build",false,13210863313174559838]],"local":[{"RerunIfChanged":{"output":"debug/build/libc-a0156fe49325159f/output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"LIBC_BUILD_VERBOSE","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/build-script-build-script-build new file mode 100644 index 0000000..8cdcdf1 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/build-script-build-script-build @@ -0,0 +1 @@ +5e7c026e306a56b7 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/build-script-build-script-build.json new file mode 100644 index 0000000..b0c2a02 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":5408242616063297496,"profile":169238399941425392,"path":9074226423671301960,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/libc-fdafe8ebaf5b42a4/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/libc-fdafe8ebaf5b42a4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/litemap-29b9b43b848af24e/dep-lib-litemap b/examples/leptos_axum/target/debug/.fingerprint/litemap-29b9b43b848af24e/dep-lib-litemap new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/litemap-29b9b43b848af24e/dep-lib-litemap differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/litemap-29b9b43b848af24e/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/litemap-29b9b43b848af24e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/litemap-29b9b43b848af24e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/litemap-29b9b43b848af24e/lib-litemap b/examples/leptos_axum/target/debug/.fingerprint/litemap-29b9b43b848af24e/lib-litemap new file mode 100644 index 0000000..3e63c45 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/litemap-29b9b43b848af24e/lib-litemap @@ -0,0 +1 @@ +c2dc0ffb77208344 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/litemap-29b9b43b848af24e/lib-litemap.json b/examples/leptos_axum/target/debug/.fingerprint/litemap-29b9b43b848af24e/lib-litemap.json new file mode 100644 index 0000000..ce70438 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/litemap-29b9b43b848af24e/lib-litemap.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"alloc\", \"databake\", \"default\", \"serde\", \"testing\", \"yoke\"]","target":6548088149557820361,"profile":15319846033271432293,"path":13657394272148396016,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/litemap-29b9b43b848af24e/dep-lib-litemap","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/manyhow-82e4e7f43303c1a6/dep-lib-manyhow b/examples/leptos_axum/target/debug/.fingerprint/manyhow-82e4e7f43303c1a6/dep-lib-manyhow new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/manyhow-82e4e7f43303c1a6/dep-lib-manyhow differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/manyhow-82e4e7f43303c1a6/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/manyhow-82e4e7f43303c1a6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/manyhow-82e4e7f43303c1a6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/manyhow-82e4e7f43303c1a6/lib-manyhow b/examples/leptos_axum/target/debug/.fingerprint/manyhow-82e4e7f43303c1a6/lib-manyhow new file mode 100644 index 0000000..3a9b178 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/manyhow-82e4e7f43303c1a6/lib-manyhow @@ -0,0 +1 @@ +57340ad4dffe88e5 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/manyhow-82e4e7f43303c1a6/lib-manyhow.json b/examples/leptos_axum/target/debug/.fingerprint/manyhow-82e4e7f43303c1a6/lib-manyhow.json new file mode 100644 index 0000000..f8c9625 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/manyhow-82e4e7f43303c1a6/lib-manyhow.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"macros\", \"syn\", \"syn2\"]","declared_features":"[\"darling\", \"darling_core\", \"default\", \"macros\", \"syn\", \"syn1\", \"syn2\"]","target":9335348606111591685,"profile":2225463790103693989,"path":1496111163933623523,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn2",false,6080269753824482509],[16162781356146493544,"macros",false,13031699062142841478],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/manyhow-82e4e7f43303c1a6/dep-lib-manyhow","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/manyhow-macros-5ad4455a860de2df/dep-lib-manyhow_macros b/examples/leptos_axum/target/debug/.fingerprint/manyhow-macros-5ad4455a860de2df/dep-lib-manyhow_macros new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/manyhow-macros-5ad4455a860de2df/dep-lib-manyhow_macros differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/manyhow-macros-5ad4455a860de2df/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/manyhow-macros-5ad4455a860de2df/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/manyhow-macros-5ad4455a860de2df/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/manyhow-macros-5ad4455a860de2df/lib-manyhow_macros b/examples/leptos_axum/target/debug/.fingerprint/manyhow-macros-5ad4455a860de2df/lib-manyhow_macros new file mode 100644 index 0000000..74c2ecd --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/manyhow-macros-5ad4455a860de2df/lib-manyhow_macros @@ -0,0 +1 @@ +86b2d08a40e5d9b4 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/manyhow-macros-5ad4455a860de2df/lib-manyhow_macros.json b/examples/leptos_axum/target/debug/.fingerprint/manyhow-macros-5ad4455a860de2df/lib-manyhow_macros.json new file mode 100644 index 0000000..86e7b4b --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/manyhow-macros-5ad4455a860de2df/lib-manyhow_macros.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":12805409085615061501,"profile":2225463790103693989,"path":15055210804601992766,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[9215727607793359310,"proc_macro_utils",false,13101819241900928405],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/manyhow-macros-5ad4455a860de2df/dep-lib-manyhow_macros","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/dep-lib-memchr b/examples/leptos_axum/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/dep-lib-memchr new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/dep-lib-memchr differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/lib-memchr b/examples/leptos_axum/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/lib-memchr new file mode 100644 index 0000000..7d5ac50 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/lib-memchr @@ -0,0 +1 @@ +19d38e6c2fae3a59 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/lib-memchr.json b/examples/leptos_axum/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/lib-memchr.json new file mode 100644 index 0000000..5c9cb85 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/memchr-a34ee5341fb0ce7e/lib-memchr.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"core\", \"default\", \"libc\", \"logging\", \"rustc-dep-of-std\", \"std\", \"use_std\"]","target":11745930252914242013,"profile":2241668132362809309,"path":11512394480622317980,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/memchr-a34ee5341fb0ce7e/dep-lib-memchr","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/next_tuple-f71f28dcebae7eb3/dep-lib-next_tuple b/examples/leptos_axum/target/debug/.fingerprint/next_tuple-f71f28dcebae7eb3/dep-lib-next_tuple new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/next_tuple-f71f28dcebae7eb3/dep-lib-next_tuple differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/next_tuple-f71f28dcebae7eb3/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/next_tuple-f71f28dcebae7eb3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/next_tuple-f71f28dcebae7eb3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/next_tuple-f71f28dcebae7eb3/lib-next_tuple b/examples/leptos_axum/target/debug/.fingerprint/next_tuple-f71f28dcebae7eb3/lib-next_tuple new file mode 100644 index 0000000..704bc32 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/next_tuple-f71f28dcebae7eb3/lib-next_tuple @@ -0,0 +1 @@ +1b7e870c2d71314d \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/next_tuple-f71f28dcebae7eb3/lib-next_tuple.json b/examples/leptos_axum/target/debug/.fingerprint/next_tuple-f71f28dcebae7eb3/lib-next_tuple.json new file mode 100644 index 0000000..39c8f42 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/next_tuple-f71f28dcebae7eb3/lib-next_tuple.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":6881856591873001199,"profile":2241668132362809309,"path":10594530130324985217,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/next_tuple-f71f28dcebae7eb3/dep-lib-next_tuple","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/oco_ref-80d0d41f009c456c/dep-lib-oco_ref b/examples/leptos_axum/target/debug/.fingerprint/oco_ref-80d0d41f009c456c/dep-lib-oco_ref new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/oco_ref-80d0d41f009c456c/dep-lib-oco_ref differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/oco_ref-80d0d41f009c456c/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/oco_ref-80d0d41f009c456c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/oco_ref-80d0d41f009c456c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/oco_ref-80d0d41f009c456c/lib-oco_ref b/examples/leptos_axum/target/debug/.fingerprint/oco_ref-80d0d41f009c456c/lib-oco_ref new file mode 100644 index 0000000..952a243 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/oco_ref-80d0d41f009c456c/lib-oco_ref @@ -0,0 +1 @@ +f7de82166bc086bb \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/oco_ref-80d0d41f009c456c/lib-oco_ref.json b/examples/leptos_axum/target/debug/.fingerprint/oco_ref-80d0d41f009c456c/lib-oco_ref.json new file mode 100644 index 0000000..93cab15 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/oco_ref-80d0d41f009c456c/lib-oco_ref.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":14617297485562427879,"profile":2241668132362809309,"path":4542986001647664924,"deps":[[6557439603276904804,"serde",false,660198786115094860],[11742730876020405241,"thiserror",false,13956677985622615357]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/oco_ref-80d0d41f009c456c/dep-lib-oco_ref","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/once_cell-e21d0fc8c5ea8c72/dep-lib-once_cell b/examples/leptos_axum/target/debug/.fingerprint/once_cell-e21d0fc8c5ea8c72/dep-lib-once_cell new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/once_cell-e21d0fc8c5ea8c72/dep-lib-once_cell differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/once_cell-e21d0fc8c5ea8c72/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/once_cell-e21d0fc8c5ea8c72/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/once_cell-e21d0fc8c5ea8c72/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/once_cell-e21d0fc8c5ea8c72/lib-once_cell b/examples/leptos_axum/target/debug/.fingerprint/once_cell-e21d0fc8c5ea8c72/lib-once_cell new file mode 100644 index 0000000..d0d8aae --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/once_cell-e21d0fc8c5ea8c72/lib-once_cell @@ -0,0 +1 @@ +a5f3155babbfa06e \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/once_cell-e21d0fc8c5ea8c72/lib-once_cell.json b/examples/leptos_axum/target/debug/.fingerprint/once_cell-e21d0fc8c5ea8c72/lib-once_cell.json new file mode 100644 index 0000000..92ca114 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/once_cell-e21d0fc8c5ea8c72/lib-once_cell.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"alloc\", \"atomic-polyfill\", \"critical-section\", \"default\", \"parking_lot\", \"portable-atomic\", \"race\", \"std\", \"unstable\"]","target":17524666916136250164,"profile":2241668132362809309,"path":775117667730570460,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/once_cell-e21d0fc8c5ea8c72/dep-lib-once_cell","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-59a0b95671bc341c/dep-lib-or_poisoned b/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-59a0b95671bc341c/dep-lib-or_poisoned new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-59a0b95671bc341c/dep-lib-or_poisoned differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-59a0b95671bc341c/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-59a0b95671bc341c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-59a0b95671bc341c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-59a0b95671bc341c/lib-or_poisoned b/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-59a0b95671bc341c/lib-or_poisoned new file mode 100644 index 0000000..4342ab9 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-59a0b95671bc341c/lib-or_poisoned @@ -0,0 +1 @@ +1534cbcac7f50ab0 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-59a0b95671bc341c/lib-or_poisoned.json b/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-59a0b95671bc341c/lib-or_poisoned.json new file mode 100644 index 0000000..7d44461 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-59a0b95671bc341c/lib-or_poisoned.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":869219545762787286,"profile":2241668132362809309,"path":2731103492880425156,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/or_poisoned-59a0b95671bc341c/dep-lib-or_poisoned","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-aa8498de2e6ec10a/dep-lib-or_poisoned b/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-aa8498de2e6ec10a/dep-lib-or_poisoned new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-aa8498de2e6ec10a/dep-lib-or_poisoned differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-aa8498de2e6ec10a/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-aa8498de2e6ec10a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-aa8498de2e6ec10a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-aa8498de2e6ec10a/lib-or_poisoned b/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-aa8498de2e6ec10a/lib-or_poisoned new file mode 100644 index 0000000..34281ca --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-aa8498de2e6ec10a/lib-or_poisoned @@ -0,0 +1 @@ +eec3d3a2b6e36841 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-aa8498de2e6ec10a/lib-or_poisoned.json b/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-aa8498de2e6ec10a/lib-or_poisoned.json new file mode 100644 index 0000000..e5bb1ac --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/or_poisoned-aa8498de2e6ec10a/lib-or_poisoned.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":869219545762787286,"profile":2225463790103693989,"path":2731103492880425156,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/or_poisoned-aa8498de2e6ec10a/dep-lib-or_poisoned","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/parking-a40adc58bb78b1ed/dep-lib-parking b/examples/leptos_axum/target/debug/.fingerprint/parking-a40adc58bb78b1ed/dep-lib-parking new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/parking-a40adc58bb78b1ed/dep-lib-parking differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/parking-a40adc58bb78b1ed/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/parking-a40adc58bb78b1ed/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/parking-a40adc58bb78b1ed/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/parking-a40adc58bb78b1ed/lib-parking b/examples/leptos_axum/target/debug/.fingerprint/parking-a40adc58bb78b1ed/lib-parking new file mode 100644 index 0000000..ce22af5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/parking-a40adc58bb78b1ed/lib-parking @@ -0,0 +1 @@ +89db63c60d6b4f7d \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/parking-a40adc58bb78b1ed/lib-parking.json b/examples/leptos_axum/target/debug/.fingerprint/parking-a40adc58bb78b1ed/lib-parking.json new file mode 100644 index 0000000..69bbd30 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/parking-a40adc58bb78b1ed/lib-parking.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"loom\"]","target":9855717379987801857,"profile":2241668132362809309,"path":7218106110090039355,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/parking-a40adc58bb78b1ed/dep-lib-parking","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/paste-5e66a4bcbe3fe91d/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/paste-5e66a4bcbe3fe91d/run-build-script-build-script-build new file mode 100644 index 0000000..fe5bd72 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/paste-5e66a4bcbe3fe91d/run-build-script-build-script-build @@ -0,0 +1 @@ +bd325627ac0b1a32 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/paste-5e66a4bcbe3fe91d/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/paste-5e66a4bcbe3fe91d/run-build-script-build-script-build.json new file mode 100644 index 0000000..3f417e7 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/paste-5e66a4bcbe3fe91d/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[17605717126308396068,"build_script_build",false,8337373469420691177]],"local":[{"RerunIfChanged":{"output":"debug/build/paste-5e66a4bcbe3fe91d/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/paste-a03d36d0470502fc/dep-lib-paste b/examples/leptos_axum/target/debug/.fingerprint/paste-a03d36d0470502fc/dep-lib-paste new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/paste-a03d36d0470502fc/dep-lib-paste differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/paste-a03d36d0470502fc/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/paste-a03d36d0470502fc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/paste-a03d36d0470502fc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/paste-a03d36d0470502fc/lib-paste b/examples/leptos_axum/target/debug/.fingerprint/paste-a03d36d0470502fc/lib-paste new file mode 100644 index 0000000..b9dca08 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/paste-a03d36d0470502fc/lib-paste @@ -0,0 +1 @@ +33a2df54c348cf69 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/paste-a03d36d0470502fc/lib-paste.json b/examples/leptos_axum/target/debug/.fingerprint/paste-a03d36d0470502fc/lib-paste.json new file mode 100644 index 0000000..32d5f7d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/paste-a03d36d0470502fc/lib-paste.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":13051495773103412369,"profile":2225463790103693989,"path":660199424416902608,"deps":[[17605717126308396068,"build_script_build",false,3610210885313114813]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/paste-a03d36d0470502fc/dep-lib-paste","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/paste-f0fd735125c647b5/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/paste-f0fd735125c647b5/build-script-build-script-build new file mode 100644 index 0000000..3f02655 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/paste-f0fd735125c647b5/build-script-build-script-build @@ -0,0 +1 @@ +e91e9644ff4cb473 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/paste-f0fd735125c647b5/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/paste-f0fd735125c647b5/build-script-build-script-build.json new file mode 100644 index 0000000..f03a73f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/paste-f0fd735125c647b5/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":17883862002600103897,"profile":2225463790103693989,"path":14824853025423152483,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/paste-f0fd735125c647b5/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/paste-f0fd735125c647b5/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/paste-f0fd735125c647b5/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/paste-f0fd735125c647b5/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/paste-f0fd735125c647b5/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/paste-f0fd735125c647b5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/paste-f0fd735125c647b5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pathdiff-0450d8a12634d549/dep-lib-pathdiff b/examples/leptos_axum/target/debug/.fingerprint/pathdiff-0450d8a12634d549/dep-lib-pathdiff new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/pathdiff-0450d8a12634d549/dep-lib-pathdiff differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/pathdiff-0450d8a12634d549/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/pathdiff-0450d8a12634d549/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pathdiff-0450d8a12634d549/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pathdiff-0450d8a12634d549/lib-pathdiff b/examples/leptos_axum/target/debug/.fingerprint/pathdiff-0450d8a12634d549/lib-pathdiff new file mode 100644 index 0000000..23f4df3 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pathdiff-0450d8a12634d549/lib-pathdiff @@ -0,0 +1 @@ +fd540bcde39f1d2d \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pathdiff-0450d8a12634d549/lib-pathdiff.json b/examples/leptos_axum/target/debug/.fingerprint/pathdiff-0450d8a12634d549/lib-pathdiff.json new file mode 100644 index 0000000..c1b0782 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pathdiff-0450d8a12634d549/lib-pathdiff.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"camino\"]","target":16191425577592475274,"profile":2241668132362809309,"path":11219730593848636898,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pathdiff-0450d8a12634d549/dep-lib-pathdiff","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/dep-lib-percent_encoding b/examples/leptos_axum/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/dep-lib-percent_encoding new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/dep-lib-percent_encoding differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/lib-percent_encoding b/examples/leptos_axum/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/lib-percent_encoding new file mode 100644 index 0000000..fe3e6a5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/lib-percent_encoding @@ -0,0 +1 @@ +943b750d504b4ff2 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/lib-percent_encoding.json b/examples/leptos_axum/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/lib-percent_encoding.json new file mode 100644 index 0000000..db57bc7 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/percent-encoding-fdfc253f68ee3774/lib-percent_encoding.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":6219969305134610909,"profile":2241668132362809309,"path":13410472828908927545,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/percent-encoding-fdfc253f68ee3774/dep-lib-percent_encoding","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pin-project-066a22f9f454b2d1/dep-lib-pin_project b/examples/leptos_axum/target/debug/.fingerprint/pin-project-066a22f9f454b2d1/dep-lib-pin_project new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/pin-project-066a22f9f454b2d1/dep-lib-pin_project differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/pin-project-066a22f9f454b2d1/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/pin-project-066a22f9f454b2d1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pin-project-066a22f9f454b2d1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pin-project-066a22f9f454b2d1/lib-pin_project b/examples/leptos_axum/target/debug/.fingerprint/pin-project-066a22f9f454b2d1/lib-pin_project new file mode 100644 index 0000000..0137f79 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pin-project-066a22f9f454b2d1/lib-pin_project @@ -0,0 +1 @@ +e040d5f6be03f01a \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pin-project-066a22f9f454b2d1/lib-pin_project.json b/examples/leptos_axum/target/debug/.fingerprint/pin-project-066a22f9f454b2d1/lib-pin_project.json new file mode 100644 index 0000000..41deb9b --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pin-project-066a22f9f454b2d1/lib-pin_project.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":10486756659006472442,"profile":12003696335989691055,"path":16162423906938009508,"deps":[[1724238481208503623,"pin_project_internal",false,9051421604051705292]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pin-project-066a22f9f454b2d1/dep-lib-pin_project","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pin-project-internal-1aab316fb5a08cbd/dep-lib-pin_project_internal b/examples/leptos_axum/target/debug/.fingerprint/pin-project-internal-1aab316fb5a08cbd/dep-lib-pin_project_internal new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/pin-project-internal-1aab316fb5a08cbd/dep-lib-pin_project_internal differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/pin-project-internal-1aab316fb5a08cbd/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/pin-project-internal-1aab316fb5a08cbd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pin-project-internal-1aab316fb5a08cbd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pin-project-internal-1aab316fb5a08cbd/lib-pin_project_internal b/examples/leptos_axum/target/debug/.fingerprint/pin-project-internal-1aab316fb5a08cbd/lib-pin_project_internal new file mode 100644 index 0000000..dc1b574 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pin-project-internal-1aab316fb5a08cbd/lib-pin_project_internal @@ -0,0 +1 @@ +cc5dcc0dfe1b9d7d \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pin-project-internal-1aab316fb5a08cbd/lib-pin_project_internal.json b/examples/leptos_axum/target/debug/.fingerprint/pin-project-internal-1aab316fb5a08cbd/lib-pin_project_internal.json new file mode 100644 index 0000000..e0b796e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pin-project-internal-1aab316fb5a08cbd/lib-pin_project_internal.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":777236694398023488,"profile":8743738555731377715,"path":7005832369502126465,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pin-project-internal-1aab316fb5a08cbd/dep-lib-pin_project_internal","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/dep-lib-pin_project_lite b/examples/leptos_axum/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/dep-lib-pin_project_lite new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/dep-lib-pin_project_lite differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/lib-pin_project_lite b/examples/leptos_axum/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/lib-pin_project_lite new file mode 100644 index 0000000..875af25 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/lib-pin_project_lite @@ -0,0 +1 @@ +aaccbac41eaac640 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/lib-pin_project_lite.json b/examples/leptos_axum/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/lib-pin_project_lite.json new file mode 100644 index 0000000..b297eaa --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/lib-pin_project_lite.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":7529200858990304138,"profile":17997933717712007536,"path":5646862324104712435,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pin-project-lite-e9d4ca73b9a6a34c/dep-lib-pin_project_lite","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/potential_utf-d52d6a81c5b4e055/dep-lib-potential_utf b/examples/leptos_axum/target/debug/.fingerprint/potential_utf-d52d6a81c5b4e055/dep-lib-potential_utf new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/potential_utf-d52d6a81c5b4e055/dep-lib-potential_utf differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/potential_utf-d52d6a81c5b4e055/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/potential_utf-d52d6a81c5b4e055/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/potential_utf-d52d6a81c5b4e055/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/potential_utf-d52d6a81c5b4e055/lib-potential_utf b/examples/leptos_axum/target/debug/.fingerprint/potential_utf-d52d6a81c5b4e055/lib-potential_utf new file mode 100644 index 0000000..461ebb9 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/potential_utf-d52d6a81c5b4e055/lib-potential_utf @@ -0,0 +1 @@ +5d9d8d1c28663653 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/potential_utf-d52d6a81c5b4e055/lib-potential_utf.json b/examples/leptos_axum/target/debug/.fingerprint/potential_utf-d52d6a81c5b4e055/lib-potential_utf.json new file mode 100644 index 0000000..35322a5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/potential_utf-d52d6a81c5b4e055/lib-potential_utf.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"serde\", \"writeable\", \"zerovec\"]","target":16089386906944150126,"profile":15319846033271432293,"path":17881548224756515226,"deps":[[9119616491714376884,"zerovec",false,8547845344627906191]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/potential_utf-d52d6a81c5b4e055/dep-lib-potential_utf","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/prettyplease-313503e4931fbd32/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-313503e4931fbd32/run-build-script-build-script-build new file mode 100644 index 0000000..e5110a7 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-313503e4931fbd32/run-build-script-build-script-build @@ -0,0 +1 @@ +150e34ab20caab6e \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/prettyplease-313503e4931fbd32/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-313503e4931fbd32/run-build-script-build-script-build.json new file mode 100644 index 0000000..e98077b --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-313503e4931fbd32/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[9423015880379144908,"build_script_build",false,2010928352283792007]],"local":[{"RerunIfChanged":{"output":"debug/build/prettyplease-313503e4931fbd32/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/prettyplease-4e660e93577719bd/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-4e660e93577719bd/build-script-build-script-build new file mode 100644 index 0000000..b40664b --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-4e660e93577719bd/build-script-build-script-build @@ -0,0 +1 @@ +8712a39aae40e81b \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/prettyplease-4e660e93577719bd/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-4e660e93577719bd/build-script-build-script-build.json new file mode 100644 index 0000000..22ba4d9 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-4e660e93577719bd/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"verbatim\"]","target":5408242616063297496,"profile":2225463790103693989,"path":17968814751863994312,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/prettyplease-4e660e93577719bd/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/prettyplease-4e660e93577719bd/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-4e660e93577719bd/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-4e660e93577719bd/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/prettyplease-4e660e93577719bd/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-4e660e93577719bd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-4e660e93577719bd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/prettyplease-5739b8da4b325404/dep-lib-prettyplease b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-5739b8da4b325404/dep-lib-prettyplease new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-5739b8da4b325404/dep-lib-prettyplease differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/prettyplease-5739b8da4b325404/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-5739b8da4b325404/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-5739b8da4b325404/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/prettyplease-5739b8da4b325404/lib-prettyplease b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-5739b8da4b325404/lib-prettyplease new file mode 100644 index 0000000..0a04dc2 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-5739b8da4b325404/lib-prettyplease @@ -0,0 +1 @@ +bec1fff11ed0f34b \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/prettyplease-5739b8da4b325404/lib-prettyplease.json b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-5739b8da4b325404/lib-prettyplease.json new file mode 100644 index 0000000..f654fd0 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/prettyplease-5739b8da4b325404/lib-prettyplease.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"verbatim\"]","target":18426667244755495939,"profile":2225463790103693989,"path":168803154995863260,"deps":[[9423015880379144908,"build_script_build",false,7974689806849674773],[10190449710562616856,"syn",false,6080269753824482509],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/prettyplease-5739b8da4b325404/dep-lib-prettyplease","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error-attr2-e44351d03ab071cf/dep-lib-proc_macro_error_attr2 b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error-attr2-e44351d03ab071cf/dep-lib-proc_macro_error_attr2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error-attr2-e44351d03ab071cf/dep-lib-proc_macro_error_attr2 differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error-attr2-e44351d03ab071cf/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error-attr2-e44351d03ab071cf/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error-attr2-e44351d03ab071cf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error-attr2-e44351d03ab071cf/lib-proc_macro_error_attr2 b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error-attr2-e44351d03ab071cf/lib-proc_macro_error_attr2 new file mode 100644 index 0000000..d4ba55a --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error-attr2-e44351d03ab071cf/lib-proc_macro_error_attr2 @@ -0,0 +1 @@ +2bcfafad5b020755 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error-attr2-e44351d03ab071cf/lib-proc_macro_error_attr2.json b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error-attr2-e44351d03ab071cf/lib-proc_macro_error_attr2.json new file mode 100644 index 0000000..4d7ee55 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error-attr2-e44351d03ab071cf/lib-proc_macro_error_attr2.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":7232681507489449153,"profile":2995957552370660634,"path":2733767137947862652,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro-error-attr2-e44351d03ab071cf/dep-lib-proc_macro_error_attr2","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error2-75623c9efb82d0bb/dep-lib-proc_macro_error2 b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error2-75623c9efb82d0bb/dep-lib-proc_macro_error2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error2-75623c9efb82d0bb/dep-lib-proc_macro_error2 differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error2-75623c9efb82d0bb/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error2-75623c9efb82d0bb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error2-75623c9efb82d0bb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error2-75623c9efb82d0bb/lib-proc_macro_error2 b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error2-75623c9efb82d0bb/lib-proc_macro_error2 new file mode 100644 index 0000000..171c0ce --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error2-75623c9efb82d0bb/lib-proc_macro_error2 @@ -0,0 +1 @@ +06325e481ca9edf9 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error2-75623c9efb82d0bb/lib-proc_macro_error2.json b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error2-75623c9efb82d0bb/lib-proc_macro_error2.json new file mode 100644 index 0000000..9473994 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error2-75623c9efb82d0bb/lib-proc_macro_error2.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"syn-error\"]","declared_features":"[\"default\", \"nightly\", \"syn-error\"]","target":10198359499485127680,"profile":4181551456753360521,"path":14875516370852885051,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[9308116640629608885,"proc_macro_error_attr2",false,6126868410840108843],[10190449710562616856,"syn",false,6080269753824482509],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro-error2-75623c9efb82d0bb/dep-lib-proc_macro_error2","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error2-75623c9efb82d0bb/output-lib-proc_macro_error2 b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error2-75623c9efb82d0bb/output-lib-proc_macro_error2 new file mode 100644 index 0000000..2bfbf6b --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-error2-75623c9efb82d0bb/output-lib-proc_macro_error2 @@ -0,0 +1 @@ +{"$message_type":"future_incompat","future_incompat_report":[{"diagnostic":{"$message_type":"diagnostic","message":"extern crate `proc_macro` is private and cannot be re-exported","code":{"code":"E0365","explanation":"Private modules cannot be publicly re-exported. This error indicates that you\nattempted to `pub use` a module that was not itself public.\n\nErroneous code example:\n\n```compile_fail,E0365\nmod foo {\n pub const X: u32 = 1;\n}\n\npub use foo as foo2;\n\nfn main() {}\n```\n\nThe solution to this problem is to ensure that the module that you are\nre-exporting is itself marked with `pub`:\n\n```\npub mod foo {\n pub const X: u32 = 1;\n}\n\npub use foo as foo2;\n\nfn main() {}\n```\n\nSee the [Use Declarations][use-declarations] section of the reference for\nmore information on this topic.\n\n[use-declarations]: https://doc.rust-lang.org/reference/items/use-declarations.html\n"},"level":"warning","spans":[{"file_name":"/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/lib.rs","byte_start":16962,"byte_end":16972,"line_start":494,"line_end":494,"column_start":13,"column_end":23,"is_primary":true,"text":[{"text":" pub use proc_macro;","highlight_start":13,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!","code":null,"level":"warning","spans":[],"children":[],"rendered":null},{"message":"for more information, see issue #127909 ","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"consider making the `extern crate` item publicly accessible","code":null,"level":"help","spans":[{"file_name":"/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/lib.rs","byte_start":11022,"byte_end":11022,"line_start":277,"line_end":277,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"extern crate proc_macro;","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"pub ","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning[E0365]\u001b[0m\u001b[1m: extern crate `proc_macro` is private and cannot be re-exported\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0m/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/lib.rs:494:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m494\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use proc_macro;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mwarning\u001b[0m: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: for more information, see issue #127909 \n\u001b[1m\u001b[96mhelp\u001b[0m: consider making the `extern crate` item publicly accessible\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m277\u001b[0m \u001b[1m\u001b[94m| \u001b[0m\u001b[92mpub \u001b[0mextern crate proc_macro;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[92m+++\u001b[0m\n\n"}}]} diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro-utils-a986edbc0857ad6e/dep-lib-proc_macro_utils b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-utils-a986edbc0857ad6e/dep-lib-proc_macro_utils new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-utils-a986edbc0857ad6e/dep-lib-proc_macro_utils differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro-utils-a986edbc0857ad6e/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-utils-a986edbc0857ad6e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-utils-a986edbc0857ad6e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro-utils-a986edbc0857ad6e/lib-proc_macro_utils b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-utils-a986edbc0857ad6e/lib-proc_macro_utils new file mode 100644 index 0000000..467bf43 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-utils-a986edbc0857ad6e/lib-proc_macro_utils @@ -0,0 +1 @@ +95ede1202f03d3b5 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro-utils-a986edbc0857ad6e/lib-proc_macro_utils.json b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-utils-a986edbc0857ad6e/lib-proc_macro_utils.json new file mode 100644 index 0000000..0388414 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro-utils-a986edbc0857ad6e/lib-proc_macro_utils.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"parser\", \"proc-macro\", \"proc-macro2\", \"quote\", \"smallvec\"]","declared_features":"[\"default\", \"parser\", \"proc-macro\", \"proc-macro2\", \"quote\", \"smallvec\"]","target":3552826092673825643,"profile":2225463790103693989,"path":17989819844856863683,"deps":[[2295442787663447226,"smallvec",false,10505461495029090330],[8949245912927223590,"quote",false,14896968245106632325],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro-utils-a986edbc0857ad6e/dep-lib-proc_macro_utils","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-2702dbf3e3a1a7ab/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-2702dbf3e3a1a7ab/build-script-build-script-build new file mode 100644 index 0000000..9ece761 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-2702dbf3e3a1a7ab/build-script-build-script-build @@ -0,0 +1 @@ +461fd3617169c79d \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-2702dbf3e3a1a7ab/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-2702dbf3e3a1a7ab/build-script-build-script-build.json new file mode 100644 index 0000000..71d6ee0 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-2702dbf3e3a1a7ab/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":5408242616063297496,"profile":2225463790103693989,"path":7845090571473629411,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-2702dbf3e3a1a7ab/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-2702dbf3e3a1a7ab/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-2702dbf3e3a1a7ab/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-2702dbf3e3a1a7ab/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-2702dbf3e3a1a7ab/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-2702dbf3e3a1a7ab/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-2702dbf3e3a1a7ab/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-79e912e14b1f6010/dep-lib-proc_macro2 b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-79e912e14b1f6010/dep-lib-proc_macro2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-79e912e14b1f6010/dep-lib-proc_macro2 differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-79e912e14b1f6010/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-79e912e14b1f6010/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-79e912e14b1f6010/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-79e912e14b1f6010/lib-proc_macro2 b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-79e912e14b1f6010/lib-proc_macro2 new file mode 100644 index 0000000..f796ee9 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-79e912e14b1f6010/lib-proc_macro2 @@ -0,0 +1 @@ +19aa94ab0c9da533 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-79e912e14b1f6010/lib-proc_macro2.json b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-79e912e14b1f6010/lib-proc_macro2.json new file mode 100644 index 0000000..827ad7e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-79e912e14b1f6010/lib-proc_macro2.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":369203346396300798,"profile":2225463790103693989,"path":9341277498285328923,"deps":[[8901712065508858692,"unicode_ident",false,10098889171189812418],[16346726298725429545,"build_script_build",false,1186559671327626294]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-79e912e14b1f6010/dep-lib-proc_macro2","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-7997f87e5fadb406/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-7997f87e5fadb406/build-script-build-script-build new file mode 100644 index 0000000..5f3e0e7 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-7997f87e5fadb406/build-script-build-script-build @@ -0,0 +1 @@ +10b1ff94eb58d313 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-7997f87e5fadb406/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-7997f87e5fadb406/build-script-build-script-build.json new file mode 100644 index 0000000..26cfed1 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-7997f87e5fadb406/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"colors\", \"yansi\"]","declared_features":"[\"colors\", \"default\", \"yansi\"]","target":17883862002600103897,"profile":2225463790103693989,"path":1333246590474775400,"deps":[[5398981501050481332,"version_check",false,5486698861605516196]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-diagnostics-7997f87e5fadb406/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-7997f87e5fadb406/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-7997f87e5fadb406/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-7997f87e5fadb406/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-7997f87e5fadb406/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-7997f87e5fadb406/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-7997f87e5fadb406/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-a886e7c0b05f5ffa/dep-lib-proc_macro2_diagnostics b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-a886e7c0b05f5ffa/dep-lib-proc_macro2_diagnostics new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-a886e7c0b05f5ffa/dep-lib-proc_macro2_diagnostics differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-a886e7c0b05f5ffa/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-a886e7c0b05f5ffa/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-a886e7c0b05f5ffa/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-a886e7c0b05f5ffa/lib-proc_macro2_diagnostics b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-a886e7c0b05f5ffa/lib-proc_macro2_diagnostics new file mode 100644 index 0000000..5514426 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-a886e7c0b05f5ffa/lib-proc_macro2_diagnostics @@ -0,0 +1 @@ +12bc14773c0f7659 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-a886e7c0b05f5ffa/lib-proc_macro2_diagnostics.json b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-a886e7c0b05f5ffa/lib-proc_macro2_diagnostics.json new file mode 100644 index 0000000..b43e497 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-a886e7c0b05f5ffa/lib-proc_macro2_diagnostics.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"colors\", \"yansi\"]","declared_features":"[\"colors\", \"default\", \"yansi\"]","target":17571194379307297511,"profile":2225463790103693989,"path":894538615691950283,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[11462695054828705146,"yansi",false,11932236195493426373],[12700603917654100160,"build_script_build",false,2483230712721427215],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-diagnostics-a886e7c0b05f5ffa/dep-lib-proc_macro2_diagnostics","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-c1a7d4ae149b2c69/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-c1a7d4ae149b2c69/run-build-script-build-script-build new file mode 100644 index 0000000..f23fc6d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-c1a7d4ae149b2c69/run-build-script-build-script-build @@ -0,0 +1 @@ +0fcb192f2d357622 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-c1a7d4ae149b2c69/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-c1a7d4ae149b2c69/run-build-script-build-script-build.json new file mode 100644 index 0000000..8010c7d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-c1a7d4ae149b2c69/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[12700603917654100160,"build_script_build",false,1428583275646923024]],"local":[{"Precalculated":"0.10.1"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-ffc40497011c51f6/dep-lib-proc_macro2_diagnostics b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-ffc40497011c51f6/dep-lib-proc_macro2_diagnostics new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-ffc40497011c51f6/dep-lib-proc_macro2_diagnostics differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-ffc40497011c51f6/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-ffc40497011c51f6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-ffc40497011c51f6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-ffc40497011c51f6/lib-proc_macro2_diagnostics b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-ffc40497011c51f6/lib-proc_macro2_diagnostics new file mode 100644 index 0000000..096954b --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-ffc40497011c51f6/lib-proc_macro2_diagnostics @@ -0,0 +1 @@ +fa87736024725a76 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-ffc40497011c51f6/lib-proc_macro2_diagnostics.json b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-ffc40497011c51f6/lib-proc_macro2_diagnostics.json new file mode 100644 index 0000000..671328f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-diagnostics-ffc40497011c51f6/lib-proc_macro2_diagnostics.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"colors\", \"yansi\"]","declared_features":"[\"colors\", \"default\", \"yansi\"]","target":17571194379307297511,"profile":2241668132362809309,"path":894538615691950283,"deps":[[8949245912927223590,"quote",false,17645419880070595363],[10190449710562616856,"syn",false,6637575174125347235],[11462695054828705146,"yansi",false,11640417923510700844],[12700603917654100160,"build_script_build",false,2483230712721427215],[16346726298725429545,"proc_macro2",false,7987514604498767349]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-diagnostics-ffc40497011c51f6/dep-lib-proc_macro2_diagnostics","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-e3b6262e565428ce/dep-lib-proc_macro2 b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-e3b6262e565428ce/dep-lib-proc_macro2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-e3b6262e565428ce/dep-lib-proc_macro2 differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-e3b6262e565428ce/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-e3b6262e565428ce/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-e3b6262e565428ce/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-e3b6262e565428ce/lib-proc_macro2 b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-e3b6262e565428ce/lib-proc_macro2 new file mode 100644 index 0000000..b9e26ef --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-e3b6262e565428ce/lib-proc_macro2 @@ -0,0 +1 @@ +f5cd648f365ad96e \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-e3b6262e565428ce/lib-proc_macro2.json b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-e3b6262e565428ce/lib-proc_macro2.json new file mode 100644 index 0000000..d611bce --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-e3b6262e565428ce/lib-proc_macro2.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":369203346396300798,"profile":2241668132362809309,"path":9341277498285328923,"deps":[[8901712065508858692,"unicode_ident",false,4209008587143611812],[16346726298725429545,"build_script_build",false,1186559671327626294]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/proc-macro2-e3b6262e565428ce/dep-lib-proc_macro2","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-f9037ddb91635dbd/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-f9037ddb91635dbd/run-build-script-build-script-build new file mode 100644 index 0000000..d76aa81 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-f9037ddb91635dbd/run-build-script-build-script-build @@ -0,0 +1 @@ +36944902bc817710 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-f9037ddb91635dbd/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-f9037ddb91635dbd/run-build-script-build-script-build.json new file mode 100644 index 0000000..2770b03 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/proc-macro2-f9037ddb91635dbd/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[16346726298725429545,"build_script_build",false,11369171720013553478]],"local":[{"RerunIfChanged":{"output":"debug/build/proc-macro2-f9037ddb91635dbd/output","paths":["src/probe/proc_macro_span.rs","src/probe/proc_macro_span_location.rs","src/probe/proc_macro_span_file.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-5ae88b7df1430425/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-5ae88b7df1430425/build-script-build-script-build new file mode 100644 index 0000000..c15acb9 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-5ae88b7df1430425/build-script-build-script-build @@ -0,0 +1 @@ +285be1f4907d93d2 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-5ae88b7df1430425/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-5ae88b7df1430425/build-script-build-script-build.json new file mode 100644 index 0000000..26c41f2 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-5ae88b7df1430425/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"html\", \"pulldown-cmark-escape\"]","declared_features":"[\"default\", \"gen-tests\", \"getopts\", \"html\", \"pulldown-cmark-escape\", \"serde\", \"simd\"]","target":5408242616063297496,"profile":2175425913391121376,"path":7292335097889585105,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pulldown-cmark-5ae88b7df1430425/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-5ae88b7df1430425/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-5ae88b7df1430425/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-5ae88b7df1430425/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-5ae88b7df1430425/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-5ae88b7df1430425/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-5ae88b7df1430425/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-dba37eae186fd407/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-dba37eae186fd407/run-build-script-build-script-build new file mode 100644 index 0000000..46711de --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-dba37eae186fd407/run-build-script-build-script-build @@ -0,0 +1 @@ +c57c7d3f0db73096 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-dba37eae186fd407/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-dba37eae186fd407/run-build-script-build-script-build.json new file mode 100644 index 0000000..b2f8817 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-dba37eae186fd407/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[640844532387897103,"build_script_build",false,15173609631078505256]],"local":[{"Precalculated":"0.12.2"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-ec91219f5ced9d48/dep-lib-pulldown_cmark b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-ec91219f5ced9d48/dep-lib-pulldown_cmark new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-ec91219f5ced9d48/dep-lib-pulldown_cmark differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-ec91219f5ced9d48/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-ec91219f5ced9d48/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-ec91219f5ced9d48/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-ec91219f5ced9d48/lib-pulldown_cmark b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-ec91219f5ced9d48/lib-pulldown_cmark new file mode 100644 index 0000000..f65001f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-ec91219f5ced9d48/lib-pulldown_cmark @@ -0,0 +1 @@ +b45bdbab3057f8f9 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-ec91219f5ced9d48/lib-pulldown_cmark.json b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-ec91219f5ced9d48/lib-pulldown_cmark.json new file mode 100644 index 0000000..d218741 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-ec91219f5ced9d48/lib-pulldown_cmark.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"html\", \"pulldown-cmark-escape\"]","declared_features":"[\"default\", \"gen-tests\", \"getopts\", \"html\", \"pulldown-cmark-escape\", \"serde\", \"simd\"]","target":10699664223751730261,"profile":11855528828941339029,"path":2853691681743207674,"deps":[[640844532387897103,"build_script_build",false,10822351172098948293],[5127344325563758221,"bitflags",false,16887567494596241090],[9161548618241828600,"unicase",false,3393693304330767977],[12613788554453945248,"memchr",false,6429642936732799769],[14034672496987986693,"pulldown_cmark_escape",false,9286470503058157810]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pulldown-cmark-ec91219f5ced9d48/dep-lib-pulldown_cmark","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-escape-34c9859aada7cd72/dep-lib-pulldown_cmark_escape b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-escape-34c9859aada7cd72/dep-lib-pulldown_cmark_escape new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-escape-34c9859aada7cd72/dep-lib-pulldown_cmark_escape differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-escape-34c9859aada7cd72/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-escape-34c9859aada7cd72/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-escape-34c9859aada7cd72/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-escape-34c9859aada7cd72/lib-pulldown_cmark_escape b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-escape-34c9859aada7cd72/lib-pulldown_cmark_escape new file mode 100644 index 0000000..15c2963 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-escape-34c9859aada7cd72/lib-pulldown_cmark_escape @@ -0,0 +1 @@ +f2b0ec7fb82be080 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-escape-34c9859aada7cd72/lib-pulldown_cmark_escape.json b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-escape-34c9859aada7cd72/lib-pulldown_cmark_escape.json new file mode 100644 index 0000000..e4a94ef --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/pulldown-cmark-escape-34c9859aada7cd72/lib-pulldown_cmark_escape.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"simd\"]","target":17176367601742668540,"profile":2241668132362809309,"path":17030164659515303441,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/pulldown-cmark-escape-34c9859aada7cd72/dep-lib-pulldown_cmark_escape","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-415476b3bd7e2291/dep-lib-quote b/examples/leptos_axum/target/debug/.fingerprint/quote-415476b3bd7e2291/dep-lib-quote new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/quote-415476b3bd7e2291/dep-lib-quote differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-415476b3bd7e2291/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/quote-415476b3bd7e2291/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/quote-415476b3bd7e2291/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-415476b3bd7e2291/lib-quote b/examples/leptos_axum/target/debug/.fingerprint/quote-415476b3bd7e2291/lib-quote new file mode 100644 index 0000000..40fafa0 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/quote-415476b3bd7e2291/lib-quote @@ -0,0 +1 @@ +85e6daffb0a9bcce \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-415476b3bd7e2291/lib-quote.json b/examples/leptos_axum/target/debug/.fingerprint/quote-415476b3bd7e2291/lib-quote.json new file mode 100644 index 0000000..0620395 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/quote-415476b3bd7e2291/lib-quote.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":8313845041260779044,"profile":2225463790103693989,"path":4374323683521019497,"deps":[[8949245912927223590,"build_script_build",false,7989257143869954882],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-415476b3bd7e2291/dep-lib-quote","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-4d9766c089a67192/dep-lib-quote b/examples/leptos_axum/target/debug/.fingerprint/quote-4d9766c089a67192/dep-lib-quote new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/quote-4d9766c089a67192/dep-lib-quote differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-4d9766c089a67192/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/quote-4d9766c089a67192/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/quote-4d9766c089a67192/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-4d9766c089a67192/lib-quote b/examples/leptos_axum/target/debug/.fingerprint/quote-4d9766c089a67192/lib-quote new file mode 100644 index 0000000..5510990 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/quote-4d9766c089a67192/lib-quote @@ -0,0 +1 @@ +23433938e41fe1f4 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-4d9766c089a67192/lib-quote.json b/examples/leptos_axum/target/debug/.fingerprint/quote-4d9766c089a67192/lib-quote.json new file mode 100644 index 0000000..3d896a1 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/quote-4d9766c089a67192/lib-quote.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":8313845041260779044,"profile":2241668132362809309,"path":4374323683521019497,"deps":[[8949245912927223590,"build_script_build",false,7989257143869954882],[16346726298725429545,"proc_macro2",false,7987514604498767349]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-4d9766c089a67192/dep-lib-quote","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-6dff9724e4e81362/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/quote-6dff9724e4e81362/build-script-build-script-build new file mode 100644 index 0000000..e277cb6 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/quote-6dff9724e4e81362/build-script-build-script-build @@ -0,0 +1 @@ +082a9e51a4eec6d9 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-6dff9724e4e81362/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/quote-6dff9724e4e81362/build-script-build-script-build.json new file mode 100644 index 0000000..0576483 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/quote-6dff9724e4e81362/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":5408242616063297496,"profile":2225463790103693989,"path":9113615545337472969,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-6dff9724e4e81362/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-6dff9724e4e81362/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/quote-6dff9724e4e81362/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/quote-6dff9724e4e81362/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-6dff9724e4e81362/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/quote-6dff9724e4e81362/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/quote-6dff9724e4e81362/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-d182b96d5648b437/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/quote-d182b96d5648b437/run-build-script-build-script-build new file mode 100644 index 0000000..62208d3 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/quote-d182b96d5648b437/run-build-script-build-script-build @@ -0,0 +1 @@ +42db9e1f0b8bdf6e \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-d182b96d5648b437/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/quote-d182b96d5648b437/run-build-script-build-script-build.json new file mode 100644 index 0000000..3ac089b --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/quote-d182b96d5648b437/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8949245912927223590,"build_script_build",false,15692492341130439176]],"local":[{"RerunIfChanged":{"output":"debug/build/quote-d182b96d5648b437/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-use-3daf6b0ad607ce87/dep-lib-quote_use b/examples/leptos_axum/target/debug/.fingerprint/quote-use-3daf6b0ad607ce87/dep-lib-quote_use new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/quote-use-3daf6b0ad607ce87/dep-lib-quote_use differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-use-3daf6b0ad607ce87/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/quote-use-3daf6b0ad607ce87/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/quote-use-3daf6b0ad607ce87/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-use-3daf6b0ad607ce87/lib-quote_use b/examples/leptos_axum/target/debug/.fingerprint/quote-use-3daf6b0ad607ce87/lib-quote_use new file mode 100644 index 0000000..b1f5cdd --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/quote-use-3daf6b0ad607ce87/lib-quote_use @@ -0,0 +1 @@ +f8853960387d2634 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-use-3daf6b0ad607ce87/lib-quote_use.json b/examples/leptos_axum/target/debug/.fingerprint/quote-use-3daf6b0ad607ce87/lib-quote_use.json new file mode 100644 index 0000000..8e8dc6f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/quote-use-3daf6b0ad607ce87/lib-quote_use.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"syn\"]","target":2267623599140737275,"profile":2225463790103693989,"path":16322672789342164141,"deps":[[2316359900077702548,"quote_use_macros",false,1101971431953712561],[8949245912927223590,"quote",false,14896968245106632325]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-use-3daf6b0ad607ce87/dep-lib-quote_use","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-use-macros-cb61ff89967612f9/dep-lib-quote_use_macros b/examples/leptos_axum/target/debug/.fingerprint/quote-use-macros-cb61ff89967612f9/dep-lib-quote_use_macros new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/quote-use-macros-cb61ff89967612f9/dep-lib-quote_use_macros differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-use-macros-cb61ff89967612f9/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/quote-use-macros-cb61ff89967612f9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/quote-use-macros-cb61ff89967612f9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-use-macros-cb61ff89967612f9/lib-quote_use_macros b/examples/leptos_axum/target/debug/.fingerprint/quote-use-macros-cb61ff89967612f9/lib-quote_use_macros new file mode 100644 index 0000000..25b5498 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/quote-use-macros-cb61ff89967612f9/lib-quote_use_macros @@ -0,0 +1 @@ +b1c53aca2dfd4a0f \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/quote-use-macros-cb61ff89967612f9/lib-quote_use_macros.json b/examples/leptos_axum/target/debug/.fingerprint/quote-use-macros-cb61ff89967612f9/lib-quote_use_macros.json new file mode 100644 index 0000000..f9d4ce9 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/quote-use-macros-cb61ff89967612f9/lib-quote_use_macros.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":7906089688418264185,"profile":2225463790103693989,"path":11200584649325223739,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[9215727607793359310,"proc_macro_utils",false,13101819241900928405],[10190449710562616856,"syn",false,6080269753824482509],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/quote-use-macros-cb61ff89967612f9/dep-lib-quote_use_macros","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-0251d5e0bdcb3545/dep-lib-reactive_graph b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-0251d5e0bdcb3545/dep-lib-reactive_graph new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-0251d5e0bdcb3545/dep-lib-reactive_graph differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-0251d5e0bdcb3545/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-0251d5e0bdcb3545/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-0251d5e0bdcb3545/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-0251d5e0bdcb3545/lib-reactive_graph b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-0251d5e0bdcb3545/lib-reactive_graph new file mode 100644 index 0000000..9ef2ecf --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-0251d5e0bdcb3545/lib-reactive_graph @@ -0,0 +1 @@ +0457931920b9de8b \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-0251d5e0bdcb3545/lib-reactive_graph.json b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-0251d5e0bdcb3545/lib-reactive_graph.json new file mode 100644 index 0000000..b8c5e0e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-0251d5e0bdcb3545/lib-reactive_graph.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"hydration\", \"serde\"]","declared_features":"[\"effects\", \"hydration\", \"nightly\", \"sandboxed-arenas\", \"serde\", \"subsecond\", \"tracing\"]","target":3531316500338596294,"profile":8468571603947006409,"path":11147718424211712378,"deps":[[2251399859588827949,"pin_project_lite",false,4667605112942415018],[3146308150807269233,"or_poisoned",false,12685221538892035093],[4390555356910896043,"hydration_context",false,12204534828574710988],[4606430129565412780,"slotmap",false,5885062458607649051],[5793233592449580592,"rustc_hash",false,1679344276918458792],[6557439603276904804,"serde",false,660198786115094860],[6692650170110433251,"futures",false,8883793258988323716],[8485763786069017691,"send_wrapper",false,10504974413404477566],[8826707145280285270,"indexmap",false,10525225707791215002],[10309078293267942089,"any_spawner",false,18143628362506544039],[11742730876020405241,"thiserror",false,13956677985622615357],[11891751011552156277,"guardian",false,7787178197608953682],[14150371852535367471,"build_script_build",false,9912893723426615203],[16549948769818400386,"async_lock",false,13837897539889707556],[17605717126308396068,"paste",false,7624392697941303859]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/reactive_graph-0251d5e0bdcb3545/dep-lib-reactive_graph","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-b97763c3eda5216f/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-b97763c3eda5216f/run-build-script-build-script-build new file mode 100644 index 0000000..9bdb418 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-b97763c3eda5216f/run-build-script-build-script-build @@ -0,0 +1 @@ +a3ef0a1952ac9189 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-b97763c3eda5216f/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-b97763c3eda5216f/run-build-script-build-script-build.json new file mode 100644 index 0000000..036d4d8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-b97763c3eda5216f/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[14150371852535367471,"build_script_build",false,423884178672665617]],"local":[{"Precalculated":"0.2.14"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-db99cfee8bdb5deb/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-db99cfee8bdb5deb/build-script-build-script-build new file mode 100644 index 0000000..0eb9c72 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-db99cfee8bdb5deb/build-script-build-script-build @@ -0,0 +1 @@ +1144b1276af0e105 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-db99cfee8bdb5deb/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-db99cfee8bdb5deb/build-script-build-script-build.json new file mode 100644 index 0000000..d761e81 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-db99cfee8bdb5deb/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"hydration\", \"serde\"]","declared_features":"[\"effects\", \"hydration\", \"nightly\", \"sandboxed-arenas\", \"serde\", \"subsecond\", \"tracing\"]","target":5408242616063297496,"profile":11313680297347010590,"path":16683731861035866629,"deps":[[8576480473721236041,"rustc_version",false,8412824128398680801]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/reactive_graph-db99cfee8bdb5deb/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-db99cfee8bdb5deb/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-db99cfee8bdb5deb/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-db99cfee8bdb5deb/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-db99cfee8bdb5deb/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-db99cfee8bdb5deb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/reactive_graph-db99cfee8bdb5deb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_stores-0ea30f40a25a9707/dep-lib-reactive_stores b/examples/leptos_axum/target/debug/.fingerprint/reactive_stores-0ea30f40a25a9707/dep-lib-reactive_stores new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/reactive_stores-0ea30f40a25a9707/dep-lib-reactive_stores differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_stores-0ea30f40a25a9707/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/reactive_stores-0ea30f40a25a9707/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/reactive_stores-0ea30f40a25a9707/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_stores-0ea30f40a25a9707/lib-reactive_stores b/examples/leptos_axum/target/debug/.fingerprint/reactive_stores-0ea30f40a25a9707/lib-reactive_stores new file mode 100644 index 0000000..2208494 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/reactive_stores-0ea30f40a25a9707/lib-reactive_stores @@ -0,0 +1 @@ +4323942e1cfca2bb \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_stores-0ea30f40a25a9707/lib-reactive_stores.json b/examples/leptos_axum/target/debug/.fingerprint/reactive_stores-0ea30f40a25a9707/lib-reactive_stores.json new file mode 100644 index 0000000..fdadf7d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/reactive_stores-0ea30f40a25a9707/lib-reactive_stores.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\"]","declared_features":"[\"default\", \"serde\", \"slotmap\"]","target":291758600464015189,"profile":1569615065688704865,"path":13994815548334507524,"deps":[[3146308150807269233,"or_poisoned",false,12685221538892035093],[5793233592449580592,"rustc_hash",false,1679344276918458792],[8485763786069017691,"send_wrapper",false,10504974413404477566],[8826707145280285270,"indexmap",false,10525225707791215002],[11076085432374567688,"reactive_stores_macro",false,1873920366100158666],[11891751011552156277,"guardian",false,7787178197608953682],[14150371852535367471,"reactive_graph",false,10078696563620927236],[16326338539882746041,"itertools",false,16408904456906925179],[17605717126308396068,"paste",false,7624392697941303859]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/reactive_stores-0ea30f40a25a9707/dep-lib-reactive_stores","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_stores_macro-a7aec4699ad4e2e5/dep-lib-reactive_stores_macro b/examples/leptos_axum/target/debug/.fingerprint/reactive_stores_macro-a7aec4699ad4e2e5/dep-lib-reactive_stores_macro new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/reactive_stores_macro-a7aec4699ad4e2e5/dep-lib-reactive_stores_macro differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_stores_macro-a7aec4699ad4e2e5/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/reactive_stores_macro-a7aec4699ad4e2e5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/reactive_stores_macro-a7aec4699ad4e2e5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_stores_macro-a7aec4699ad4e2e5/lib-reactive_stores_macro b/examples/leptos_axum/target/debug/.fingerprint/reactive_stores_macro-a7aec4699ad4e2e5/lib-reactive_stores_macro new file mode 100644 index 0000000..bc129c1 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/reactive_stores_macro-a7aec4699ad4e2e5/lib-reactive_stores_macro @@ -0,0 +1 @@ +ca18c5fea480011a \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/reactive_stores_macro-a7aec4699ad4e2e5/lib-reactive_stores_macro.json b/examples/leptos_axum/target/debug/.fingerprint/reactive_stores_macro-a7aec4699ad4e2e5/lib-reactive_stores_macro.json new file mode 100644 index 0000000..0222b08 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/reactive_stores_macro-a7aec4699ad4e2e5/lib-reactive_stores_macro.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":15600704189328044579,"profile":2225463790103693989,"path":14044573814306715747,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[15755541468655779741,"proc_macro_error2",false,18009236423862792710],[16346726298725429545,"proc_macro2",false,3721553344835398169],[17865014727662549706,"convert_case",false,10278804124439765272]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/reactive_stores_macro-a7aec4699ad4e2e5/dep-lib-reactive_stores_macro","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/regex-automata-0b184fe899a532d8/dep-lib-regex_automata b/examples/leptos_axum/target/debug/.fingerprint/regex-automata-0b184fe899a532d8/dep-lib-regex_automata new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/regex-automata-0b184fe899a532d8/dep-lib-regex_automata differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/regex-automata-0b184fe899a532d8/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/regex-automata-0b184fe899a532d8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/regex-automata-0b184fe899a532d8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/regex-automata-0b184fe899a532d8/lib-regex_automata b/examples/leptos_axum/target/debug/.fingerprint/regex-automata-0b184fe899a532d8/lib-regex_automata new file mode 100644 index 0000000..a09b8e5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/regex-automata-0b184fe899a532d8/lib-regex_automata @@ -0,0 +1 @@ +7fb5451a5fcbbd3c \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/regex-automata-0b184fe899a532d8/lib-regex_automata.json b/examples/leptos_axum/target/debug/.fingerprint/regex-automata-0b184fe899a532d8/lib-regex_automata.json new file mode 100644 index 0000000..c770c7c --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/regex-automata-0b184fe899a532d8/lib-regex_automata.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"dfa-onepass\", \"hybrid\", \"meta\", \"nfa-backtrack\", \"nfa-pikevm\", \"nfa-thompson\", \"perf-inline\", \"perf-literal\", \"perf-literal-multisubstring\", \"perf-literal-substring\", \"std\", \"syntax\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unicode-word-boundary\"]","declared_features":"[\"alloc\", \"default\", \"dfa\", \"dfa-build\", \"dfa-onepass\", \"dfa-search\", \"hybrid\", \"internal-instrument\", \"internal-instrument-pikevm\", \"logging\", \"meta\", \"nfa\", \"nfa-backtrack\", \"nfa-pikevm\", \"nfa-thompson\", \"perf\", \"perf-inline\", \"perf-literal\", \"perf-literal-multisubstring\", \"perf-literal-substring\", \"std\", \"syntax\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unicode-word-boundary\"]","target":4726246767843925232,"profile":10712413002018579216,"path":11430431302939492796,"deps":[[1853952367769002784,"regex_syntax",false,6978565347120833185],[12613788554453945248,"memchr",false,6429642936732799769],[15324871377471570981,"aho_corasick",false,9926103795115178239]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-automata-0b184fe899a532d8/dep-lib-regex_automata","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/regex-fb6df73c4dd5bc61/dep-lib-regex b/examples/leptos_axum/target/debug/.fingerprint/regex-fb6df73c4dd5bc61/dep-lib-regex new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/regex-fb6df73c4dd5bc61/dep-lib-regex differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/regex-fb6df73c4dd5bc61/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/regex-fb6df73c4dd5bc61/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/regex-fb6df73c4dd5bc61/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/regex-fb6df73c4dd5bc61/lib-regex b/examples/leptos_axum/target/debug/.fingerprint/regex-fb6df73c4dd5bc61/lib-regex new file mode 100644 index 0000000..e708ebc --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/regex-fb6df73c4dd5bc61/lib-regex @@ -0,0 +1 @@ +81f885c368d66e5e \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/regex-fb6df73c4dd5bc61/lib-regex.json b/examples/leptos_axum/target/debug/.fingerprint/regex-fb6df73c4dd5bc61/lib-regex.json new file mode 100644 index 0000000..4fa71e0 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/regex-fb6df73c4dd5bc61/lib-regex.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"perf\", \"perf-backtrack\", \"perf-cache\", \"perf-dfa\", \"perf-inline\", \"perf-literal\", \"perf-onepass\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","declared_features":"[\"default\", \"logging\", \"pattern\", \"perf\", \"perf-backtrack\", \"perf-cache\", \"perf-dfa\", \"perf-dfa-full\", \"perf-inline\", \"perf-literal\", \"perf-onepass\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unstable\", \"use_std\"]","target":5796931310894148030,"profile":10712413002018579216,"path":8779565663571126209,"deps":[[1731763078628082640,"regex_automata",false,4376878022197097855],[1853952367769002784,"regex_syntax",false,6978565347120833185],[12613788554453945248,"memchr",false,6429642936732799769],[15324871377471570981,"aho_corasick",false,9926103795115178239]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-fb6df73c4dd5bc61/dep-lib-regex","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/regex-syntax-adce5f78d8a76588/dep-lib-regex_syntax b/examples/leptos_axum/target/debug/.fingerprint/regex-syntax-adce5f78d8a76588/dep-lib-regex_syntax new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/regex-syntax-adce5f78d8a76588/dep-lib-regex_syntax differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/regex-syntax-adce5f78d8a76588/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/regex-syntax-adce5f78d8a76588/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/regex-syntax-adce5f78d8a76588/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/regex-syntax-adce5f78d8a76588/lib-regex_syntax b/examples/leptos_axum/target/debug/.fingerprint/regex-syntax-adce5f78d8a76588/lib-regex_syntax new file mode 100644 index 0000000..27d0b6f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/regex-syntax-adce5f78d8a76588/lib-regex_syntax @@ -0,0 +1 @@ +a1e2fc8c35d8d860 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/regex-syntax-adce5f78d8a76588/lib-regex_syntax.json b/examples/leptos_axum/target/debug/.fingerprint/regex-syntax-adce5f78d8a76588/lib-regex_syntax.json new file mode 100644 index 0000000..08f8d3f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/regex-syntax-adce5f78d8a76588/lib-regex_syntax.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","declared_features":"[\"arbitrary\", \"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","target":742186494246220192,"profile":10712413002018579216,"path":1620906117567836149,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/regex-syntax-adce5f78d8a76588/dep-lib-regex_syntax","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rstml-65a0d14437a81434/dep-lib-rstml b/examples/leptos_axum/target/debug/.fingerprint/rstml-65a0d14437a81434/dep-lib-rstml new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/rstml-65a0d14437a81434/dep-lib-rstml differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/rstml-65a0d14437a81434/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/rstml-65a0d14437a81434/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rstml-65a0d14437a81434/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rstml-65a0d14437a81434/lib-rstml b/examples/leptos_axum/target/debug/.fingerprint/rstml-65a0d14437a81434/lib-rstml new file mode 100644 index 0000000..f9fe011 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rstml-65a0d14437a81434/lib-rstml @@ -0,0 +1 @@ +6a7152f8efe9d1f4 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rstml-65a0d14437a81434/lib-rstml.json b/examples/leptos_axum/target/debug/.fingerprint/rstml-65a0d14437a81434/lib-rstml.json new file mode 100644 index 0000000..f45c84b --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rstml-65a0d14437a81434/lib-rstml.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"colors\", \"default\"]","declared_features":"[\"colors\", \"default\", \"rawtext-stable-hack\", \"rawtext-stable-hack-module\"]","target":5998013772539113466,"profile":3827281951033250237,"path":15685904648694878060,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[11742730876020405241,"thiserror",false,106207304768710735],[12700603917654100160,"proc_macro2_diagnostics",false,6446356668997745682],[12972321744096044277,"derive_where",false,3062441198331273291],[15603680801947356975,"syn_derive",false,9416465022512969078],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rstml-65a0d14437a81434/dep-lib-rstml","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rstml-e3b1e4ea0fef1ba1/dep-lib-rstml b/examples/leptos_axum/target/debug/.fingerprint/rstml-e3b1e4ea0fef1ba1/dep-lib-rstml new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/rstml-e3b1e4ea0fef1ba1/dep-lib-rstml differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/rstml-e3b1e4ea0fef1ba1/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/rstml-e3b1e4ea0fef1ba1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rstml-e3b1e4ea0fef1ba1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rstml-e3b1e4ea0fef1ba1/lib-rstml b/examples/leptos_axum/target/debug/.fingerprint/rstml-e3b1e4ea0fef1ba1/lib-rstml new file mode 100644 index 0000000..50cb745 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rstml-e3b1e4ea0fef1ba1/lib-rstml @@ -0,0 +1 @@ +5612d1e15aab5a7c \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rstml-e3b1e4ea0fef1ba1/lib-rstml.json b/examples/leptos_axum/target/debug/.fingerprint/rstml-e3b1e4ea0fef1ba1/lib-rstml.json new file mode 100644 index 0000000..3b4cf72 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rstml-e3b1e4ea0fef1ba1/lib-rstml.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"colors\", \"default\"]","declared_features":"[\"colors\", \"default\", \"rawtext-stable-hack\", \"rawtext-stable-hack-module\"]","target":5998013772539113466,"profile":18203188252903982137,"path":15685904648694878060,"deps":[[8949245912927223590,"quote",false,17645419880070595363],[10190449710562616856,"syn",false,6637575174125347235],[11742730876020405241,"thiserror",false,13956677985622615357],[12700603917654100160,"proc_macro2_diagnostics",false,8528254344942028794],[12972321744096044277,"derive_where",false,3062441198331273291],[15603680801947356975,"syn_derive",false,9416465022512969078],[16346726298725429545,"proc_macro2",false,7987514604498767349]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rstml-e3b1e4ea0fef1ba1/dep-lib-rstml","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustc-hash-f07fb1533a14f5b3/dep-lib-rustc_hash b/examples/leptos_axum/target/debug/.fingerprint/rustc-hash-f07fb1533a14f5b3/dep-lib-rustc_hash new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/rustc-hash-f07fb1533a14f5b3/dep-lib-rustc_hash differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustc-hash-f07fb1533a14f5b3/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/rustc-hash-f07fb1533a14f5b3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rustc-hash-f07fb1533a14f5b3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustc-hash-f07fb1533a14f5b3/lib-rustc_hash b/examples/leptos_axum/target/debug/.fingerprint/rustc-hash-f07fb1533a14f5b3/lib-rustc_hash new file mode 100644 index 0000000..5e25169 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rustc-hash-f07fb1533a14f5b3/lib-rustc_hash @@ -0,0 +1 @@ +a8594fe9b83a4e17 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustc-hash-f07fb1533a14f5b3/lib-rustc_hash.json b/examples/leptos_axum/target/debug/.fingerprint/rustc-hash-f07fb1533a14f5b3/lib-rustc_hash.json new file mode 100644 index 0000000..0463b9f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rustc-hash-f07fb1533a14f5b3/lib-rustc_hash.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"nightly\", \"rand\", \"std\"]","target":9398104387793270977,"profile":2241668132362809309,"path":15659660062317957233,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rustc-hash-f07fb1533a14f5b3/dep-lib-rustc_hash","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustc_version-723d3e5f09fa73a4/dep-lib-rustc_version b/examples/leptos_axum/target/debug/.fingerprint/rustc_version-723d3e5f09fa73a4/dep-lib-rustc_version new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/rustc_version-723d3e5f09fa73a4/dep-lib-rustc_version differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustc_version-723d3e5f09fa73a4/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/rustc_version-723d3e5f09fa73a4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rustc_version-723d3e5f09fa73a4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustc_version-723d3e5f09fa73a4/lib-rustc_version b/examples/leptos_axum/target/debug/.fingerprint/rustc_version-723d3e5f09fa73a4/lib-rustc_version new file mode 100644 index 0000000..6c41f70 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rustc_version-723d3e5f09fa73a4/lib-rustc_version @@ -0,0 +1 @@ +e1e209c3f85ac074 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustc_version-723d3e5f09fa73a4/lib-rustc_version.json b/examples/leptos_axum/target/debug/.fingerprint/rustc_version-723d3e5f09fa73a4/lib-rustc_version.json new file mode 100644 index 0000000..54333fe --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rustc_version-723d3e5f09fa73a4/lib-rustc_version.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":18294139061885094686,"profile":2225463790103693989,"path":15296566087947500512,"deps":[[9680020106200215617,"semver",false,10955532683410088017]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rustc_version-723d3e5f09fa73a4/dep-lib-rustc_version","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustversion-313fded5362961f8/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/rustversion-313fded5362961f8/run-build-script-build-script-build new file mode 100644 index 0000000..cf7c6e8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rustversion-313fded5362961f8/run-build-script-build-script-build @@ -0,0 +1 @@ +8b04634be9b16af4 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustversion-313fded5362961f8/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/rustversion-313fded5362961f8/run-build-script-build-script-build.json new file mode 100644 index 0000000..37f23b8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rustversion-313fded5362961f8/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[16991438365634268121,"build_script_build",false,2569837855207845985]],"local":[{"RerunIfChanged":{"output":"debug/build/rustversion-313fded5362961f8/output","paths":["build/build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustversion-b0526d303ea2073d/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/rustversion-b0526d303ea2073d/build-script-build-script-build new file mode 100644 index 0000000..6426040 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rustversion-b0526d303ea2073d/build-script-build-script-build @@ -0,0 +1 @@ +61f003eae9e5a923 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustversion-b0526d303ea2073d/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/rustversion-b0526d303ea2073d/build-script-build-script-build.json new file mode 100644 index 0000000..4e4e33e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rustversion-b0526d303ea2073d/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":17883862002600103897,"profile":2225463790103693989,"path":11697632456638919849,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rustversion-b0526d303ea2073d/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustversion-b0526d303ea2073d/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/rustversion-b0526d303ea2073d/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/rustversion-b0526d303ea2073d/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustversion-b0526d303ea2073d/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/rustversion-b0526d303ea2073d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rustversion-b0526d303ea2073d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustversion-d7df6ce16ce770b8/dep-lib-rustversion b/examples/leptos_axum/target/debug/.fingerprint/rustversion-d7df6ce16ce770b8/dep-lib-rustversion new file mode 100644 index 0000000..6eb559a Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/rustversion-d7df6ce16ce770b8/dep-lib-rustversion differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustversion-d7df6ce16ce770b8/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/rustversion-d7df6ce16ce770b8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rustversion-d7df6ce16ce770b8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustversion-d7df6ce16ce770b8/lib-rustversion b/examples/leptos_axum/target/debug/.fingerprint/rustversion-d7df6ce16ce770b8/lib-rustversion new file mode 100644 index 0000000..8412a73 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rustversion-d7df6ce16ce770b8/lib-rustversion @@ -0,0 +1 @@ +c66363bf485f87be \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/rustversion-d7df6ce16ce770b8/lib-rustversion.json b/examples/leptos_axum/target/debug/.fingerprint/rustversion-d7df6ce16ce770b8/lib-rustversion.json new file mode 100644 index 0000000..c8b13fd --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/rustversion-d7df6ce16ce770b8/lib-rustversion.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":179193587114931863,"profile":2225463790103693989,"path":18299780302889573548,"deps":[[16991438365634268121,"build_script_build",false,17612084908336022667]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/rustversion-d7df6ce16ce770b8/dep-lib-rustversion","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/same-file-34186455c5787638/dep-lib-same_file b/examples/leptos_axum/target/debug/.fingerprint/same-file-34186455c5787638/dep-lib-same_file new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/same-file-34186455c5787638/dep-lib-same_file differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/same-file-34186455c5787638/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/same-file-34186455c5787638/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/same-file-34186455c5787638/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/same-file-34186455c5787638/lib-same_file b/examples/leptos_axum/target/debug/.fingerprint/same-file-34186455c5787638/lib-same_file new file mode 100644 index 0000000..9170fe8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/same-file-34186455c5787638/lib-same_file @@ -0,0 +1 @@ +b1b3e3eafee9ddf3 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/same-file-34186455c5787638/lib-same_file.json b/examples/leptos_axum/target/debug/.fingerprint/same-file-34186455c5787638/lib-same_file.json new file mode 100644 index 0000000..dd1616f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/same-file-34186455c5787638/lib-same_file.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":5850851708384281287,"profile":2241668132362809309,"path":15504450676248735862,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/same-file-34186455c5787638/dep-lib-same_file","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/same-file-9be869ba4fbf1608/dep-lib-same_file b/examples/leptos_axum/target/debug/.fingerprint/same-file-9be869ba4fbf1608/dep-lib-same_file new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/same-file-9be869ba4fbf1608/dep-lib-same_file differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/same-file-9be869ba4fbf1608/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/same-file-9be869ba4fbf1608/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/same-file-9be869ba4fbf1608/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/same-file-9be869ba4fbf1608/lib-same_file b/examples/leptos_axum/target/debug/.fingerprint/same-file-9be869ba4fbf1608/lib-same_file new file mode 100644 index 0000000..7086394 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/same-file-9be869ba4fbf1608/lib-same_file @@ -0,0 +1 @@ +bc938589fe3df770 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/same-file-9be869ba4fbf1608/lib-same_file.json b/examples/leptos_axum/target/debug/.fingerprint/same-file-9be869ba4fbf1608/lib-same_file.json new file mode 100644 index 0000000..c3232e4 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/same-file-9be869ba4fbf1608/lib-same_file.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":5850851708384281287,"profile":2225463790103693989,"path":15504450676248735862,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/same-file-9be869ba4fbf1608/dep-lib-same_file","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/semver-de5fcdb836bb7c55/dep-lib-semver b/examples/leptos_axum/target/debug/.fingerprint/semver-de5fcdb836bb7c55/dep-lib-semver new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/semver-de5fcdb836bb7c55/dep-lib-semver differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/semver-de5fcdb836bb7c55/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/semver-de5fcdb836bb7c55/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/semver-de5fcdb836bb7c55/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/semver-de5fcdb836bb7c55/lib-semver b/examples/leptos_axum/target/debug/.fingerprint/semver-de5fcdb836bb7c55/lib-semver new file mode 100644 index 0000000..d16bc29 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/semver-de5fcdb836bb7c55/lib-semver @@ -0,0 +1 @@ +5120d73feede0998 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/semver-de5fcdb836bb7c55/lib-semver.json b/examples/leptos_axum/target/debug/.fingerprint/semver-de5fcdb836bb7c55/lib-semver.json new file mode 100644 index 0000000..dc9a7c4 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/semver-de5fcdb836bb7c55/lib-semver.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"std\"]","target":12174432953422647384,"profile":2225463790103693989,"path":13749537415189546403,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/semver-de5fcdb836bb7c55/dep-lib-semver","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/send_wrapper-8047a4ca9c49e346/dep-lib-send_wrapper b/examples/leptos_axum/target/debug/.fingerprint/send_wrapper-8047a4ca9c49e346/dep-lib-send_wrapper new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/send_wrapper-8047a4ca9c49e346/dep-lib-send_wrapper differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/send_wrapper-8047a4ca9c49e346/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/send_wrapper-8047a4ca9c49e346/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/send_wrapper-8047a4ca9c49e346/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/send_wrapper-8047a4ca9c49e346/lib-send_wrapper b/examples/leptos_axum/target/debug/.fingerprint/send_wrapper-8047a4ca9c49e346/lib-send_wrapper new file mode 100644 index 0000000..292c50e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/send_wrapper-8047a4ca9c49e346/lib-send_wrapper @@ -0,0 +1 @@ +7e988a3d922ac991 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/send_wrapper-8047a4ca9c49e346/lib-send_wrapper.json b/examples/leptos_axum/target/debug/.fingerprint/send_wrapper-8047a4ca9c49e346/lib-send_wrapper.json new file mode 100644 index 0000000..ac64357 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/send_wrapper-8047a4ca9c49e346/lib-send_wrapper.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"futures\", \"futures-core\"]","declared_features":"[\"futures\", \"futures-core\"]","target":18399133082607328578,"profile":2241668132362809309,"path":4271853393047899336,"deps":[[15759286673077216516,"futures_core",false,17521305048918112335]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/send_wrapper-8047a4ca9c49e346/dep-lib-send_wrapper","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-047fb28ec31c7b7d/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/serde-047fb28ec31c7b7d/build-script-build-script-build new file mode 100644 index 0000000..c7b3785 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde-047fb28ec31c7b7d/build-script-build-script-build @@ -0,0 +1 @@ +5e4bc60bf995a849 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-047fb28ec31c7b7d/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/serde-047fb28ec31c7b7d/build-script-build-script-build.json new file mode 100644 index 0000000..4c088c1 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde-047fb28ec31c7b7d/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"derive\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":2225463790103693989,"path":6848595033107205214,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-047fb28ec31c7b7d/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-047fb28ec31c7b7d/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/serde-047fb28ec31c7b7d/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/serde-047fb28ec31c7b7d/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-047fb28ec31c7b7d/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/serde-047fb28ec31c7b7d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde-047fb28ec31c7b7d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-36b596088804c786/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/serde-36b596088804c786/run-build-script-build-script-build new file mode 100644 index 0000000..b3d2d69 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde-36b596088804c786/run-build-script-build-script-build @@ -0,0 +1 @@ +3786e2f6db917c86 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-36b596088804c786/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/serde-36b596088804c786/run-build-script-build-script-build.json new file mode 100644 index 0000000..36135f3 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde-36b596088804c786/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6557439603276904804,"build_script_build",false,5307657057733069662]],"local":[{"RerunIfChanged":{"output":"debug/build/serde-36b596088804c786/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-4c0952895b4988f3/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/serde-4c0952895b4988f3/run-build-script-build-script-build new file mode 100644 index 0000000..94c53fd --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde-4c0952895b4988f3/run-build-script-build-script-build @@ -0,0 +1 @@ +737400193940bfe2 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-4c0952895b4988f3/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/serde-4c0952895b4988f3/run-build-script-build-script-build.json new file mode 100644 index 0000000..afccdd7 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde-4c0952895b4988f3/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6557439603276904804,"build_script_build",false,17667520915075949179]],"local":[{"RerunIfChanged":{"output":"debug/build/serde-4c0952895b4988f3/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-6a3863188a9f9a41/dep-lib-serde b/examples/leptos_axum/target/debug/.fingerprint/serde-6a3863188a9f9a41/dep-lib-serde new file mode 100644 index 0000000..4087d82 Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/serde-6a3863188a9f9a41/dep-lib-serde differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-6a3863188a9f9a41/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/serde-6a3863188a9f9a41/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde-6a3863188a9f9a41/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-6a3863188a9f9a41/lib-serde b/examples/leptos_axum/target/debug/.fingerprint/serde-6a3863188a9f9a41/lib-serde new file mode 100644 index 0000000..472fe79 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde-6a3863188a9f9a41/lib-serde @@ -0,0 +1 @@ +4106530a13cf142a \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-6a3863188a9f9a41/lib-serde.json b/examples/leptos_axum/target/debug/.fingerprint/serde-6a3863188a9f9a41/lib-serde.json new file mode 100644 index 0000000..21ce2ea --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde-6a3863188a9f9a41/lib-serde.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"derive\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":11327258112168116673,"profile":2225463790103693989,"path":13370965331263541452,"deps":[[6557439603276904804,"build_script_build",false,9690780872120370743],[11029742160753049355,"serde_core",false,8432717800565946768],[13312204359551525516,"serde_derive",false,3934919022839439570]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-6a3863188a9f9a41/dep-lib-serde","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-8ace3a4027742868/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/serde-8ace3a4027742868/build-script-build-script-build new file mode 100644 index 0000000..4b2ed3d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde-8ace3a4027742868/build-script-build-script-build @@ -0,0 +1 @@ +7be2e26caaa42ff5 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-8ace3a4027742868/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/serde-8ace3a4027742868/build-script-build-script-build.json new file mode 100644 index 0000000..ef70c23 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde-8ace3a4027742868/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"derive\", \"rc\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":2225463790103693989,"path":6848595033107205214,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-8ace3a4027742868/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-8ace3a4027742868/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/serde-8ace3a4027742868/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/serde-8ace3a4027742868/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-8ace3a4027742868/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/serde-8ace3a4027742868/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde-8ace3a4027742868/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-ccb6b0576c8ee876/dep-lib-serde b/examples/leptos_axum/target/debug/.fingerprint/serde-ccb6b0576c8ee876/dep-lib-serde new file mode 100644 index 0000000..ddf4964 Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/serde-ccb6b0576c8ee876/dep-lib-serde differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-ccb6b0576c8ee876/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/serde-ccb6b0576c8ee876/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde-ccb6b0576c8ee876/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-ccb6b0576c8ee876/lib-serde b/examples/leptos_axum/target/debug/.fingerprint/serde-ccb6b0576c8ee876/lib-serde new file mode 100644 index 0000000..c5ded84 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde-ccb6b0576c8ee876/lib-serde @@ -0,0 +1 @@ +4cc9884f4c7f2909 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde-ccb6b0576c8ee876/lib-serde.json b/examples/leptos_axum/target/debug/.fingerprint/serde-ccb6b0576c8ee876/lib-serde.json new file mode 100644 index 0000000..2f9ee6e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde-ccb6b0576c8ee876/lib-serde.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"derive\", \"rc\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":11327258112168116673,"profile":2241668132362809309,"path":13370965331263541452,"deps":[[6557439603276904804,"build_script_build",false,16338848587100222579],[11029742160753049355,"serde_core",false,10952133628660192943],[13312204359551525516,"serde_derive",false,3934919022839439570]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde-ccb6b0576c8ee876/dep-lib-serde","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-45b426a29b3b822a/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/serde_core-45b426a29b3b822a/run-build-script-build-script-build new file mode 100644 index 0000000..ba3d3ae --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_core-45b426a29b3b822a/run-build-script-build-script-build @@ -0,0 +1 @@ +6f1072018bc50f19 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-45b426a29b3b822a/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/serde_core-45b426a29b3b822a/run-build-script-build-script-build.json new file mode 100644 index 0000000..af0d474 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_core-45b426a29b3b822a/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[11029742160753049355,"build_script_build",false,3660419295914524307]],"local":[{"RerunIfChanged":{"output":"debug/build/serde_core-45b426a29b3b822a/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-557806e23fe5ad30/dep-lib-serde_core b/examples/leptos_axum/target/debug/.fingerprint/serde_core-557806e23fe5ad30/dep-lib-serde_core new file mode 100644 index 0000000..ea88068 Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/serde_core-557806e23fe5ad30/dep-lib-serde_core differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-557806e23fe5ad30/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/serde_core-557806e23fe5ad30/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_core-557806e23fe5ad30/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-557806e23fe5ad30/lib-serde_core b/examples/leptos_axum/target/debug/.fingerprint/serde_core-557806e23fe5ad30/lib-serde_core new file mode 100644 index 0000000..9ffa434 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_core-557806e23fe5ad30/lib-serde_core @@ -0,0 +1 @@ +af96e62482cbfd97 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-557806e23fe5ad30/lib-serde_core.json b/examples/leptos_axum/target/debug/.fingerprint/serde_core-557806e23fe5ad30/lib-serde_core.json new file mode 100644 index 0000000..ce34e81 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_core-557806e23fe5ad30/lib-serde_core.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":6810695588070812737,"profile":2241668132362809309,"path":14498267722440875556,"deps":[[11029742160753049355,"build_script_build",false,12357291243584730816]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_core-557806e23fe5ad30/dep-lib-serde_core","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-5d6e9002e9317d2c/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/serde_core-5d6e9002e9317d2c/build-script-build-script-build new file mode 100644 index 0000000..a3e3013 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_core-5d6e9002e9317d2c/build-script-build-script-build @@ -0,0 +1 @@ +04fe8013c48a7809 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-5d6e9002e9317d2c/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/serde_core-5d6e9002e9317d2c/build-script-build-script-build.json new file mode 100644 index 0000000..040ad90 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_core-5d6e9002e9317d2c/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":2225463790103693989,"path":9660380766025721039,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_core-5d6e9002e9317d2c/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-5d6e9002e9317d2c/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/serde_core-5d6e9002e9317d2c/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/serde_core-5d6e9002e9317d2c/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-5d6e9002e9317d2c/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/serde_core-5d6e9002e9317d2c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_core-5d6e9002e9317d2c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-8c939b8b4c20c180/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/serde_core-8c939b8b4c20c180/run-build-script-build-script-build new file mode 100644 index 0000000..c8512f0 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_core-8c939b8b4c20c180/run-build-script-build-script-build @@ -0,0 +1 @@ +c0b6e90feaea7dab \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-8c939b8b4c20c180/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/serde_core-8c939b8b4c20c180/run-build-script-build-script-build.json new file mode 100644 index 0000000..a4bb913 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_core-8c939b8b4c20c180/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[11029742160753049355,"build_script_build",false,682447918292073988]],"local":[{"RerunIfChanged":{"output":"debug/build/serde_core-8c939b8b4c20c180/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-c1d5c6fac1998173/dep-lib-serde_core b/examples/leptos_axum/target/debug/.fingerprint/serde_core-c1d5c6fac1998173/dep-lib-serde_core new file mode 100644 index 0000000..54d6a95 Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/serde_core-c1d5c6fac1998173/dep-lib-serde_core differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-c1d5c6fac1998173/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/serde_core-c1d5c6fac1998173/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_core-c1d5c6fac1998173/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-c1d5c6fac1998173/lib-serde_core b/examples/leptos_axum/target/debug/.fingerprint/serde_core-c1d5c6fac1998173/lib-serde_core new file mode 100644 index 0000000..bdfcef2 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_core-c1d5c6fac1998173/lib-serde_core @@ -0,0 +1 @@ +90b9d84129080775 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-c1d5c6fac1998173/lib-serde_core.json b/examples/leptos_axum/target/debug/.fingerprint/serde_core-c1d5c6fac1998173/lib-serde_core.json new file mode 100644 index 0000000..f865ca5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_core-c1d5c6fac1998173/lib-serde_core.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":6810695588070812737,"profile":2225463790103693989,"path":14498267722440875556,"deps":[[11029742160753049355,"build_script_build",false,1805879176414236783]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_core-c1d5c6fac1998173/dep-lib-serde_core","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-f2ae637853f690ee/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/serde_core-f2ae637853f690ee/build-script-build-script-build new file mode 100644 index 0000000..6d91eb1 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_core-f2ae637853f690ee/build-script-build-script-build @@ -0,0 +1 @@ +937ef8b5f46bcc32 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-f2ae637853f690ee/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/serde_core-f2ae637853f690ee/build-script-build-script-build.json new file mode 100644 index 0000000..d5e8eb2 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_core-f2ae637853f690ee/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":2225463790103693989,"path":9660380766025721039,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_core-f2ae637853f690ee/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-f2ae637853f690ee/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/serde_core-f2ae637853f690ee/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/serde_core-f2ae637853f690ee/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_core-f2ae637853f690ee/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/serde_core-f2ae637853f690ee/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_core-f2ae637853f690ee/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_derive-b2e6dbfaa2f4e984/dep-lib-serde_derive b/examples/leptos_axum/target/debug/.fingerprint/serde_derive-b2e6dbfaa2f4e984/dep-lib-serde_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/serde_derive-b2e6dbfaa2f4e984/dep-lib-serde_derive differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_derive-b2e6dbfaa2f4e984/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/serde_derive-b2e6dbfaa2f4e984/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_derive-b2e6dbfaa2f4e984/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_derive-b2e6dbfaa2f4e984/lib-serde_derive b/examples/leptos_axum/target/debug/.fingerprint/serde_derive-b2e6dbfaa2f4e984/lib-serde_derive new file mode 100644 index 0000000..e502cee --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_derive-b2e6dbfaa2f4e984/lib-serde_derive @@ -0,0 +1 @@ +d2a045d000a49b36 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_derive-b2e6dbfaa2f4e984/lib-serde_derive.json b/examples/leptos_axum/target/debug/.fingerprint/serde_derive-b2e6dbfaa2f4e984/lib-serde_derive.json new file mode 100644 index 0000000..6c042fd --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_derive-b2e6dbfaa2f4e984/lib-serde_derive.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\"]","declared_features":"[\"default\", \"deserialize_in_place\"]","target":13076129734743110817,"profile":2225463790103693989,"path":2446871888254218447,"deps":[[694259242500224931,"syn",false,8755383116263869573],[8949245912927223590,"quote",false,14896968245106632325],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_derive-b2e6dbfaa2f4e984/dep-lib-serde_derive","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_json-1b15c588822affbf/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/serde_json-1b15c588822affbf/run-build-script-build-script-build new file mode 100644 index 0000000..fc02d91 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_json-1b15c588822affbf/run-build-script-build-script-build @@ -0,0 +1 @@ +075e3651c925c761 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_json-1b15c588822affbf/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/serde_json-1b15c588822affbf/run-build-script-build-script-build.json new file mode 100644 index 0000000..5d72559 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_json-1b15c588822affbf/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[5330460842384404171,"build_script_build",false,11057650782325443196]],"local":[{"RerunIfChanged":{"output":"debug/build/serde_json-1b15c588822affbf/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_json-2c0a994303fe8e5c/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/serde_json-2c0a994303fe8e5c/build-script-build-script-build new file mode 100644 index 0000000..1fb2f68 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_json-2c0a994303fe8e5c/build-script-build-script-build @@ -0,0 +1 @@ +7c0ad4f2ccaa7499 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_json-2c0a994303fe8e5c/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/serde_json-2c0a994303fe8e5c/build-script-build-script-build.json new file mode 100644 index 0000000..ddb44b0 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_json-2c0a994303fe8e5c/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"arbitrary_precision\", \"default\", \"float_roundtrip\", \"indexmap\", \"preserve_order\", \"raw_value\", \"std\", \"unbounded_depth\"]","target":5408242616063297496,"profile":2225463790103693989,"path":4250517711140805704,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_json-2c0a994303fe8e5c/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_json-2c0a994303fe8e5c/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/serde_json-2c0a994303fe8e5c/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/serde_json-2c0a994303fe8e5c/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_json-2c0a994303fe8e5c/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/serde_json-2c0a994303fe8e5c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_json-2c0a994303fe8e5c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_json-87aaaa0780a68507/dep-lib-serde_json b/examples/leptos_axum/target/debug/.fingerprint/serde_json-87aaaa0780a68507/dep-lib-serde_json new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/serde_json-87aaaa0780a68507/dep-lib-serde_json differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_json-87aaaa0780a68507/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/serde_json-87aaaa0780a68507/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_json-87aaaa0780a68507/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_json-87aaaa0780a68507/lib-serde_json b/examples/leptos_axum/target/debug/.fingerprint/serde_json-87aaaa0780a68507/lib-serde_json new file mode 100644 index 0000000..929c926 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_json-87aaaa0780a68507/lib-serde_json @@ -0,0 +1 @@ +dbedaee29e9dc921 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_json-87aaaa0780a68507/lib-serde_json.json b/examples/leptos_axum/target/debug/.fingerprint/serde_json-87aaaa0780a68507/lib-serde_json.json new file mode 100644 index 0000000..d504db8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_json-87aaaa0780a68507/lib-serde_json.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"arbitrary_precision\", \"default\", \"float_roundtrip\", \"indexmap\", \"preserve_order\", \"raw_value\", \"std\", \"unbounded_depth\"]","target":9592559880233824070,"profile":2241668132362809309,"path":2504783595860532033,"deps":[[5330460842384404171,"build_script_build",false,7045641688625602055],[5532778797167691009,"itoa",false,728509330440049395],[11029742160753049355,"serde_core",false,10952133628660192943],[12613788554453945248,"memchr",false,6429642936732799769],[16226529040278277557,"zmij",false,7168824113197197184]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_json-87aaaa0780a68507/dep-lib-serde_json","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_qs-39dd419477d9c823/dep-lib-serde_qs b/examples/leptos_axum/target/debug/.fingerprint/serde_qs-39dd419477d9c823/dep-lib-serde_qs new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/serde_qs-39dd419477d9c823/dep-lib-serde_qs differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_qs-39dd419477d9c823/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/serde_qs-39dd419477d9c823/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_qs-39dd419477d9c823/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_qs-39dd419477d9c823/lib-serde_qs b/examples/leptos_axum/target/debug/.fingerprint/serde_qs-39dd419477d9c823/lib-serde_qs new file mode 100644 index 0000000..e391b67 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_qs-39dd419477d9c823/lib-serde_qs @@ -0,0 +1 @@ +c37e5632a97bec1e \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_qs-39dd419477d9c823/lib-serde_qs.json b/examples/leptos_axum/target/debug/.fingerprint/serde_qs-39dd419477d9c823/lib-serde_qs.json new file mode 100644 index 0000000..c1d6380 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_qs-39dd419477d9c823/lib-serde_qs.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\"]","declared_features":"[\"actix\", \"actix-web3\", \"actix-web4\", \"actix2\", \"actix3\", \"actix4\", \"axum\", \"axum-framework\", \"default\", \"futures\", \"indexmap\", \"tracing\", \"warp\", \"warp-framework\"]","target":6030159577319376760,"profile":2241668132362809309,"path":2714233084373826428,"deps":[[6557439603276904804,"serde",false,660198786115094860],[6803352382179706244,"percent_encoding",false,17460257087533955988],[11742730876020405241,"thiserror",false,13956677985622615357]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_qs-39dd419477d9c823/dep-lib-serde_qs","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_spanned-603cfcb9b82145f3/dep-lib-serde_spanned b/examples/leptos_axum/target/debug/.fingerprint/serde_spanned-603cfcb9b82145f3/dep-lib-serde_spanned new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/serde_spanned-603cfcb9b82145f3/dep-lib-serde_spanned differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_spanned-603cfcb9b82145f3/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/serde_spanned-603cfcb9b82145f3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_spanned-603cfcb9b82145f3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_spanned-603cfcb9b82145f3/lib-serde_spanned b/examples/leptos_axum/target/debug/.fingerprint/serde_spanned-603cfcb9b82145f3/lib-serde_spanned new file mode 100644 index 0000000..7eb104e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_spanned-603cfcb9b82145f3/lib-serde_spanned @@ -0,0 +1 @@ +fb6fee277649faba \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/serde_spanned-603cfcb9b82145f3/lib-serde_spanned.json b/examples/leptos_axum/target/debug/.fingerprint/serde_spanned-603cfcb9b82145f3/lib-serde_spanned.json new file mode 100644 index 0000000..2376044 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/serde_spanned-603cfcb9b82145f3/lib-serde_spanned.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"serde\"]","declared_features":"[\"alloc\", \"default\", \"serde\", \"std\"]","target":8822758420524224047,"profile":12825874298506944902,"path":12812205737208351353,"deps":[[11029742160753049355,"serde_core",false,10952133628660192943]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/serde_spanned-603cfcb9b82145f3/dep-lib-serde_spanned","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn-3ae6298e70a95fba/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/server_fn-3ae6298e70a95fba/build-script-build-script-build new file mode 100644 index 0000000..8407476 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn-3ae6298e70a95fba/build-script-build-script-build @@ -0,0 +1 @@ +ad2d8319f610f820 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn-3ae6298e70a95fba/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/server_fn-3ae6298e70a95fba/build-script-build-script-build.json new file mode 100644 index 0000000..c609d25 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn-3ae6298e70a95fba/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"browser\", \"form-redirects\"]","declared_features":"[\"actix\", \"actix-no-default\", \"axum\", \"axum-no-default\", \"bitcode\", \"bitcode-serde\", \"browser\", \"cbor\", \"default-tls\", \"form-redirects\", \"generic\", \"inventory\", \"msgpack\", \"multipart\", \"postcard\", \"reqwest\", \"rkyv\", \"rustls\", \"serde-lite\", \"ssr\"]","target":5408242616063297496,"profile":11313680297347010590,"path":15115654776971506042,"deps":[[8576480473721236041,"rustc_version",false,8412824128398680801]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/server_fn-3ae6298e70a95fba/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn-3ae6298e70a95fba/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/server_fn-3ae6298e70a95fba/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/server_fn-3ae6298e70a95fba/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn-3ae6298e70a95fba/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/server_fn-3ae6298e70a95fba/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn-3ae6298e70a95fba/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn-4c4d5ac1bcc4d43c/dep-lib-server_fn b/examples/leptos_axum/target/debug/.fingerprint/server_fn-4c4d5ac1bcc4d43c/dep-lib-server_fn new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/server_fn-4c4d5ac1bcc4d43c/dep-lib-server_fn differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn-4c4d5ac1bcc4d43c/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/server_fn-4c4d5ac1bcc4d43c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn-4c4d5ac1bcc4d43c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn-4c4d5ac1bcc4d43c/lib-server_fn b/examples/leptos_axum/target/debug/.fingerprint/server_fn-4c4d5ac1bcc4d43c/lib-server_fn new file mode 100644 index 0000000..1001843 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn-4c4d5ac1bcc4d43c/lib-server_fn @@ -0,0 +1 @@ +eaf95d6158408307 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn-4c4d5ac1bcc4d43c/lib-server_fn.json b/examples/leptos_axum/target/debug/.fingerprint/server_fn-4c4d5ac1bcc4d43c/lib-server_fn.json new file mode 100644 index 0000000..b562e65 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn-4c4d5ac1bcc4d43c/lib-server_fn.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"browser\", \"form-redirects\"]","declared_features":"[\"actix\", \"actix-no-default\", \"axum\", \"axum-no-default\", \"bitcode\", \"bitcode-serde\", \"browser\", \"cbor\", \"default-tls\", \"form-redirects\", \"generic\", \"inventory\", \"msgpack\", \"multipart\", \"postcard\", \"reqwest\", \"rkyv\", \"rustls\", \"serde-lite\", \"ssr\"]","target":7988132781574096919,"profile":8468571603947006409,"path":5616184571131710518,"deps":[[307773296169197729,"serde_qs",false,2228291882265771715],[1082487212632778004,"server_fn_macro_default",false,6532920287791903586],[1528297757488249563,"url",false,10978026625688137635],[2251399859588827949,"pin_project_lite",false,4667605112942415018],[2693190314680930293,"throw_error",false,5073458601212145196],[3146308150807269233,"or_poisoned",false,12685221538892035093],[3383396399621440671,"const_format",false,16126265523680241629],[4929732771770652319,"xxhash_rust",false,7051987815683913675],[5098792620852445434,"wasm_bindgen",false,6650567199088231542],[5330460842384404171,"serde_json",false,2434650379303972315],[6557439603276904804,"serde",false,660198786115094860],[6692650170110433251,"futures",false,8883793258988323716],[8485763786069017691,"send_wrapper",false,10504974413404477566],[11742730876020405241,"thiserror",false,13956677985622615357],[11926622812581095017,"bytes",false,17162365318241494045],[12328341851100645683,"http",false,13193275052002188385],[12744280046734151787,"gloo_net",false,5991794464624345911],[13077212702700853852,"base64",false,1770589198343330789],[13632037821268773786,"const_str",false,7515319265965488590],[16773483497834534941,"wasm_bindgen_futures",false,4356650302939630260],[16991438365634268121,"rustversion",false,13729046755115492294],[17001154585428963880,"web_sys",false,15020542606979008053],[17348803795064005856,"wasm_streams",false,1147473036051040645],[17679330592366598538,"js_sys",false,8592139079836159418],[18264618153608266588,"build_script_build",false,545855502714045950]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/server_fn-4c4d5ac1bcc4d43c/dep-lib-server_fn","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn-f139628b0d90e05e/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/server_fn-f139628b0d90e05e/run-build-script-build-script-build new file mode 100644 index 0000000..f3f8837 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn-f139628b0d90e05e/run-build-script-build-script-build @@ -0,0 +1 @@ +fe85f609b0449307 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn-f139628b0d90e05e/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/server_fn-f139628b0d90e05e/run-build-script-build-script-build.json new file mode 100644 index 0000000..b7f0558 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn-f139628b0d90e05e/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[18264618153608266588,"build_script_build",false,2375667452613963181]],"local":[{"Precalculated":"0.8.13"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-6f25d9de66578ee1/dep-lib-server_fn_macro b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-6f25d9de66578ee1/dep-lib-server_fn_macro new file mode 100644 index 0000000..484ee2c Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-6f25d9de66578ee1/dep-lib-server_fn_macro differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-6f25d9de66578ee1/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-6f25d9de66578ee1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-6f25d9de66578ee1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-6f25d9de66578ee1/lib-server_fn_macro b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-6f25d9de66578ee1/lib-server_fn_macro new file mode 100644 index 0000000..6547518 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-6f25d9de66578ee1/lib-server_fn_macro @@ -0,0 +1 @@ +a7a3d92c3308cca5 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-6f25d9de66578ee1/lib-server_fn_macro.json b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-6f25d9de66578ee1/lib-server_fn_macro.json new file mode 100644 index 0000000..2357d90 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-6f25d9de66578ee1/lib-server_fn_macro.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"actix\", \"axum\", \"generic\", \"nightly\", \"reqwest\", \"ssr\"]","target":10940785406306488559,"profile":18049487071027133023,"path":4753235204641557498,"deps":[[3383396399621440671,"const_format",false,17296693797974354926],[4929732771770652319,"xxhash_rust",false,15798680041343737183],[6811835196269279972,"build_script_build",false,18217842497739539402],[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[16346726298725429545,"proc_macro2",false,3721553344835398169],[17865014727662549706,"convert_case",false,10278804124439765272]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/server_fn_macro-6f25d9de66578ee1/dep-lib-server_fn_macro","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-d8468f1f77dec8ea/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-d8468f1f77dec8ea/build-script-build-script-build new file mode 100644 index 0000000..bd28cd5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-d8468f1f77dec8ea/build-script-build-script-build @@ -0,0 +1 @@ +bbed80bdb64abf51 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-d8468f1f77dec8ea/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-d8468f1f77dec8ea/build-script-build-script-build.json new file mode 100644 index 0000000..3a8c7e8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-d8468f1f77dec8ea/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"actix\", \"axum\", \"generic\", \"nightly\", \"reqwest\", \"ssr\"]","target":5408242616063297496,"profile":18049487071027133023,"path":15900170744207983259,"deps":[[8576480473721236041,"rustc_version",false,8412824128398680801]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/server_fn_macro-d8468f1f77dec8ea/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-d8468f1f77dec8ea/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-d8468f1f77dec8ea/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-d8468f1f77dec8ea/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-d8468f1f77dec8ea/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-d8468f1f77dec8ea/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-d8468f1f77dec8ea/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-e70729b978250205/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-e70729b978250205/run-build-script-build-script-build new file mode 100644 index 0000000..bb269d5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-e70729b978250205/run-build-script-build-script-build @@ -0,0 +1 @@ +cac3c7bb3ac7d2fc \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-e70729b978250205/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-e70729b978250205/run-build-script-build-script-build.json new file mode 100644 index 0000000..886afaa --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro-e70729b978250205/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6811835196269279972,"build_script_build",false,5890508986347744699]],"local":[{"Precalculated":"0.8.10"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro_default-38c732b2495e1c7a/dep-lib-server_fn_macro_default b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro_default-38c732b2495e1c7a/dep-lib-server_fn_macro_default new file mode 100644 index 0000000..265142b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro_default-38c732b2495e1c7a/dep-lib-server_fn_macro_default differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro_default-38c732b2495e1c7a/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro_default-38c732b2495e1c7a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro_default-38c732b2495e1c7a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro_default-38c732b2495e1c7a/lib-server_fn_macro_default b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro_default-38c732b2495e1c7a/lib-server_fn_macro_default new file mode 100644 index 0000000..42cd545 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro_default-38c732b2495e1c7a/lib-server_fn_macro_default @@ -0,0 +1 @@ +6273c78b6398a95a \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro_default-38c732b2495e1c7a/lib-server_fn_macro_default.json b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro_default-38c732b2495e1c7a/lib-server_fn_macro_default.json new file mode 100644 index 0000000..1e4e647 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/server_fn_macro_default-38c732b2495e1c7a/lib-server_fn_macro_default.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"actix\", \"axum\", \"nightly\", \"ssr\"]","target":12982808969515791387,"profile":2225463790103693989,"path":595677365451797440,"deps":[[6811835196269279972,"server_fn_macro",false,11946932927395898279],[10190449710562616856,"syn",false,6080269753824482509]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/server_fn_macro_default-38c732b2495e1c7a/dep-lib-server_fn_macro_default","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/sha2-37e5ff72d8ba56ca/dep-lib-sha2 b/examples/leptos_axum/target/debug/.fingerprint/sha2-37e5ff72d8ba56ca/dep-lib-sha2 new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/sha2-37e5ff72d8ba56ca/dep-lib-sha2 differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/sha2-37e5ff72d8ba56ca/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/sha2-37e5ff72d8ba56ca/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/sha2-37e5ff72d8ba56ca/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/sha2-37e5ff72d8ba56ca/lib-sha2 b/examples/leptos_axum/target/debug/.fingerprint/sha2-37e5ff72d8ba56ca/lib-sha2 new file mode 100644 index 0000000..624b389 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/sha2-37e5ff72d8ba56ca/lib-sha2 @@ -0,0 +1 @@ +db2b0ed1badc6707 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/sha2-37e5ff72d8ba56ca/lib-sha2.json b/examples/leptos_axum/target/debug/.fingerprint/sha2-37e5ff72d8ba56ca/lib-sha2.json new file mode 100644 index 0000000..aebabc6 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/sha2-37e5ff72d8ba56ca/lib-sha2.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"asm\", \"asm-aarch64\", \"compress\", \"default\", \"force-soft\", \"force-soft-compact\", \"loongarch64_asm\", \"oid\", \"sha2-asm\", \"std\"]","target":9593554856174113207,"profile":2225463790103693989,"path":6544511610665787579,"deps":[[7667230146095136825,"cfg_if",false,1891375480105173425],[17475753849556516473,"digest",false,11329973732081968237],[17620084158052398167,"cpufeatures",false,9723640555879632646]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/sha2-37e5ff72d8ba56ca/dep-lib-sha2","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/slab-5ad27fdb4344ece1/dep-lib-slab b/examples/leptos_axum/target/debug/.fingerprint/slab-5ad27fdb4344ece1/dep-lib-slab new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/slab-5ad27fdb4344ece1/dep-lib-slab differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/slab-5ad27fdb4344ece1/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/slab-5ad27fdb4344ece1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/slab-5ad27fdb4344ece1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/slab-5ad27fdb4344ece1/lib-slab b/examples/leptos_axum/target/debug/.fingerprint/slab-5ad27fdb4344ece1/lib-slab new file mode 100644 index 0000000..edaac21 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/slab-5ad27fdb4344ece1/lib-slab @@ -0,0 +1 @@ +6f97a7322f3778f1 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/slab-5ad27fdb4344ece1/lib-slab.json b/examples/leptos_axum/target/debug/.fingerprint/slab-5ad27fdb4344ece1/lib-slab.json new file mode 100644 index 0000000..468e93f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/slab-5ad27fdb4344ece1/lib-slab.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"std\"]","declared_features":"[\"default\", \"serde\", \"std\"]","target":7798044754532116308,"profile":2241668132362809309,"path":8687845115591291947,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/slab-5ad27fdb4344ece1/dep-lib-slab","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/slotmap-1c2b2eeaa881df50/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/slotmap-1c2b2eeaa881df50/run-build-script-build-script-build new file mode 100644 index 0000000..a8ab518 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/slotmap-1c2b2eeaa881df50/run-build-script-build-script-build @@ -0,0 +1 @@ +c285186b350f7922 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/slotmap-1c2b2eeaa881df50/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/slotmap-1c2b2eeaa881df50/run-build-script-build-script-build.json new file mode 100644 index 0000000..2558e0c --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/slotmap-1c2b2eeaa881df50/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[4606430129565412780,"build_script_build",false,1572914543188701409]],"local":[{"Precalculated":"1.1.1"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/slotmap-aec30b9d2403345c/dep-lib-slotmap b/examples/leptos_axum/target/debug/.fingerprint/slotmap-aec30b9d2403345c/dep-lib-slotmap new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/slotmap-aec30b9d2403345c/dep-lib-slotmap differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/slotmap-aec30b9d2403345c/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/slotmap-aec30b9d2403345c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/slotmap-aec30b9d2403345c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/slotmap-aec30b9d2403345c/lib-slotmap b/examples/leptos_axum/target/debug/.fingerprint/slotmap-aec30b9d2403345c/lib-slotmap new file mode 100644 index 0000000..df99f35 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/slotmap-aec30b9d2403345c/lib-slotmap @@ -0,0 +1 @@ +1bc14b2e20f1ab51 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/slotmap-aec30b9d2403345c/lib-slotmap.json b/examples/leptos_axum/target/debug/.fingerprint/slotmap-aec30b9d2403345c/lib-slotmap.json new file mode 100644 index 0000000..3a28a73 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/slotmap-aec30b9d2403345c/lib-slotmap.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"std\", \"unstable\"]","target":6215064942001460984,"profile":2241668132362809309,"path":7440212566461103739,"deps":[[4606430129565412780,"build_script_build",false,2484033391575991746]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/slotmap-aec30b9d2403345c/dep-lib-slotmap","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/slotmap-d4f3f708af8675a8/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/slotmap-d4f3f708af8675a8/build-script-build-script-build new file mode 100644 index 0000000..e0a4f45 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/slotmap-d4f3f708af8675a8/build-script-build-script-build @@ -0,0 +1 @@ +e1f0ce80711dd415 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/slotmap-d4f3f708af8675a8/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/slotmap-d4f3f708af8675a8/build-script-build-script-build.json new file mode 100644 index 0000000..f179e77 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/slotmap-d4f3f708af8675a8/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"std\", \"unstable\"]","target":17883862002600103897,"profile":2225463790103693989,"path":14912561634156664432,"deps":[[5398981501050481332,"version_check",false,5486698861605516196]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/slotmap-d4f3f708af8675a8/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/slotmap-d4f3f708af8675a8/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/slotmap-d4f3f708af8675a8/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/slotmap-d4f3f708af8675a8/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/slotmap-d4f3f708af8675a8/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/slotmap-d4f3f708af8675a8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/slotmap-d4f3f708af8675a8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/smallvec-23b98a0cef41d0b0/dep-lib-smallvec b/examples/leptos_axum/target/debug/.fingerprint/smallvec-23b98a0cef41d0b0/dep-lib-smallvec new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/smallvec-23b98a0cef41d0b0/dep-lib-smallvec differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/smallvec-23b98a0cef41d0b0/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/smallvec-23b98a0cef41d0b0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/smallvec-23b98a0cef41d0b0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/smallvec-23b98a0cef41d0b0/lib-smallvec b/examples/leptos_axum/target/debug/.fingerprint/smallvec-23b98a0cef41d0b0/lib-smallvec new file mode 100644 index 0000000..b00bd14 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/smallvec-23b98a0cef41d0b0/lib-smallvec @@ -0,0 +1 @@ +1ac8c0c491e5ca91 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/smallvec-23b98a0cef41d0b0/lib-smallvec.json b/examples/leptos_axum/target/debug/.fingerprint/smallvec-23b98a0cef41d0b0/lib-smallvec.json new file mode 100644 index 0000000..7dc052e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/smallvec-23b98a0cef41d0b0/lib-smallvec.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"const_generics\"]","declared_features":"[\"arbitrary\", \"bincode\", \"const_generics\", \"const_new\", \"debugger_visualizer\", \"drain_filter\", \"drain_keep_rest\", \"impl_bincode\", \"malloc_size_of\", \"may_dangle\", \"serde\", \"specialization\", \"union\", \"unty\", \"write\"]","target":9091769176333489034,"profile":2225463790103693989,"path":12856006852973296512,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/smallvec-23b98a0cef41d0b0/dep-lib-smallvec","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/smallvec-c4d256b0884ef0dd/dep-lib-smallvec b/examples/leptos_axum/target/debug/.fingerprint/smallvec-c4d256b0884ef0dd/dep-lib-smallvec new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/smallvec-c4d256b0884ef0dd/dep-lib-smallvec differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/smallvec-c4d256b0884ef0dd/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/smallvec-c4d256b0884ef0dd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/smallvec-c4d256b0884ef0dd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/smallvec-c4d256b0884ef0dd/lib-smallvec b/examples/leptos_axum/target/debug/.fingerprint/smallvec-c4d256b0884ef0dd/lib-smallvec new file mode 100644 index 0000000..1c698a4 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/smallvec-c4d256b0884ef0dd/lib-smallvec @@ -0,0 +1 @@ +fbd2676e6b76de93 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/smallvec-c4d256b0884ef0dd/lib-smallvec.json b/examples/leptos_axum/target/debug/.fingerprint/smallvec-c4d256b0884ef0dd/lib-smallvec.json new file mode 100644 index 0000000..b418d10 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/smallvec-c4d256b0884ef0dd/lib-smallvec.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"const_generics\"]","declared_features":"[\"arbitrary\", \"bincode\", \"const_generics\", \"const_new\", \"debugger_visualizer\", \"drain_filter\", \"drain_keep_rest\", \"impl_bincode\", \"malloc_size_of\", \"may_dangle\", \"serde\", \"specialization\", \"union\", \"unty\", \"write\"]","target":9091769176333489034,"profile":2241668132362809309,"path":12856006852973296512,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/smallvec-c4d256b0884ef0dd/dep-lib-smallvec","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/dep-lib-stable_deref_trait b/examples/leptos_axum/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/dep-lib-stable_deref_trait new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/dep-lib-stable_deref_trait differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/lib-stable_deref_trait b/examples/leptos_axum/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/lib-stable_deref_trait new file mode 100644 index 0000000..f60283c --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/lib-stable_deref_trait @@ -0,0 +1 @@ +13e4067c7ea01460 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/lib-stable_deref_trait.json b/examples/leptos_axum/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/lib-stable_deref_trait.json new file mode 100644 index 0000000..f5384d3 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/stable_deref_trait-22158042bda71a4d/lib-stable_deref_trait.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":5616890217583455155,"profile":2241668132362809309,"path":2364997651327876457,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/stable_deref_trait-22158042bda71a4d/dep-lib-stable_deref_trait","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/syn-80a515ee1227163e/dep-lib-syn b/examples/leptos_axum/target/debug/.fingerprint/syn-80a515ee1227163e/dep-lib-syn new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/syn-80a515ee1227163e/dep-lib-syn differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/syn-80a515ee1227163e/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/syn-80a515ee1227163e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/syn-80a515ee1227163e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/syn-80a515ee1227163e/lib-syn b/examples/leptos_axum/target/debug/.fingerprint/syn-80a515ee1227163e/lib-syn new file mode 100644 index 0000000..846d4cc --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/syn-80a515ee1227163e/lib-syn @@ -0,0 +1 @@ +854c5c658e5e8179 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/syn-80a515ee1227163e/lib-syn.json b/examples/leptos_axum/target/debug/.fingerprint/syn-80a515ee1227163e/lib-syn.json new file mode 100644 index 0000000..7f06914 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/syn-80a515ee1227163e/lib-syn.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"clone-impls\", \"default\", \"derive\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"visit-mut\"]","declared_features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"test\", \"visit\", \"visit-mut\"]","target":9442126953582868550,"profile":2225463790103693989,"path":18220783575121479265,"deps":[[8901712065508858692,"unicode_ident",false,10098889171189812418],[8949245912927223590,"quote",false,14896968245106632325],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/syn-80a515ee1227163e/dep-lib-syn","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/syn-9788acc1f0629519/dep-lib-syn b/examples/leptos_axum/target/debug/.fingerprint/syn-9788acc1f0629519/dep-lib-syn new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/syn-9788acc1f0629519/dep-lib-syn differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/syn-9788acc1f0629519/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/syn-9788acc1f0629519/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/syn-9788acc1f0629519/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/syn-9788acc1f0629519/lib-syn b/examples/leptos_axum/target/debug/.fingerprint/syn-9788acc1f0629519/lib-syn new file mode 100644 index 0000000..a97c5c5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/syn-9788acc1f0629519/lib-syn @@ -0,0 +1 @@ +a361b11774671d5c \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/syn-9788acc1f0629519/lib-syn.json b/examples/leptos_axum/target/debug/.fingerprint/syn-9788acc1f0629519/lib-syn.json new file mode 100644 index 0000000..ae3b2be --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/syn-9788acc1f0629519/lib-syn.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"visit\", \"visit-mut\"]","declared_features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"test\", \"visit\", \"visit-mut\"]","target":9442126953582868550,"profile":2241668132362809309,"path":12117757996614384639,"deps":[[8901712065508858692,"unicode_ident",false,4209008587143611812],[8949245912927223590,"quote",false,17645419880070595363],[16346726298725429545,"proc_macro2",false,7987514604498767349]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/syn-9788acc1f0629519/dep-lib-syn","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/syn-bc17c880c2dab633/dep-lib-syn b/examples/leptos_axum/target/debug/.fingerprint/syn-bc17c880c2dab633/dep-lib-syn new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/syn-bc17c880c2dab633/dep-lib-syn differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/syn-bc17c880c2dab633/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/syn-bc17c880c2dab633/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/syn-bc17c880c2dab633/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/syn-bc17c880c2dab633/lib-syn b/examples/leptos_axum/target/debug/.fingerprint/syn-bc17c880c2dab633/lib-syn new file mode 100644 index 0000000..fcf63f5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/syn-bc17c880c2dab633/lib-syn @@ -0,0 +1 @@ +cd94425f20756154 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/syn-bc17c880c2dab633/lib-syn.json b/examples/leptos_axum/target/debug/.fingerprint/syn-bc17c880c2dab633/lib-syn.json new file mode 100644 index 0000000..dcb9e3a --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/syn-bc17c880c2dab633/lib-syn.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"visit\", \"visit-mut\"]","declared_features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"test\", \"visit\", \"visit-mut\"]","target":9442126953582868550,"profile":2225463790103693989,"path":12117757996614384639,"deps":[[8901712065508858692,"unicode_ident",false,10098889171189812418],[8949245912927223590,"quote",false,14896968245106632325],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/syn-bc17c880c2dab633/dep-lib-syn","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/syn_derive-d95d09ab57dc1dce/dep-lib-syn_derive b/examples/leptos_axum/target/debug/.fingerprint/syn_derive-d95d09ab57dc1dce/dep-lib-syn_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/syn_derive-d95d09ab57dc1dce/dep-lib-syn_derive differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/syn_derive-d95d09ab57dc1dce/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/syn_derive-d95d09ab57dc1dce/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/syn_derive-d95d09ab57dc1dce/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/syn_derive-d95d09ab57dc1dce/lib-syn_derive b/examples/leptos_axum/target/debug/.fingerprint/syn_derive-d95d09ab57dc1dce/lib-syn_derive new file mode 100644 index 0000000..a0f1c24 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/syn_derive-d95d09ab57dc1dce/lib-syn_derive @@ -0,0 +1 @@ +76b5c6220c01ae82 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/syn_derive-d95d09ab57dc1dce/lib-syn_derive.json b/examples/leptos_axum/target/debug/.fingerprint/syn_derive-d95d09ab57dc1dce/lib-syn_derive.json new file mode 100644 index 0000000..f9dd597 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/syn_derive-d95d09ab57dc1dce/lib-syn_derive.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"full\"]","declared_features":"[\"default\", \"full\"]","target":15913624108457614646,"profile":2225463790103693989,"path":11898676003525477122,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[15755541468655779741,"proc_macro_error2",false,18009236423862792710],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/syn_derive-d95d09ab57dc1dce/dep-lib-syn_derive","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/synstructure-9936603f6e2083cc/dep-lib-synstructure b/examples/leptos_axum/target/debug/.fingerprint/synstructure-9936603f6e2083cc/dep-lib-synstructure new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/synstructure-9936603f6e2083cc/dep-lib-synstructure differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/synstructure-9936603f6e2083cc/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/synstructure-9936603f6e2083cc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/synstructure-9936603f6e2083cc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/synstructure-9936603f6e2083cc/lib-synstructure b/examples/leptos_axum/target/debug/.fingerprint/synstructure-9936603f6e2083cc/lib-synstructure new file mode 100644 index 0000000..dc29dab --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/synstructure-9936603f6e2083cc/lib-synstructure @@ -0,0 +1 @@ +bb1b9ec43efa87c5 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/synstructure-9936603f6e2083cc/lib-synstructure.json b/examples/leptos_axum/target/debug/.fingerprint/synstructure-9936603f6e2083cc/lib-synstructure.json new file mode 100644 index 0000000..1762220 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/synstructure-9936603f6e2083cc/lib-synstructure.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":14291004384071580589,"profile":2225463790103693989,"path":2807523148691316326,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/synstructure-9936603f6e2083cc/dep-lib-synstructure","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/tachys-4f2ce050e8cea98c/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/tachys-4f2ce050e8cea98c/build-script-build-script-build new file mode 100644 index 0000000..e9eb444 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/tachys-4f2ce050e8cea98c/build-script-build-script-build @@ -0,0 +1 @@ +0937457fe1c50a4c \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/tachys-4f2ce050e8cea98c/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/tachys-4f2ce050e8cea98c/build-script-build-script-build.json new file mode 100644 index 0000000..a6c0c52 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/tachys-4f2ce050e8cea98c/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"oco\", \"reactive_graph\", \"reactive_stores\", \"testing\"]","declared_features":"[\"default\", \"delegation\", \"error-hook\", \"hydrate\", \"islands\", \"mark_branches\", \"nightly\", \"oco\", \"reactive_graph\", \"reactive_stores\", \"sledgehammer\", \"ssr\", \"testing\", \"tracing\"]","target":5408242616063297496,"profile":5100048866775254789,"path":5459521979837100038,"deps":[[8576480473721236041,"rustc_version",false,8412824128398680801]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tachys-4f2ce050e8cea98c/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/tachys-4f2ce050e8cea98c/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/tachys-4f2ce050e8cea98c/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/tachys-4f2ce050e8cea98c/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/tachys-4f2ce050e8cea98c/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/tachys-4f2ce050e8cea98c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/tachys-4f2ce050e8cea98c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/tachys-66525ec357922bb8/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/tachys-66525ec357922bb8/run-build-script-build-script-build new file mode 100644 index 0000000..eeadbec --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/tachys-66525ec357922bb8/run-build-script-build-script-build @@ -0,0 +1 @@ +20e03e4d85141a2a \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/tachys-66525ec357922bb8/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/tachys-66525ec357922bb8/run-build-script-build-script-build.json new file mode 100644 index 0000000..ba26f78 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/tachys-66525ec357922bb8/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13060294044903089844,"build_script_build",false,5479409468943185673]],"local":[{"Precalculated":"0.2.18"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/tachys-f88c2c44c4bd69e8/dep-lib-tachys b/examples/leptos_axum/target/debug/.fingerprint/tachys-f88c2c44c4bd69e8/dep-lib-tachys new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/tachys-f88c2c44c4bd69e8/dep-lib-tachys differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/tachys-f88c2c44c4bd69e8/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/tachys-f88c2c44c4bd69e8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/tachys-f88c2c44c4bd69e8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/tachys-f88c2c44c4bd69e8/lib-tachys b/examples/leptos_axum/target/debug/.fingerprint/tachys-f88c2c44c4bd69e8/lib-tachys new file mode 100644 index 0000000..68ad299 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/tachys-f88c2c44c4bd69e8/lib-tachys @@ -0,0 +1 @@ +9680a056a5ff9a9d \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/tachys-f88c2c44c4bd69e8/lib-tachys.json b/examples/leptos_axum/target/debug/.fingerprint/tachys-f88c2c44c4bd69e8/lib-tachys.json new file mode 100644 index 0000000..58d733b --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/tachys-f88c2c44c4bd69e8/lib-tachys.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"oco\", \"reactive_graph\", \"reactive_stores\", \"testing\"]","declared_features":"[\"default\", \"delegation\", \"error-hook\", \"hydrate\", \"islands\", \"mark_branches\", \"nightly\", \"oco\", \"reactive_graph\", \"reactive_stores\", \"sledgehammer\", \"ssr\", \"testing\", \"tracing\"]","target":6196809318643517892,"profile":18289833810726035168,"path":2324501778450730926,"deps":[[2693190314680930293,"throw_error",false,5073458601212145196],[3146308150807269233,"or_poisoned",false,12685221538892035093],[3362488865955379595,"next_tuple",false,5562351453076946459],[3964333354593468820,"async_trait",false,1616909235005750702],[4606430129565412780,"slotmap",false,5885062458607649051],[5098792620852445434,"wasm_bindgen",false,6650567199088231542],[5793233592449580592,"rustc_hash",false,1679344276918458792],[6624467379224148030,"either_of",false,2133475634850859494],[6692650170110433251,"futures",false,8883793258988323716],[8349779286280697105,"reactive_stores",false,13520646229290394435],[8475254045886188434,"const_str_slice_concat",false,6879381878191202189],[8485763786069017691,"send_wrapper",false,10504974413404477566],[8826707145280285270,"indexmap",false,10525225707791215002],[10309078293267942089,"any_spawner",false,18143628362506544039],[11711686546841355812,"erased",false,18181331141187239924],[11920567395562436845,"oco_ref",false,13512699298143461111],[13060294044903089844,"build_script_build",false,3033759861746622496],[14150371852535367471,"reactive_graph",false,10078696563620927236],[15009384451223777386,"html_escape",false,16818935064061062160],[16326338539882746041,"itertools",false,16408904456906925179],[17001154585428963880,"web_sys",false,15020542606979008053],[17379266745411773176,"drain_filter_polyfill",false,8699075544831630002],[17605717126308396068,"paste",false,7624392697941303859],[17679330592366598538,"js_sys",false,8592139079836159418]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tachys-f88c2c44c4bd69e8/dep-lib-tachys","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-065d38539fa57520/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/thiserror-065d38539fa57520/run-build-script-build-script-build new file mode 100644 index 0000000..8fa37a3 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-065d38539fa57520/run-build-script-build-script-build @@ -0,0 +1 @@ +fd0b9a755ef9de5f \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-065d38539fa57520/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/thiserror-065d38539fa57520/run-build-script-build-script-build.json new file mode 100644 index 0000000..f9f3c14 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-065d38539fa57520/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[11742730876020405241,"build_script_build",false,3469189465487430518]],"local":[{"RerunIfChanged":{"output":"debug/build/thiserror-065d38539fa57520/output","paths":["build/probe.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-2c86f3aea4f39327/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/thiserror-2c86f3aea4f39327/run-build-script-build-script-build new file mode 100644 index 0000000..28ef7af --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-2c86f3aea4f39327/run-build-script-build-script-build @@ -0,0 +1 @@ +e133ea50e2c47396 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-2c86f3aea4f39327/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/thiserror-2c86f3aea4f39327/run-build-script-build-script-build.json new file mode 100644 index 0000000..6186d31 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-2c86f3aea4f39327/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8008191657135824715,"build_script_build",false,8978710329759122902]],"local":[{"RerunIfChanged":{"output":"debug/build/thiserror-2c86f3aea4f39327/output","paths":["build/probe.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-529e636cb807cb66/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/thiserror-529e636cb807cb66/build-script-build-script-build new file mode 100644 index 0000000..c3e7621 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-529e636cb807cb66/build-script-build-script-build @@ -0,0 +1 @@ +76d3e73470092530 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-529e636cb807cb66/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/thiserror-529e636cb807cb66/build-script-build-script-build.json new file mode 100644 index 0000000..7c147a2 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-529e636cb807cb66/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":5408242616063297496,"profile":2225463790103693989,"path":8431646608772027229,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-529e636cb807cb66/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-529e636cb807cb66/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/thiserror-529e636cb807cb66/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/thiserror-529e636cb807cb66/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-529e636cb807cb66/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/thiserror-529e636cb807cb66/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-529e636cb807cb66/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-66a678865a8647f5/dep-lib-thiserror b/examples/leptos_axum/target/debug/.fingerprint/thiserror-66a678865a8647f5/dep-lib-thiserror new file mode 100644 index 0000000..a13ad4d Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/thiserror-66a678865a8647f5/dep-lib-thiserror differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-66a678865a8647f5/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/thiserror-66a678865a8647f5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-66a678865a8647f5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-66a678865a8647f5/lib-thiserror b/examples/leptos_axum/target/debug/.fingerprint/thiserror-66a678865a8647f5/lib-thiserror new file mode 100644 index 0000000..f095567 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-66a678865a8647f5/lib-thiserror @@ -0,0 +1 @@ +4f684a21fb527901 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-66a678865a8647f5/lib-thiserror.json b/examples/leptos_axum/target/debug/.fingerprint/thiserror-66a678865a8647f5/lib-thiserror.json new file mode 100644 index 0000000..51e829f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-66a678865a8647f5/lib-thiserror.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":13586076721141200315,"profile":2225463790103693989,"path":14138135558917131782,"deps":[[8508343479407352521,"thiserror_impl",false,7616246638083652398],[11742730876020405241,"build_script_build",false,6908233062528191485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-66a678865a8647f5/dep-lib-thiserror","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-80aafabced16082d/dep-lib-thiserror b/examples/leptos_axum/target/debug/.fingerprint/thiserror-80aafabced16082d/dep-lib-thiserror new file mode 100644 index 0000000..a13ad4d Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/thiserror-80aafabced16082d/dep-lib-thiserror differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-80aafabced16082d/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/thiserror-80aafabced16082d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-80aafabced16082d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-80aafabced16082d/lib-thiserror b/examples/leptos_axum/target/debug/.fingerprint/thiserror-80aafabced16082d/lib-thiserror new file mode 100644 index 0000000..5171260 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-80aafabced16082d/lib-thiserror @@ -0,0 +1 @@ +3de58ca9ae14b0c1 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-80aafabced16082d/lib-thiserror.json b/examples/leptos_axum/target/debug/.fingerprint/thiserror-80aafabced16082d/lib-thiserror.json new file mode 100644 index 0000000..ff95b03 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-80aafabced16082d/lib-thiserror.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":13586076721141200315,"profile":2241668132362809309,"path":14138135558917131782,"deps":[[8508343479407352521,"thiserror_impl",false,7616246638083652398],[11742730876020405241,"build_script_build",false,6908233062528191485]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-80aafabced16082d/dep-lib-thiserror","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-c38a878e108bbc23/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/thiserror-c38a878e108bbc23/build-script-build-script-build new file mode 100644 index 0000000..e9fd167 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-c38a878e108bbc23/build-script-build-script-build @@ -0,0 +1 @@ +d6456c4279c99a7c \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-c38a878e108bbc23/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/thiserror-c38a878e108bbc23/build-script-build-script-build.json new file mode 100644 index 0000000..45583ab --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-c38a878e108bbc23/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":2225463790103693989,"path":17250935926604417697,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-c38a878e108bbc23/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-c38a878e108bbc23/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/thiserror-c38a878e108bbc23/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/thiserror-c38a878e108bbc23/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-c38a878e108bbc23/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/thiserror-c38a878e108bbc23/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-c38a878e108bbc23/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-cba291f4019b0e25/dep-lib-thiserror b/examples/leptos_axum/target/debug/.fingerprint/thiserror-cba291f4019b0e25/dep-lib-thiserror new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/thiserror-cba291f4019b0e25/dep-lib-thiserror differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-cba291f4019b0e25/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/thiserror-cba291f4019b0e25/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-cba291f4019b0e25/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-cba291f4019b0e25/lib-thiserror b/examples/leptos_axum/target/debug/.fingerprint/thiserror-cba291f4019b0e25/lib-thiserror new file mode 100644 index 0000000..e317661 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-cba291f4019b0e25/lib-thiserror @@ -0,0 +1 @@ +cba1b9a89cf98729 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-cba291f4019b0e25/lib-thiserror.json b/examples/leptos_axum/target/debug/.fingerprint/thiserror-cba291f4019b0e25/lib-thiserror.json new file mode 100644 index 0000000..b0dcbf7 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-cba291f4019b0e25/lib-thiserror.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":13586076721141200315,"profile":2241668132362809309,"path":8516131268530562986,"deps":[[8008191657135824715,"build_script_build",false,10841225204310094817],[15291996789830541733,"thiserror_impl",false,9887164742319218539]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-cba291f4019b0e25/dep-lib-thiserror","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-dbd6ea0bbaf0a8bd/dep-lib-thiserror_impl b/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-dbd6ea0bbaf0a8bd/dep-lib-thiserror_impl new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-dbd6ea0bbaf0a8bd/dep-lib-thiserror_impl differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-dbd6ea0bbaf0a8bd/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-dbd6ea0bbaf0a8bd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-dbd6ea0bbaf0a8bd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-dbd6ea0bbaf0a8bd/lib-thiserror_impl b/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-dbd6ea0bbaf0a8bd/lib-thiserror_impl new file mode 100644 index 0000000..6e893f2 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-dbd6ea0bbaf0a8bd/lib-thiserror_impl @@ -0,0 +1 @@ +6b1fb4ddf2433689 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-dbd6ea0bbaf0a8bd/lib-thiserror_impl.json b/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-dbd6ea0bbaf0a8bd/lib-thiserror_impl.json new file mode 100644 index 0000000..a82d3de --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-dbd6ea0bbaf0a8bd/lib-thiserror_impl.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":6216210811039475267,"profile":2225463790103693989,"path":7185921243237780338,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-impl-dbd6ea0bbaf0a8bd/dep-lib-thiserror_impl","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-df72f8777f2acb58/dep-lib-thiserror_impl b/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-df72f8777f2acb58/dep-lib-thiserror_impl new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-df72f8777f2acb58/dep-lib-thiserror_impl differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-df72f8777f2acb58/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-df72f8777f2acb58/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-df72f8777f2acb58/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-df72f8777f2acb58/lib-thiserror_impl b/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-df72f8777f2acb58/lib-thiserror_impl new file mode 100644 index 0000000..9b7643b --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-df72f8777f2acb58/lib-thiserror_impl @@ -0,0 +1 @@ +2e3bbdf8f657b269 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-df72f8777f2acb58/lib-thiserror_impl.json b/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-df72f8777f2acb58/lib-thiserror_impl.json new file mode 100644 index 0000000..f096404 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/thiserror-impl-df72f8777f2acb58/lib-thiserror_impl.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":6216210811039475267,"profile":2225463790103693989,"path":11947592899321670497,"deps":[[694259242500224931,"syn",false,8755383116263869573],[8949245912927223590,"quote",false,14896968245106632325],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/thiserror-impl-df72f8777f2acb58/dep-lib-thiserror_impl","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/throw_error-156ad5a38fc20f91/dep-lib-throw_error b/examples/leptos_axum/target/debug/.fingerprint/throw_error-156ad5a38fc20f91/dep-lib-throw_error new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/throw_error-156ad5a38fc20f91/dep-lib-throw_error differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/throw_error-156ad5a38fc20f91/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/throw_error-156ad5a38fc20f91/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/throw_error-156ad5a38fc20f91/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/throw_error-156ad5a38fc20f91/lib-throw_error b/examples/leptos_axum/target/debug/.fingerprint/throw_error-156ad5a38fc20f91/lib-throw_error new file mode 100644 index 0000000..55495c6 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/throw_error-156ad5a38fc20f91/lib-throw_error @@ -0,0 +1 @@ +2c6ee6abb78b6846 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/throw_error-156ad5a38fc20f91/lib-throw_error.json b/examples/leptos_axum/target/debug/.fingerprint/throw_error-156ad5a38fc20f91/lib-throw_error.json new file mode 100644 index 0000000..8a8ae4c --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/throw_error-156ad5a38fc20f91/lib-throw_error.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":10964255088213925221,"profile":2241668132362809309,"path":11623922151529916270,"deps":[[2251399859588827949,"pin_project_lite",false,4667605112942415018]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/throw_error-156ad5a38fc20f91/dep-lib-throw_error","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/tinystr-6fb5cc0d7402e501/dep-lib-tinystr b/examples/leptos_axum/target/debug/.fingerprint/tinystr-6fb5cc0d7402e501/dep-lib-tinystr new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/tinystr-6fb5cc0d7402e501/dep-lib-tinystr differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/tinystr-6fb5cc0d7402e501/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/tinystr-6fb5cc0d7402e501/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/tinystr-6fb5cc0d7402e501/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/tinystr-6fb5cc0d7402e501/lib-tinystr b/examples/leptos_axum/target/debug/.fingerprint/tinystr-6fb5cc0d7402e501/lib-tinystr new file mode 100644 index 0000000..b6dc866 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/tinystr-6fb5cc0d7402e501/lib-tinystr @@ -0,0 +1 @@ +208e5055c1461563 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/tinystr-6fb5cc0d7402e501/lib-tinystr.json b/examples/leptos_axum/target/debug/.fingerprint/tinystr-6fb5cc0d7402e501/lib-tinystr.json new file mode 100644 index 0000000..94b914d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/tinystr-6fb5cc0d7402e501/lib-tinystr.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"serde\", \"std\", \"zerovec\"]","target":161691779326313357,"profile":15319846033271432293,"path":3077234589924332964,"deps":[[7664967068156160197,"displaydoc",false,4513505632876660728],[9119616491714376884,"zerovec",false,8547845344627906191]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/tinystr-6fb5cc0d7402e501/dep-lib-tinystr","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/toml-e18abd53e8e51c41/dep-lib-toml b/examples/leptos_axum/target/debug/.fingerprint/toml-e18abd53e8e51c41/dep-lib-toml new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/toml-e18abd53e8e51c41/dep-lib-toml differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/toml-e18abd53e8e51c41/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/toml-e18abd53e8e51c41/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/toml-e18abd53e8e51c41/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/toml-e18abd53e8e51c41/lib-toml b/examples/leptos_axum/target/debug/.fingerprint/toml-e18abd53e8e51c41/lib-toml new file mode 100644 index 0000000..c597077 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/toml-e18abd53e8e51c41/lib-toml @@ -0,0 +1 @@ +12fea3fef582e2b8 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/toml-e18abd53e8e51c41/lib-toml.json b/examples/leptos_axum/target/debug/.fingerprint/toml-e18abd53e8e51c41/lib-toml.json new file mode 100644 index 0000000..b7eda09 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/toml-e18abd53e8e51c41/lib-toml.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"parse\", \"serde\"]","declared_features":"[\"debug\", \"default\", \"display\", \"fast_hash\", \"parse\", \"preserve_order\", \"serde\", \"std\", \"unbounded\"]","target":5253204251445549666,"profile":9068219821267781949,"path":9676562045845153047,"deps":[[4254860037974390587,"toml_datetime",false,8566458966847205308],[6338624599557368326,"winnow",false,2498182386461177683],[9105632612689101338,"serde_spanned",false,13473162007057166331],[9776193540684232386,"toml_parser",false,13849729664600167072],[11029742160753049355,"serde_core",false,10952133628660192943]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/toml-e18abd53e8e51c41/dep-lib-toml","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/toml_datetime-80b76006e1528987/dep-lib-toml_datetime b/examples/leptos_axum/target/debug/.fingerprint/toml_datetime-80b76006e1528987/dep-lib-toml_datetime new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/toml_datetime-80b76006e1528987/dep-lib-toml_datetime differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/toml_datetime-80b76006e1528987/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/toml_datetime-80b76006e1528987/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/toml_datetime-80b76006e1528987/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/toml_datetime-80b76006e1528987/lib-toml_datetime b/examples/leptos_axum/target/debug/.fingerprint/toml_datetime-80b76006e1528987/lib-toml_datetime new file mode 100644 index 0000000..0ba72c5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/toml_datetime-80b76006e1528987/lib-toml_datetime @@ -0,0 +1 @@ +bc2fe3150b2de276 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/toml_datetime-80b76006e1528987/lib-toml_datetime.json b/examples/leptos_axum/target/debug/.fingerprint/toml_datetime-80b76006e1528987/lib-toml_datetime.json new file mode 100644 index 0000000..ef361ea --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/toml_datetime-80b76006e1528987/lib-toml_datetime.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"serde\"]","declared_features":"[\"alloc\", \"default\", \"serde\", \"std\"]","target":6829622772598562593,"profile":12825874298506944902,"path":15776762803256275278,"deps":[[11029742160753049355,"serde_core",false,10952133628660192943]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/toml_datetime-80b76006e1528987/dep-lib-toml_datetime","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/toml_parser-ea9a852d31ef2200/dep-lib-toml_parser b/examples/leptos_axum/target/debug/.fingerprint/toml_parser-ea9a852d31ef2200/dep-lib-toml_parser new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/toml_parser-ea9a852d31ef2200/dep-lib-toml_parser differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/toml_parser-ea9a852d31ef2200/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/toml_parser-ea9a852d31ef2200/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/toml_parser-ea9a852d31ef2200/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/toml_parser-ea9a852d31ef2200/lib-toml_parser b/examples/leptos_axum/target/debug/.fingerprint/toml_parser-ea9a852d31ef2200/lib-toml_parser new file mode 100644 index 0000000..83e7567 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/toml_parser-ea9a852d31ef2200/lib-toml_parser @@ -0,0 +1 @@ +a0d2ae3dc01f34c0 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/toml_parser-ea9a852d31ef2200/lib-toml_parser.json b/examples/leptos_axum/target/debug/.fingerprint/toml_parser-ea9a852d31ef2200/lib-toml_parser.json new file mode 100644 index 0000000..ca0b3ef --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/toml_parser-ea9a852d31ef2200/lib-toml_parser.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\"]","declared_features":"[\"alloc\", \"debug\", \"default\", \"simd\", \"std\", \"unsafe\"]","target":1950419911817058027,"profile":9068219821267781949,"path":16614241504399938018,"deps":[[6338624599557368326,"winnow",false,2498182386461177683]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/toml_parser-ea9a852d31ef2200/dep-lib-toml_parser","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/typed-builder-28eca260de123b07/dep-lib-typed_builder b/examples/leptos_axum/target/debug/.fingerprint/typed-builder-28eca260de123b07/dep-lib-typed_builder new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/typed-builder-28eca260de123b07/dep-lib-typed_builder differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/typed-builder-28eca260de123b07/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/typed-builder-28eca260de123b07/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/typed-builder-28eca260de123b07/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/typed-builder-28eca260de123b07/lib-typed_builder b/examples/leptos_axum/target/debug/.fingerprint/typed-builder-28eca260de123b07/lib-typed_builder new file mode 100644 index 0000000..52c8898 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/typed-builder-28eca260de123b07/lib-typed_builder @@ -0,0 +1 @@ +aaae2366c6e0838b \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/typed-builder-28eca260de123b07/lib-typed_builder.json b/examples/leptos_axum/target/debug/.fingerprint/typed-builder-28eca260de123b07/lib-typed_builder.json new file mode 100644 index 0000000..47c4d21 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/typed-builder-28eca260de123b07/lib-typed_builder.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":2685896730582602059,"profile":2241668132362809309,"path":2996298923999492476,"deps":[[629160560467727653,"typed_builder_macro",false,7976853137764500072]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/typed-builder-28eca260de123b07/dep-lib-typed_builder","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/typed-builder-macro-553e68c3f7b01b3d/dep-lib-typed_builder_macro b/examples/leptos_axum/target/debug/.fingerprint/typed-builder-macro-553e68c3f7b01b3d/dep-lib-typed_builder_macro new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/typed-builder-macro-553e68c3f7b01b3d/dep-lib-typed_builder_macro differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/typed-builder-macro-553e68c3f7b01b3d/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/typed-builder-macro-553e68c3f7b01b3d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/typed-builder-macro-553e68c3f7b01b3d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/typed-builder-macro-553e68c3f7b01b3d/lib-typed_builder_macro b/examples/leptos_axum/target/debug/.fingerprint/typed-builder-macro-553e68c3f7b01b3d/lib-typed_builder_macro new file mode 100644 index 0000000..eb1ba94 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/typed-builder-macro-553e68c3f7b01b3d/lib-typed_builder_macro @@ -0,0 +1 @@ +68c2e965aa79b36e \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/typed-builder-macro-553e68c3f7b01b3d/lib-typed_builder_macro.json b/examples/leptos_axum/target/debug/.fingerprint/typed-builder-macro-553e68c3f7b01b3d/lib-typed_builder_macro.json new file mode 100644 index 0000000..35ca08c --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/typed-builder-macro-553e68c3f7b01b3d/lib-typed_builder_macro.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":4449028284840385500,"profile":2225463790103693989,"path":492818097074226453,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/typed-builder-macro-553e68c3f7b01b3d/dep-lib-typed_builder_macro","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/typenum-8f9fc0ce1066aff3/dep-lib-typenum b/examples/leptos_axum/target/debug/.fingerprint/typenum-8f9fc0ce1066aff3/dep-lib-typenum new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/typenum-8f9fc0ce1066aff3/dep-lib-typenum differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/typenum-8f9fc0ce1066aff3/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/typenum-8f9fc0ce1066aff3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/typenum-8f9fc0ce1066aff3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/typenum-8f9fc0ce1066aff3/lib-typenum b/examples/leptos_axum/target/debug/.fingerprint/typenum-8f9fc0ce1066aff3/lib-typenum new file mode 100644 index 0000000..42e24fc --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/typenum-8f9fc0ce1066aff3/lib-typenum @@ -0,0 +1 @@ +177e73c94d9d977d \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/typenum-8f9fc0ce1066aff3/lib-typenum.json b/examples/leptos_axum/target/debug/.fingerprint/typenum-8f9fc0ce1066aff3/lib-typenum.json new file mode 100644 index 0000000..83b3b09 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/typenum-8f9fc0ce1066aff3/lib-typenum.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"const-generics\", \"i128\", \"scale-info\", \"scale_info\", \"strict\"]","target":2349969882102649915,"profile":2225463790103693989,"path":3047178956458484508,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/typenum-8f9fc0ce1066aff3/dep-lib-typenum","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicase-9084c5036a2e7c45/dep-lib-unicase b/examples/leptos_axum/target/debug/.fingerprint/unicase-9084c5036a2e7c45/dep-lib-unicase new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/unicase-9084c5036a2e7c45/dep-lib-unicase differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicase-9084c5036a2e7c45/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/unicase-9084c5036a2e7c45/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicase-9084c5036a2e7c45/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicase-9084c5036a2e7c45/lib-unicase b/examples/leptos_axum/target/debug/.fingerprint/unicase-9084c5036a2e7c45/lib-unicase new file mode 100644 index 0000000..241caba --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicase-9084c5036a2e7c45/lib-unicase @@ -0,0 +1 @@ +69ce416914d2182f \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicase-9084c5036a2e7c45/lib-unicase.json b/examples/leptos_axum/target/debug/.fingerprint/unicase-9084c5036a2e7c45/lib-unicase.json new file mode 100644 index 0000000..5c659aa --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicase-9084c5036a2e7c45/lib-unicase.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"nightly\"]","target":10111812390214232954,"profile":2241668132362809309,"path":11511709778082603611,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicase-9084c5036a2e7c45/dep-lib-unicase","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-300df1e961038cf8/dep-lib-unicode_ident b/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-300df1e961038cf8/dep-lib-unicode_ident new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-300df1e961038cf8/dep-lib-unicode_ident differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-300df1e961038cf8/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-300df1e961038cf8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-300df1e961038cf8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-300df1e961038cf8/lib-unicode_ident b/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-300df1e961038cf8/lib-unicode_ident new file mode 100644 index 0000000..caa968c --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-300df1e961038cf8/lib-unicode_ident @@ -0,0 +1 @@ +a485437d0267693a \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-300df1e961038cf8/lib-unicode_ident.json b/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-300df1e961038cf8/lib-unicode_ident.json new file mode 100644 index 0000000..c5c62b2 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-300df1e961038cf8/lib-unicode_ident.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":14045917370260632744,"profile":2241668132362809309,"path":5099001234488561179,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-ident-300df1e961038cf8/dep-lib-unicode_ident","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/dep-lib-unicode_ident b/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/dep-lib-unicode_ident new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/dep-lib-unicode_ident differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/lib-unicode_ident b/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/lib-unicode_ident new file mode 100644 index 0000000..286eafa --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/lib-unicode_ident @@ -0,0 +1 @@ +c2ccceea3176268c \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/lib-unicode_ident.json b/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/lib-unicode_ident.json new file mode 100644 index 0000000..8233480 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/lib-unicode_ident.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":14045917370260632744,"profile":2225463790103693989,"path":5099001234488561179,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-ident-8443eb632a3fbe4c/dep-lib-unicode_ident","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-4133875fc7e1be33/dep-lib-unicode_segmentation b/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-4133875fc7e1be33/dep-lib-unicode_segmentation new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-4133875fc7e1be33/dep-lib-unicode_segmentation differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-4133875fc7e1be33/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-4133875fc7e1be33/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-4133875fc7e1be33/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-4133875fc7e1be33/lib-unicode_segmentation b/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-4133875fc7e1be33/lib-unicode_segmentation new file mode 100644 index 0000000..af945d2 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-4133875fc7e1be33/lib-unicode_segmentation @@ -0,0 +1 @@ +41ee18c20b813922 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-4133875fc7e1be33/lib-unicode_segmentation.json b/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-4133875fc7e1be33/lib-unicode_segmentation.json new file mode 100644 index 0000000..35346e1 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-4133875fc7e1be33/lib-unicode_segmentation.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"no_std\"]","target":14369684853076716314,"profile":2241668132362809309,"path":8864328790338167546,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-segmentation-4133875fc7e1be33/dep-lib-unicode_segmentation","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-bf39eddce8a5c245/dep-lib-unicode_segmentation b/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-bf39eddce8a5c245/dep-lib-unicode_segmentation new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-bf39eddce8a5c245/dep-lib-unicode_segmentation differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-bf39eddce8a5c245/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-bf39eddce8a5c245/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-bf39eddce8a5c245/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-bf39eddce8a5c245/lib-unicode_segmentation b/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-bf39eddce8a5c245/lib-unicode_segmentation new file mode 100644 index 0000000..22faeb0 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-bf39eddce8a5c245/lib-unicode_segmentation @@ -0,0 +1 @@ +14700e9f5d146ecc \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-bf39eddce8a5c245/lib-unicode_segmentation.json b/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-bf39eddce8a5c245/lib-unicode_segmentation.json new file mode 100644 index 0000000..1cd8c3d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicode-segmentation-bf39eddce8a5c245/lib-unicode_segmentation.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"no_std\"]","target":14369684853076716314,"profile":2225463790103693989,"path":8864328790338167546,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-segmentation-bf39eddce8a5c245/dep-lib-unicode_segmentation","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-xid-6892f59d7e9d82fe/dep-lib-unicode_xid b/examples/leptos_axum/target/debug/.fingerprint/unicode-xid-6892f59d7e9d82fe/dep-lib-unicode_xid new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/unicode-xid-6892f59d7e9d82fe/dep-lib-unicode_xid differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-xid-6892f59d7e9d82fe/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/unicode-xid-6892f59d7e9d82fe/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicode-xid-6892f59d7e9d82fe/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-xid-6892f59d7e9d82fe/lib-unicode_xid b/examples/leptos_axum/target/debug/.fingerprint/unicode-xid-6892f59d7e9d82fe/lib-unicode_xid new file mode 100644 index 0000000..2b189d4 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicode-xid-6892f59d7e9d82fe/lib-unicode_xid @@ -0,0 +1 @@ +63f17e190ba8a238 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/unicode-xid-6892f59d7e9d82fe/lib-unicode_xid.json b/examples/leptos_axum/target/debug/.fingerprint/unicode-xid-6892f59d7e9d82fe/lib-unicode_xid.json new file mode 100644 index 0000000..10e977d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/unicode-xid-6892f59d7e9d82fe/lib-unicode_xid.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\"]","declared_features":"[\"bench\", \"default\", \"no_std\"]","target":5619579867478607190,"profile":2225463790103693989,"path":714552314147839800,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/unicode-xid-6892f59d7e9d82fe/dep-lib-unicode_xid","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/url-158e7336be2744b8/dep-lib-url b/examples/leptos_axum/target/debug/.fingerprint/url-158e7336be2744b8/dep-lib-url new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/url-158e7336be2744b8/dep-lib-url differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/url-158e7336be2744b8/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/url-158e7336be2744b8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/url-158e7336be2744b8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/url-158e7336be2744b8/lib-url b/examples/leptos_axum/target/debug/.fingerprint/url-158e7336be2744b8/lib-url new file mode 100644 index 0000000..160af9c --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/url-158e7336be2744b8/lib-url @@ -0,0 +1 @@ +a3efeb4e0dc95998 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/url-158e7336be2744b8/lib-url.json b/examples/leptos_axum/target/debug/.fingerprint/url-158e7336be2744b8/lib-url.json new file mode 100644 index 0000000..241469f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/url-158e7336be2744b8/lib-url.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"debugger_visualizer\", \"default\", \"expose_internals\", \"serde\", \"std\"]","target":7686100221094031937,"profile":2241668132362809309,"path":12030594524521818388,"deps":[[1074175012458081222,"form_urlencoded",false,2472982223599033986],[6159443412421938570,"idna",false,9190232874778100789],[6803352382179706244,"percent_encoding",false,17460257087533955988]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/url-158e7336be2744b8/dep-lib-url","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/dep-lib-utf8_iter b/examples/leptos_axum/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/dep-lib-utf8_iter new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/dep-lib-utf8_iter differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/lib-utf8_iter b/examples/leptos_axum/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/lib-utf8_iter new file mode 100644 index 0000000..d38cbe8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/lib-utf8_iter @@ -0,0 +1 @@ +3658c4e358bec21a \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/lib-utf8_iter.json b/examples/leptos_axum/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/lib-utf8_iter.json new file mode 100644 index 0000000..01747a5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/utf8_iter-7da21bedc099d769/lib-utf8_iter.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":6216520282702351879,"profile":2241668132362809309,"path":6953924605607883249,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/utf8_iter-7da21bedc099d769/dep-lib-utf8_iter","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/uuid-57bea931e89fc769/dep-lib-uuid b/examples/leptos_axum/target/debug/.fingerprint/uuid-57bea931e89fc769/dep-lib-uuid new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/uuid-57bea931e89fc769/dep-lib-uuid differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/uuid-57bea931e89fc769/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/uuid-57bea931e89fc769/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/uuid-57bea931e89fc769/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/uuid-57bea931e89fc769/lib-uuid b/examples/leptos_axum/target/debug/.fingerprint/uuid-57bea931e89fc769/lib-uuid new file mode 100644 index 0000000..dade7ec --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/uuid-57bea931e89fc769/lib-uuid @@ -0,0 +1 @@ +988ccd398dc6c1c4 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/uuid-57bea931e89fc769/lib-uuid.json b/examples/leptos_axum/target/debug/.fingerprint/uuid-57bea931e89fc769/lib-uuid.json new file mode 100644 index 0000000..2204d2b --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/uuid-57bea931e89fc769/lib-uuid.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"rng\", \"std\", \"v4\"]","declared_features":"[\"arbitrary\", \"atomic\", \"borsh\", \"bytemuck\", \"default\", \"fast-rng\", \"js\", \"macro-diagnostics\", \"md5\", \"rng\", \"rng-getrandom\", \"rng-rand\", \"serde\", \"sha1\", \"slog\", \"std\", \"uuid-rng-internal-lib\", \"v1\", \"v3\", \"v4\", \"v5\", \"v6\", \"v7\", \"v8\", \"zerocopy\"]","target":2422778461497348360,"profile":13109237214727842307,"path":12880090861390918766,"deps":[[17989731678791879549,"getrandom",false,593294619922364578]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/uuid-57bea931e89fc769/dep-lib-uuid","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/version_check-48d66f356588878b/dep-lib-version_check b/examples/leptos_axum/target/debug/.fingerprint/version_check-48d66f356588878b/dep-lib-version_check new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/version_check-48d66f356588878b/dep-lib-version_check differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/version_check-48d66f356588878b/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/version_check-48d66f356588878b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/version_check-48d66f356588878b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/version_check-48d66f356588878b/lib-version_check b/examples/leptos_axum/target/debug/.fingerprint/version_check-48d66f356588878b/lib-version_check new file mode 100644 index 0000000..ea377a2 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/version_check-48d66f356588878b/lib-version_check @@ -0,0 +1 @@ +a473897b8bab244c \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/version_check-48d66f356588878b/lib-version_check.json b/examples/leptos_axum/target/debug/.fingerprint/version_check-48d66f356588878b/lib-version_check.json new file mode 100644 index 0000000..5cda495 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/version_check-48d66f356588878b/lib-version_check.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":18099224280402537651,"profile":2225463790103693989,"path":12140957580734597878,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/version_check-48d66f356588878b/dep-lib-version_check","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/walkdir-7b34b40d78a41234/dep-lib-walkdir b/examples/leptos_axum/target/debug/.fingerprint/walkdir-7b34b40d78a41234/dep-lib-walkdir new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/walkdir-7b34b40d78a41234/dep-lib-walkdir differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/walkdir-7b34b40d78a41234/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/walkdir-7b34b40d78a41234/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/walkdir-7b34b40d78a41234/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/walkdir-7b34b40d78a41234/lib-walkdir b/examples/leptos_axum/target/debug/.fingerprint/walkdir-7b34b40d78a41234/lib-walkdir new file mode 100644 index 0000000..a979cff --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/walkdir-7b34b40d78a41234/lib-walkdir @@ -0,0 +1 @@ +555693d88c69a97d \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/walkdir-7b34b40d78a41234/lib-walkdir.json b/examples/leptos_axum/target/debug/.fingerprint/walkdir-7b34b40d78a41234/lib-walkdir.json new file mode 100644 index 0000000..c1c9cc2 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/walkdir-7b34b40d78a41234/lib-walkdir.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":3552558796056091662,"profile":2225463790103693989,"path":6471870864433613398,"deps":[[11781824977070132858,"same_file",false,8140043014933681084]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/walkdir-7b34b40d78a41234/dep-lib-walkdir","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/walkdir-b759508d8692fe17/dep-lib-walkdir b/examples/leptos_axum/target/debug/.fingerprint/walkdir-b759508d8692fe17/dep-lib-walkdir new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/walkdir-b759508d8692fe17/dep-lib-walkdir differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/walkdir-b759508d8692fe17/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/walkdir-b759508d8692fe17/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/walkdir-b759508d8692fe17/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/walkdir-b759508d8692fe17/lib-walkdir b/examples/leptos_axum/target/debug/.fingerprint/walkdir-b759508d8692fe17/lib-walkdir new file mode 100644 index 0000000..25c2a26 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/walkdir-b759508d8692fe17/lib-walkdir @@ -0,0 +1 @@ +9db07a245feb9fea \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/walkdir-b759508d8692fe17/lib-walkdir.json b/examples/leptos_axum/target/debug/.fingerprint/walkdir-b759508d8692fe17/lib-walkdir.json new file mode 100644 index 0000000..88e0385 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/walkdir-b759508d8692fe17/lib-walkdir.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":3552558796056091662,"profile":2241668132362809309,"path":6471870864433613398,"deps":[[11781824977070132858,"same_file",false,17572458602141299633]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/walkdir-b759508d8692fe17/dep-lib-walkdir","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-44bb07e9720af6f9/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-44bb07e9720af6f9/run-build-script-build-script-build new file mode 100644 index 0000000..3891d44 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-44bb07e9720af6f9/run-build-script-build-script-build @@ -0,0 +1 @@ +98486bc4dfbd340f \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-44bb07e9720af6f9/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-44bb07e9720af6f9/run-build-script-build-script-build.json new file mode 100644 index 0000000..259534a --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-44bb07e9720af6f9/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[5098792620852445434,"build_script_build",false,17080930178517974550],[14338663791001152517,"build_script_build",false,2196717146979817740]],"local":[{"RerunIfChanged":{"output":"debug/build/wasm-bindgen-44bb07e9720af6f9/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-f35dddcd295c2a4d/dep-lib-wasm_bindgen b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-f35dddcd295c2a4d/dep-lib-wasm_bindgen new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-f35dddcd295c2a4d/dep-lib-wasm_bindgen differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-f35dddcd295c2a4d/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-f35dddcd295c2a4d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-f35dddcd295c2a4d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-f35dddcd295c2a4d/lib-wasm_bindgen b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-f35dddcd295c2a4d/lib-wasm_bindgen new file mode 100644 index 0000000..0fc9323 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-f35dddcd295c2a4d/lib-wasm_bindgen @@ -0,0 +1 @@ +76c484a0a18f4b5c \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-f35dddcd295c2a4d/lib-wasm_bindgen.json b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-f35dddcd295c2a4d/lib-wasm_bindgen.json new file mode 100644 index 0000000..07e0a44 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-f35dddcd295c2a4d/lib-wasm_bindgen.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"enable-interning\", \"gg-alloc\", \"msrv\", \"rustversion\", \"serde\", \"serde-serialize\", \"serde_json\", \"spans\", \"std\", \"strict-macro\", \"xxx_debug_only_print_generated_code\"]","target":4070942113156591848,"profile":6895290931741807353,"path":17388005529700139174,"deps":[[3094558077496084265,"wasm_bindgen_macro",false,6170552907797257306],[5098792620852445434,"build_script_build",false,1095709378128595096],[5855319743879205494,"once_cell",false,7971582083134256037],[7667230146095136825,"cfg_if",false,1090425733875617541],[14338663791001152517,"wasm_bindgen_shared",false,2762158483489966155]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wasm-bindgen-f35dddcd295c2a4d/dep-lib-wasm_bindgen","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-fba7949c8f2ef40f/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-fba7949c8f2ef40f/build-script-build-script-build new file mode 100644 index 0000000..74970a6 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-fba7949c8f2ef40f/build-script-build-script-build @@ -0,0 +1 @@ +163ed0ab7fa70bed \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-fba7949c8f2ef40f/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-fba7949c8f2ef40f/build-script-build-script-build.json new file mode 100644 index 0000000..4a28c21 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-fba7949c8f2ef40f/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"enable-interning\", \"gg-alloc\", \"msrv\", \"rustversion\", \"serde\", \"serde-serialize\", \"serde_json\", \"spans\", \"std\", \"strict-macro\", \"xxx_debug_only_print_generated_code\"]","target":5408242616063297496,"profile":15133741383643883003,"path":1726983723130216146,"deps":[[16991438365634268121,"rustversion_compat",false,13729046755115492294]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wasm-bindgen-fba7949c8f2ef40f/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-fba7949c8f2ef40f/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-fba7949c8f2ef40f/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-fba7949c8f2ef40f/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-fba7949c8f2ef40f/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-fba7949c8f2ef40f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-fba7949c8f2ef40f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-futures-1f435aab6a947724/dep-lib-wasm_bindgen_futures b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-futures-1f435aab6a947724/dep-lib-wasm_bindgen_futures new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-futures-1f435aab6a947724/dep-lib-wasm_bindgen_futures differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-futures-1f435aab6a947724/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-futures-1f435aab6a947724/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-futures-1f435aab6a947724/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-futures-1f435aab6a947724/lib-wasm_bindgen_futures b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-futures-1f435aab6a947724/lib-wasm_bindgen_futures new file mode 100644 index 0000000..6130fa0 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-futures-1f435aab6a947724/lib-wasm_bindgen_futures @@ -0,0 +1 @@ +b48a50355eee753c \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-futures-1f435aab6a947724/lib-wasm_bindgen_futures.json b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-futures-1f435aab6a947724/lib-wasm_bindgen_futures.json new file mode 100644 index 0000000..80f768f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-futures-1f435aab6a947724/lib-wasm_bindgen_futures.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"default\", \"futures-util\", \"std\"]","declared_features":"[\"default\", \"futures-core\", \"futures-core-03-stream\", \"futures-util\", \"std\"]","target":4429042720284741532,"profile":6895290931741807353,"path":9106109948052852886,"deps":[[5098792620852445434,"wasm_bindgen",false,6650567199088231542],[5855319743879205494,"once_cell",false,7971582083134256037],[7667230146095136825,"cfg_if",false,1090425733875617541],[13067342572498832805,"futures_util",false,7914180329945593403],[17679330592366598538,"js_sys",false,8592139079836159418]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wasm-bindgen-futures-1f435aab6a947724/dep-lib-wasm_bindgen_futures","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-3e7e6a4728be67cc/dep-lib-wasm_bindgen_macro b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-3e7e6a4728be67cc/dep-lib-wasm_bindgen_macro new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-3e7e6a4728be67cc/dep-lib-wasm_bindgen_macro differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-3e7e6a4728be67cc/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-3e7e6a4728be67cc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-3e7e6a4728be67cc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-3e7e6a4728be67cc/lib-wasm_bindgen_macro b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-3e7e6a4728be67cc/lib-wasm_bindgen_macro new file mode 100644 index 0000000..43e7da6 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-3e7e6a4728be67cc/lib-wasm_bindgen_macro @@ -0,0 +1 @@ +5a5c02392d35a255 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-3e7e6a4728be67cc/lib-wasm_bindgen_macro.json b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-3e7e6a4728be67cc/lib-wasm_bindgen_macro.json new file mode 100644 index 0000000..c996ee4 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-3e7e6a4728be67cc/lib-wasm_bindgen_macro.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"strict-macro\"]","target":6875603382767429092,"profile":15133741383643883003,"path":6182071048350439960,"deps":[[2523730735144528079,"wasm_bindgen_macro_support",false,7464694707600961048],[8949245912927223590,"quote",false,14896968245106632325]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wasm-bindgen-macro-3e7e6a4728be67cc/dep-lib-wasm_bindgen_macro","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-support-c8225b8a62df0abc/dep-lib-wasm_bindgen_macro_support b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-support-c8225b8a62df0abc/dep-lib-wasm_bindgen_macro_support new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-support-c8225b8a62df0abc/dep-lib-wasm_bindgen_macro_support differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-support-c8225b8a62df0abc/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-support-c8225b8a62df0abc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-support-c8225b8a62df0abc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-support-c8225b8a62df0abc/lib-wasm_bindgen_macro_support b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-support-c8225b8a62df0abc/lib-wasm_bindgen_macro_support new file mode 100644 index 0000000..a2573d8 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-support-c8225b8a62df0abc/lib-wasm_bindgen_macro_support @@ -0,0 +1 @@ +182e4b7349ec9767 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-support-c8225b8a62df0abc/lib-wasm_bindgen_macro_support.json b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-support-c8225b8a62df0abc/lib-wasm_bindgen_macro_support.json new file mode 100644 index 0000000..72a6699 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-macro-support-c8225b8a62df0abc/lib-wasm_bindgen_macro_support.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"extra-traits\", \"strict-macro\"]","target":17930477452216118438,"profile":15133741383643883003,"path":2403141011261176426,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[14338663791001152517,"wasm_bindgen_shared",false,6317711911811550097],[15961360984275529083,"bumpalo",false,2357766677132593896],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wasm-bindgen-macro-support-c8225b8a62df0abc/dep-lib-wasm_bindgen_macro_support","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-018fb7392c9481db/dep-lib-wasm_bindgen_shared b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-018fb7392c9481db/dep-lib-wasm_bindgen_shared new file mode 100644 index 0000000..5e55038 Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-018fb7392c9481db/dep-lib-wasm_bindgen_shared differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-018fb7392c9481db/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-018fb7392c9481db/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-018fb7392c9481db/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-018fb7392c9481db/lib-wasm_bindgen_shared b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-018fb7392c9481db/lib-wasm_bindgen_shared new file mode 100644 index 0000000..92850c6 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-018fb7392c9481db/lib-wasm_bindgen_shared @@ -0,0 +1 @@ +4b48c09581285526 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-018fb7392c9481db/lib-wasm_bindgen_shared.json b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-018fb7392c9481db/lib-wasm_bindgen_shared.json new file mode 100644 index 0000000..9991a93 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-018fb7392c9481db/lib-wasm_bindgen_shared.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":8958406094080315647,"profile":6895290931741807353,"path":8739895883981511142,"deps":[[8901712065508858692,"unicode_ident",false,4209008587143611812],[14338663791001152517,"build_script_build",false,2196717146979817740]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wasm-bindgen-shared-018fb7392c9481db/dep-lib-wasm_bindgen_shared","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-3197ad17e33d4bd1/dep-lib-wasm_bindgen_shared b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-3197ad17e33d4bd1/dep-lib-wasm_bindgen_shared new file mode 100644 index 0000000..5e55038 Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-3197ad17e33d4bd1/dep-lib-wasm_bindgen_shared differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-3197ad17e33d4bd1/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-3197ad17e33d4bd1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-3197ad17e33d4bd1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-3197ad17e33d4bd1/lib-wasm_bindgen_shared b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-3197ad17e33d4bd1/lib-wasm_bindgen_shared new file mode 100644 index 0000000..c95454d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-3197ad17e33d4bd1/lib-wasm_bindgen_shared @@ -0,0 +1 @@ +910bc8d88205ad57 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-3197ad17e33d4bd1/lib-wasm_bindgen_shared.json b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-3197ad17e33d4bd1/lib-wasm_bindgen_shared.json new file mode 100644 index 0000000..6017de1 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-3197ad17e33d4bd1/lib-wasm_bindgen_shared.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":8958406094080315647,"profile":15133741383643883003,"path":8739895883981511142,"deps":[[8901712065508858692,"unicode_ident",false,10098889171189812418],[14338663791001152517,"build_script_build",false,2196717146979817740]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wasm-bindgen-shared-3197ad17e33d4bd1/dep-lib-wasm_bindgen_shared","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-9c459357017d924a/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-9c459357017d924a/build-script-build-script-build new file mode 100644 index 0000000..40cb65f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-9c459357017d924a/build-script-build-script-build @@ -0,0 +1 @@ +8aa8c1c6921ac95a \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-9c459357017d924a/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-9c459357017d924a/build-script-build-script-build.json new file mode 100644 index 0000000..e72aa08 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-9c459357017d924a/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":15133741383643883003,"path":2067654918786036016,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wasm-bindgen-shared-9c459357017d924a/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-9c459357017d924a/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-9c459357017d924a/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-9c459357017d924a/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-9c459357017d924a/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-9c459357017d924a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-9c459357017d924a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-d195e4f1aa2147fb/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-d195e4f1aa2147fb/run-build-script-build-script-build new file mode 100644 index 0000000..a65814e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-d195e4f1aa2147fb/run-build-script-build-script-build @@ -0,0 +1 @@ +0cd9bd419b4e7c1e \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-d195e4f1aa2147fb/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-d195e4f1aa2147fb/run-build-script-build-script-build.json new file mode 100644 index 0000000..0f7449d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-bindgen-shared-d195e4f1aa2147fb/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[14338663791001152517,"build_script_build",false,6541789151434483850]],"local":[{"Precalculated":"0.2.114"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-streams-bb559302f70eca6a/dep-lib-wasm_streams b/examples/leptos_axum/target/debug/.fingerprint/wasm-streams-bb559302f70eca6a/dep-lib-wasm_streams new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/wasm-streams-bb559302f70eca6a/dep-lib-wasm_streams differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-streams-bb559302f70eca6a/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/wasm-streams-bb559302f70eca6a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-streams-bb559302f70eca6a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-streams-bb559302f70eca6a/lib-wasm_streams b/examples/leptos_axum/target/debug/.fingerprint/wasm-streams-bb559302f70eca6a/lib-wasm_streams new file mode 100644 index 0000000..ba4298f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-streams-bb559302f70eca6a/lib-wasm_streams @@ -0,0 +1 @@ +8549298fa5a4ec0f \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm-streams-bb559302f70eca6a/lib-wasm_streams.json b/examples/leptos_axum/target/debug/.fingerprint/wasm-streams-bb559302f70eca6a/lib-wasm_streams.json new file mode 100644 index 0000000..b4c99d3 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm-streams-bb559302f70eca6a/lib-wasm_streams.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":13894547893891742970,"profile":2241668132362809309,"path":9582691529131628222,"deps":[[5098792620852445434,"wasm_bindgen",false,6650567199088231542],[13067342572498832805,"futures_util",false,7914180329945593403],[16773483497834534941,"wasm_bindgen_futures",false,4356650302939630260],[17001154585428963880,"web_sys",false,15020542606979008053],[17679330592366598538,"js_sys",false,8592139079836159418]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wasm-streams-bb559302f70eca6a/dep-lib-wasm_streams","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm_split_helpers-ab938193bf33c8b4/dep-lib-wasm_split_helpers b/examples/leptos_axum/target/debug/.fingerprint/wasm_split_helpers-ab938193bf33c8b4/dep-lib-wasm_split_helpers new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/wasm_split_helpers-ab938193bf33c8b4/dep-lib-wasm_split_helpers differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm_split_helpers-ab938193bf33c8b4/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/wasm_split_helpers-ab938193bf33c8b4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm_split_helpers-ab938193bf33c8b4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm_split_helpers-ab938193bf33c8b4/lib-wasm_split_helpers b/examples/leptos_axum/target/debug/.fingerprint/wasm_split_helpers-ab938193bf33c8b4/lib-wasm_split_helpers new file mode 100644 index 0000000..ecb0c54 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm_split_helpers-ab938193bf33c8b4/lib-wasm_split_helpers @@ -0,0 +1 @@ +a5f9e3ed74e29d24 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm_split_helpers-ab938193bf33c8b4/lib-wasm_split_helpers.json b/examples/leptos_axum/target/debug/.fingerprint/wasm_split_helpers-ab938193bf33c8b4/lib-wasm_split_helpers.json new file mode 100644 index 0000000..d18f871 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm_split_helpers-ab938193bf33c8b4/lib-wasm_split_helpers.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":7362768966744792000,"profile":2241668132362809309,"path":13317543380234922000,"deps":[[6177680976351074618,"wasm_split_macros",false,4320155133579798004],[13283346097521258568,"async_once_cell",false,18201122495565003127]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wasm_split_helpers-ab938193bf33c8b4/dep-lib-wasm_split_helpers","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm_split_macros-ae9bbb03c78f6a02/dep-lib-wasm_split_macros b/examples/leptos_axum/target/debug/.fingerprint/wasm_split_macros-ae9bbb03c78f6a02/dep-lib-wasm_split_macros new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/wasm_split_macros-ae9bbb03c78f6a02/dep-lib-wasm_split_macros differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm_split_macros-ae9bbb03c78f6a02/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/wasm_split_macros-ae9bbb03c78f6a02/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm_split_macros-ae9bbb03c78f6a02/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm_split_macros-ae9bbb03c78f6a02/lib-wasm_split_macros b/examples/leptos_axum/target/debug/.fingerprint/wasm_split_macros-ae9bbb03c78f6a02/lib-wasm_split_macros new file mode 100644 index 0000000..3c94953 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm_split_macros-ae9bbb03c78f6a02/lib-wasm_split_macros @@ -0,0 +1 @@ +f4a59a6f3446f43b \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/wasm_split_macros-ae9bbb03c78f6a02/lib-wasm_split_macros.json b/examples/leptos_axum/target/debug/.fingerprint/wasm_split_macros-ae9bbb03c78f6a02/lib-wasm_split_macros.json new file mode 100644 index 0000000..d981d10 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/wasm_split_macros-ae9bbb03c78f6a02/lib-wasm_split_macros.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":5450007814344695132,"profile":2225463790103693989,"path":6153864104056039428,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[9857275760291862238,"sha2",false,533637775796087771],[10190449710562616856,"syn",false,6080269753824482509],[17399414571217769439,"base16",false,6810890196679776213]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/wasm_split_macros-ae9bbb03c78f6a02/dep-lib-wasm_split_macros","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/web-sys-bc9f0b4e6ee60692/dep-lib-web_sys b/examples/leptos_axum/target/debug/.fingerprint/web-sys-bc9f0b4e6ee60692/dep-lib-web_sys new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/web-sys-bc9f0b4e6ee60692/dep-lib-web_sys differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/web-sys-bc9f0b4e6ee60692/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/web-sys-bc9f0b4e6ee60692/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/web-sys-bc9f0b4e6ee60692/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/web-sys-bc9f0b4e6ee60692/lib-web_sys b/examples/leptos_axum/target/debug/.fingerprint/web-sys-bc9f0b4e6ee60692/lib-web_sys new file mode 100644 index 0000000..0d7b1d1 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/web-sys-bc9f0b4e6ee60692/lib-web_sys @@ -0,0 +1 @@ +35869a36ebaf73d0 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/web-sys-bc9f0b4e6ee60692/lib-web_sys.json b/examples/leptos_axum/target/debug/.fingerprint/web-sys-bc9f0b4e6ee60692/lib-web_sys.json new file mode 100644 index 0000000..5ba4b80 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/web-sys-bc9f0b4e6ee60692/lib-web_sys.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"AbortController\", \"AbortSignal\", \"AddEventListenerOptions\", \"AnimationEvent\", \"BeforeUnloadEvent\", \"BinaryType\", \"Blob\", \"CharacterData\", \"ClipboardEvent\", \"CloseEvent\", \"CloseEventInit\", \"Comment\", \"CompositionEvent\", \"CssStyleDeclaration\", \"CustomEvent\", \"DeviceMotionEvent\", \"DeviceOrientationEvent\", \"Document\", \"DocumentFragment\", \"DomStringMap\", \"DomTokenList\", \"DragEvent\", \"Element\", \"ErrorEvent\", \"Event\", \"EventSource\", \"EventTarget\", \"FileReader\", \"FocusEvent\", \"FormData\", \"GamepadEvent\", \"HashChangeEvent\", \"Headers\", \"History\", \"HtmlAnchorElement\", \"HtmlAreaElement\", \"HtmlAudioElement\", \"HtmlBaseElement\", \"HtmlBodyElement\", \"HtmlBrElement\", \"HtmlButtonElement\", \"HtmlCanvasElement\", \"HtmlCollection\", \"HtmlDListElement\", \"HtmlDataElement\", \"HtmlDataListElement\", \"HtmlDetailsElement\", \"HtmlDialogElement\", \"HtmlDivElement\", \"HtmlElement\", \"HtmlEmbedElement\", \"HtmlFieldSetElement\", \"HtmlFormElement\", \"HtmlHeadElement\", \"HtmlHeadingElement\", \"HtmlHrElement\", \"HtmlHtmlElement\", \"HtmlIFrameElement\", \"HtmlImageElement\", \"HtmlInputElement\", \"HtmlLabelElement\", \"HtmlLegendElement\", \"HtmlLiElement\", \"HtmlLinkElement\", \"HtmlMapElement\", \"HtmlMediaElement\", \"HtmlMenuElement\", \"HtmlMetaElement\", \"HtmlMeterElement\", \"HtmlModElement\", \"HtmlOListElement\", \"HtmlObjectElement\", \"HtmlOptGroupElement\", \"HtmlOptionElement\", \"HtmlOutputElement\", \"HtmlParagraphElement\", \"HtmlParamElement\", \"HtmlPictureElement\", \"HtmlPreElement\", \"HtmlProgressElement\", \"HtmlQuoteElement\", \"HtmlScriptElement\", \"HtmlSelectElement\", \"HtmlSlotElement\", \"HtmlSourceElement\", \"HtmlSpanElement\", \"HtmlStyleElement\", \"HtmlTableCaptionElement\", \"HtmlTableCellElement\", \"HtmlTableColElement\", \"HtmlTableElement\", \"HtmlTableRowElement\", \"HtmlTableSectionElement\", \"HtmlTemplateElement\", \"HtmlTextAreaElement\", \"HtmlTimeElement\", \"HtmlTitleElement\", \"HtmlTrackElement\", \"HtmlUListElement\", \"HtmlVideoElement\", \"InputEvent\", \"KeyboardEvent\", \"Location\", \"MessageEvent\", \"MouseEvent\", \"Node\", \"ObserverCallback\", \"PageTransitionEvent\", \"PointerEvent\", \"PopStateEvent\", \"ProgressEvent\", \"PromiseRejectionEvent\", \"QueuingStrategy\", \"ReadableByteStreamController\", \"ReadableStream\", \"ReadableStreamByobReader\", \"ReadableStreamByobRequest\", \"ReadableStreamDefaultController\", \"ReadableStreamDefaultReader\", \"ReadableStreamGetReaderOptions\", \"ReadableStreamReadResult\", \"ReadableStreamReaderMode\", \"ReadableStreamType\", \"ReadableWritablePair\", \"ReferrerPolicy\", \"Request\", \"RequestCache\", \"RequestCredentials\", \"RequestInit\", \"RequestMode\", \"RequestRedirect\", \"Response\", \"ResponseInit\", \"ResponseType\", \"SecurityPolicyViolationEvent\", \"ShadowRoot\", \"ShadowRootInit\", \"ShadowRootMode\", \"StorageEvent\", \"StreamPipeOptions\", \"SubmitEvent\", \"SvgElement\", \"Text\", \"TouchEvent\", \"TransformStream\", \"TransformStreamDefaultController\", \"Transformer\", \"TransitionEvent\", \"UiEvent\", \"UnderlyingSink\", \"UnderlyingSource\", \"Url\", \"UrlSearchParams\", \"WebSocket\", \"WheelEvent\", \"Window\", \"WritableStream\", \"WritableStreamDefaultController\", \"WritableStreamDefaultWriter\", \"console\", \"default\", \"std\"]","declared_features":"[\"AbortController\", \"AbortSignal\", \"AbstractRange\", \"AddEventListenerOptions\", \"AesCbcParams\", \"AesCtrParams\", \"AesDerivedKeyParams\", \"AesGcmParams\", \"AesKeyAlgorithm\", \"AesKeyGenParams\", \"Algorithm\", \"AlignSetting\", \"AllowedBluetoothDevice\", \"AllowedUsbDevice\", \"AlphaOption\", \"AnalyserNode\", \"AnalyserOptions\", \"AngleInstancedArrays\", \"Animation\", \"AnimationEffect\", \"AnimationEvent\", \"AnimationEventInit\", \"AnimationPlayState\", \"AnimationPlaybackEvent\", \"AnimationPlaybackEventInit\", \"AnimationPropertyDetails\", \"AnimationPropertyValueDetails\", \"AnimationTimeline\", \"AssignedNodesOptions\", \"AttestationConveyancePreference\", \"Attr\", \"AttributeNameValue\", \"AudioBuffer\", \"AudioBufferOptions\", \"AudioBufferSourceNode\", \"AudioBufferSourceOptions\", \"AudioConfiguration\", \"AudioContext\", \"AudioContextLatencyCategory\", \"AudioContextOptions\", \"AudioContextState\", \"AudioData\", \"AudioDataCopyToOptions\", \"AudioDataInit\", \"AudioDecoder\", \"AudioDecoderConfig\", \"AudioDecoderInit\", \"AudioDecoderSupport\", \"AudioDestinationNode\", \"AudioEncoder\", \"AudioEncoderConfig\", \"AudioEncoderInit\", \"AudioEncoderSupport\", \"AudioListener\", \"AudioNode\", \"AudioNodeOptions\", \"AudioParam\", \"AudioParamMap\", \"AudioProcessingEvent\", \"AudioSampleFormat\", \"AudioScheduledSourceNode\", \"AudioSinkInfo\", \"AudioSinkOptions\", \"AudioSinkType\", \"AudioStreamTrack\", \"AudioTrack\", \"AudioTrackList\", \"AudioWorklet\", \"AudioWorkletGlobalScope\", \"AudioWorkletNode\", \"AudioWorkletNodeOptions\", \"AudioWorkletProcessor\", \"AuthenticationExtensionsClientInputs\", \"AuthenticationExtensionsClientInputsJson\", \"AuthenticationExtensionsClientOutputs\", \"AuthenticationExtensionsClientOutputsJson\", \"AuthenticationExtensionsDevicePublicKeyInputs\", \"AuthenticationExtensionsDevicePublicKeyOutputs\", \"AuthenticationExtensionsLargeBlobInputs\", \"AuthenticationExtensionsLargeBlobOutputs\", \"AuthenticationExtensionsPrfInputs\", \"AuthenticationExtensionsPrfOutputs\", \"AuthenticationExtensionsPrfValues\", \"AuthenticationResponseJson\", \"AuthenticatorAssertionResponse\", \"AuthenticatorAssertionResponseJson\", \"AuthenticatorAttachment\", \"AuthenticatorAttestationResponse\", \"AuthenticatorAttestationResponseJson\", \"AuthenticatorResponse\", \"AuthenticatorSelectionCriteria\", \"AuthenticatorTransport\", \"AutoKeyword\", \"AutocompleteInfo\", \"BarProp\", \"BaseAudioContext\", \"BaseComputedKeyframe\", \"BaseKeyframe\", \"BasePropertyIndexedKeyframe\", \"BasicCardRequest\", \"BasicCardResponse\", \"BasicCardType\", \"BatteryManager\", \"BeforeUnloadEvent\", \"BinaryType\", \"BiquadFilterNode\", \"BiquadFilterOptions\", \"BiquadFilterType\", \"BitrateMode\", \"Blob\", \"BlobEvent\", \"BlobEventInit\", \"BlobPropertyBag\", \"BlockParsingOptions\", \"Bluetooth\", \"BluetoothAdvertisingEvent\", \"BluetoothAdvertisingEventInit\", \"BluetoothCharacteristicProperties\", \"BluetoothDataFilterInit\", \"BluetoothDevice\", \"BluetoothLeScanFilterInit\", \"BluetoothManufacturerDataMap\", \"BluetoothPermissionDescriptor\", \"BluetoothPermissionResult\", \"BluetoothPermissionStorage\", \"BluetoothRemoteGattCharacteristic\", \"BluetoothRemoteGattDescriptor\", \"BluetoothRemoteGattServer\", \"BluetoothRemoteGattService\", \"BluetoothServiceDataMap\", \"BluetoothUuid\", \"BoxQuadOptions\", \"BroadcastChannel\", \"BrowserElementDownloadOptions\", \"BrowserElementExecuteScriptOptions\", \"BrowserFeedWriter\", \"BrowserFindCaseSensitivity\", \"BrowserFindDirection\", \"ByteLengthQueuingStrategy\", \"Cache\", \"CacheBatchOperation\", \"CacheQueryOptions\", \"CacheStorage\", \"CacheStorageNamespace\", \"CanvasCaptureMediaStream\", \"CanvasCaptureMediaStreamTrack\", \"CanvasGradient\", \"CanvasPattern\", \"CanvasRenderingContext2d\", \"CanvasWindingRule\", \"CaretChangedReason\", \"CaretPosition\", \"CaretStateChangedEventInit\", \"CdataSection\", \"ChannelCountMode\", \"ChannelInterpretation\", \"ChannelMergerNode\", \"ChannelMergerOptions\", \"ChannelSplitterNode\", \"ChannelSplitterOptions\", \"CharacterData\", \"CheckerboardReason\", \"CheckerboardReport\", \"CheckerboardReportService\", \"ChromeFilePropertyBag\", \"ChromeWorker\", \"Client\", \"ClientQueryOptions\", \"ClientRectsAndTexts\", \"ClientType\", \"Clients\", \"Clipboard\", \"ClipboardEvent\", \"ClipboardEventInit\", \"ClipboardItem\", \"ClipboardItemOptions\", \"ClipboardPermissionDescriptor\", \"ClipboardUnsanitizedFormats\", \"CloseEvent\", \"CloseEventInit\", \"CodecState\", \"CollectedClientData\", \"ColorSpaceConversion\", \"CommandEvent\", \"CommandEventInit\", \"Comment\", \"CompositeOperation\", \"CompositionEvent\", \"CompositionEventInit\", \"CompressionFormat\", \"CompressionStream\", \"ComputedEffectTiming\", \"ConnStatusDict\", \"ConnectionType\", \"ConsoleCounter\", \"ConsoleCounterError\", \"ConsoleEvent\", \"ConsoleInstance\", \"ConsoleInstanceOptions\", \"ConsoleLevel\", \"ConsoleLogLevel\", \"ConsoleProfileEvent\", \"ConsoleStackEntry\", \"ConsoleTimerError\", \"ConsoleTimerLogOrEnd\", \"ConsoleTimerStart\", \"ConstantSourceNode\", \"ConstantSourceOptions\", \"ConstrainBooleanParameters\", \"ConstrainDomStringParameters\", \"ConstrainDoubleRange\", \"ConstrainLongRange\", \"ContextAttributes2d\", \"ConvertCoordinateOptions\", \"ConvolverNode\", \"ConvolverOptions\", \"CookieChangeEvent\", \"CookieChangeEventInit\", \"CookieInit\", \"CookieListItem\", \"CookieSameSite\", \"CookieStore\", \"CookieStoreDeleteOptions\", \"CookieStoreGetOptions\", \"CookieStoreManager\", \"Coordinates\", \"CountQueuingStrategy\", \"Credential\", \"CredentialCreationOptions\", \"CredentialPropertiesOutput\", \"CredentialRequestOptions\", \"CredentialsContainer\", \"Crypto\", \"CryptoKey\", \"CryptoKeyPair\", \"CssAnimation\", \"CssBoxType\", \"CssConditionRule\", \"CssCounterStyleRule\", \"CssFontFaceRule\", \"CssFontFeatureValuesRule\", \"CssGroupingRule\", \"CssImportRule\", \"CssKeyframeRule\", \"CssKeyframesRule\", \"CssMediaRule\", \"CssNamespaceRule\", \"CssPageRule\", \"CssPseudoElement\", \"CssRule\", \"CssRuleList\", \"CssStyleDeclaration\", \"CssStyleRule\", \"CssStyleSheet\", \"CssStyleSheetParsingMode\", \"CssSupportsRule\", \"CssTransition\", \"CustomElementRegistry\", \"CustomEvent\", \"CustomEventInit\", \"DataTransfer\", \"DataTransferItem\", \"DataTransferItemList\", \"DateTimeValue\", \"DecoderDoctorNotification\", \"DecoderDoctorNotificationType\", \"DecompressionStream\", \"DedicatedWorkerGlobalScope\", \"DelayNode\", \"DelayOptions\", \"DeviceAcceleration\", \"DeviceAccelerationInit\", \"DeviceLightEvent\", \"DeviceLightEventInit\", \"DeviceMotionEvent\", \"DeviceMotionEventInit\", \"DeviceOrientationEvent\", \"DeviceOrientationEventInit\", \"DeviceProximityEvent\", \"DeviceProximityEventInit\", \"DeviceRotationRate\", \"DeviceRotationRateInit\", \"DhKeyDeriveParams\", \"DirectionSetting\", \"Directory\", \"DirectoryPickerOptions\", \"DisplayMediaStreamConstraints\", \"DisplayNameOptions\", \"DisplayNameResult\", \"DistanceModelType\", \"DnsCacheDict\", \"DnsCacheEntry\", \"DnsLookupDict\", \"Document\", \"DocumentFragment\", \"DocumentTimeline\", \"DocumentTimelineOptions\", \"DocumentType\", \"DomError\", \"DomException\", \"DomImplementation\", \"DomMatrix\", \"DomMatrix2dInit\", \"DomMatrixInit\", \"DomMatrixReadOnly\", \"DomParser\", \"DomPoint\", \"DomPointInit\", \"DomPointReadOnly\", \"DomQuad\", \"DomQuadInit\", \"DomQuadJson\", \"DomRect\", \"DomRectInit\", \"DomRectList\", \"DomRectReadOnly\", \"DomRequest\", \"DomRequestReadyState\", \"DomStringList\", \"DomStringMap\", \"DomTokenList\", \"DomWindowResizeEventDetail\", \"DoubleRange\", \"DragEvent\", \"DragEventInit\", \"DynamicsCompressorNode\", \"DynamicsCompressorOptions\", \"EcKeyAlgorithm\", \"EcKeyGenParams\", \"EcKeyImportParams\", \"EcdhKeyDeriveParams\", \"EcdsaParams\", \"EffectTiming\", \"Element\", \"ElementCreationOptions\", \"ElementDefinitionOptions\", \"EncodedAudioChunk\", \"EncodedAudioChunkInit\", \"EncodedAudioChunkMetadata\", \"EncodedAudioChunkType\", \"EncodedVideoChunk\", \"EncodedVideoChunkInit\", \"EncodedVideoChunkMetadata\", \"EncodedVideoChunkType\", \"EndingTypes\", \"ErrorCallback\", \"ErrorEvent\", \"ErrorEventInit\", \"Event\", \"EventInit\", \"EventListener\", \"EventListenerOptions\", \"EventModifierInit\", \"EventSource\", \"EventSourceInit\", \"EventTarget\", \"Exception\", \"ExtBlendMinmax\", \"ExtColorBufferFloat\", \"ExtColorBufferHalfFloat\", \"ExtDisjointTimerQuery\", \"ExtFragDepth\", \"ExtSRgb\", \"ExtShaderTextureLod\", \"ExtTextureFilterAnisotropic\", \"ExtTextureNorm16\", \"ExtendableCookieChangeEvent\", \"ExtendableCookieChangeEventInit\", \"ExtendableEvent\", \"ExtendableEventInit\", \"ExtendableMessageEvent\", \"ExtendableMessageEventInit\", \"External\", \"FakePluginMimeEntry\", \"FakePluginTagInit\", \"FetchEvent\", \"FetchEventInit\", \"FetchObserver\", \"FetchReadableStreamReadDataArray\", \"FetchReadableStreamReadDataDone\", \"FetchState\", \"File\", \"FileCallback\", \"FileList\", \"FilePickerAcceptType\", \"FilePickerOptions\", \"FilePropertyBag\", \"FileReader\", \"FileReaderSync\", \"FileSystem\", \"FileSystemCreateWritableOptions\", \"FileSystemDirectoryEntry\", \"FileSystemDirectoryHandle\", \"FileSystemDirectoryReader\", \"FileSystemEntriesCallback\", \"FileSystemEntry\", \"FileSystemEntryCallback\", \"FileSystemFileEntry\", \"FileSystemFileHandle\", \"FileSystemFlags\", \"FileSystemGetDirectoryOptions\", \"FileSystemGetFileOptions\", \"FileSystemHandle\", \"FileSystemHandleKind\", \"FileSystemHandlePermissionDescriptor\", \"FileSystemPermissionDescriptor\", \"FileSystemPermissionMode\", \"FileSystemReadWriteOptions\", \"FileSystemRemoveOptions\", \"FileSystemSyncAccessHandle\", \"FileSystemSyncAccessHandleMode\", \"FileSystemSyncAccessHandleOptions\", \"FileSystemWritableFileStream\", \"FillLightMode\", \"FillMode\", \"FlashClassification\", \"FlowControlType\", \"FocusEvent\", \"FocusEventInit\", \"FocusOptions\", \"FontData\", \"FontFace\", \"FontFaceDescriptors\", \"FontFaceLoadStatus\", \"FontFaceSet\", \"FontFaceSetIterator\", \"FontFaceSetIteratorResult\", \"FontFaceSetLoadEvent\", \"FontFaceSetLoadEventInit\", \"FontFaceSetLoadStatus\", \"FormData\", \"FrameType\", \"FuzzingFunctions\", \"GainNode\", \"GainOptions\", \"Gamepad\", \"GamepadButton\", \"GamepadEffectParameters\", \"GamepadEvent\", \"GamepadEventInit\", \"GamepadHand\", \"GamepadHapticActuator\", \"GamepadHapticActuatorType\", \"GamepadHapticEffectType\", \"GamepadHapticsResult\", \"GamepadMappingType\", \"GamepadPose\", \"GamepadTouch\", \"Geolocation\", \"GeolocationCoordinates\", \"GeolocationPosition\", \"GeolocationPositionError\", \"GestureEvent\", \"GetAnimationsOptions\", \"GetRootNodeOptions\", \"GetUserMediaRequest\", \"Gpu\", \"GpuAdapter\", \"GpuAdapterInfo\", \"GpuAddressMode\", \"GpuAutoLayoutMode\", \"GpuBindGroup\", \"GpuBindGroupDescriptor\", \"GpuBindGroupEntry\", \"GpuBindGroupLayout\", \"GpuBindGroupLayoutDescriptor\", \"GpuBindGroupLayoutEntry\", \"GpuBlendComponent\", \"GpuBlendFactor\", \"GpuBlendOperation\", \"GpuBlendState\", \"GpuBuffer\", \"GpuBufferBinding\", \"GpuBufferBindingLayout\", \"GpuBufferBindingType\", \"GpuBufferDescriptor\", \"GpuBufferMapState\", \"GpuCanvasAlphaMode\", \"GpuCanvasConfiguration\", \"GpuCanvasContext\", \"GpuCanvasToneMapping\", \"GpuCanvasToneMappingMode\", \"GpuColorDict\", \"GpuColorTargetState\", \"GpuCommandBuffer\", \"GpuCommandBufferDescriptor\", \"GpuCommandEncoder\", \"GpuCommandEncoderDescriptor\", \"GpuCompareFunction\", \"GpuCompilationInfo\", \"GpuCompilationMessage\", \"GpuCompilationMessageType\", \"GpuComputePassDescriptor\", \"GpuComputePassEncoder\", \"GpuComputePassTimestampWrites\", \"GpuComputePipeline\", \"GpuComputePipelineDescriptor\", \"GpuCopyExternalImageDestInfo\", \"GpuCopyExternalImageSourceInfo\", \"GpuCullMode\", \"GpuDepthStencilState\", \"GpuDevice\", \"GpuDeviceDescriptor\", \"GpuDeviceLostInfo\", \"GpuDeviceLostReason\", \"GpuError\", \"GpuErrorFilter\", \"GpuExtent3dDict\", \"GpuExternalTexture\", \"GpuExternalTextureBindingLayout\", \"GpuExternalTextureDescriptor\", \"GpuFeatureName\", \"GpuFilterMode\", \"GpuFragmentState\", \"GpuFrontFace\", \"GpuIndexFormat\", \"GpuInternalError\", \"GpuLoadOp\", \"GpuMipmapFilterMode\", \"GpuMultisampleState\", \"GpuObjectDescriptorBase\", \"GpuOrigin2dDict\", \"GpuOrigin3dDict\", \"GpuOutOfMemoryError\", \"GpuPipelineDescriptorBase\", \"GpuPipelineError\", \"GpuPipelineErrorInit\", \"GpuPipelineErrorReason\", \"GpuPipelineLayout\", \"GpuPipelineLayoutDescriptor\", \"GpuPowerPreference\", \"GpuPrimitiveState\", \"GpuPrimitiveTopology\", \"GpuProgrammableStage\", \"GpuQuerySet\", \"GpuQuerySetDescriptor\", \"GpuQueryType\", \"GpuQueue\", \"GpuQueueDescriptor\", \"GpuRenderBundle\", \"GpuRenderBundleDescriptor\", \"GpuRenderBundleEncoder\", \"GpuRenderBundleEncoderDescriptor\", \"GpuRenderPassColorAttachment\", \"GpuRenderPassDepthStencilAttachment\", \"GpuRenderPassDescriptor\", \"GpuRenderPassEncoder\", \"GpuRenderPassLayout\", \"GpuRenderPassTimestampWrites\", \"GpuRenderPipeline\", \"GpuRenderPipelineDescriptor\", \"GpuRequestAdapterOptions\", \"GpuSampler\", \"GpuSamplerBindingLayout\", \"GpuSamplerBindingType\", \"GpuSamplerDescriptor\", \"GpuShaderModule\", \"GpuShaderModuleCompilationHint\", \"GpuShaderModuleDescriptor\", \"GpuStencilFaceState\", \"GpuStencilOperation\", \"GpuStorageTextureAccess\", \"GpuStorageTextureBindingLayout\", \"GpuStoreOp\", \"GpuSupportedFeatures\", \"GpuSupportedLimits\", \"GpuTexelCopyBufferInfo\", \"GpuTexelCopyBufferLayout\", \"GpuTexelCopyTextureInfo\", \"GpuTexture\", \"GpuTextureAspect\", \"GpuTextureBindingLayout\", \"GpuTextureDescriptor\", \"GpuTextureDimension\", \"GpuTextureFormat\", \"GpuTextureSampleType\", \"GpuTextureView\", \"GpuTextureViewDescriptor\", \"GpuTextureViewDimension\", \"GpuUncapturedErrorEvent\", \"GpuUncapturedErrorEventInit\", \"GpuValidationError\", \"GpuVertexAttribute\", \"GpuVertexBufferLayout\", \"GpuVertexFormat\", \"GpuVertexState\", \"GpuVertexStepMode\", \"GroupedHistoryEventInit\", \"HalfOpenInfoDict\", \"HardwareAcceleration\", \"HashChangeEvent\", \"HashChangeEventInit\", \"Headers\", \"HeadersGuardEnum\", \"Hid\", \"HidCollectionInfo\", \"HidConnectionEvent\", \"HidConnectionEventInit\", \"HidDevice\", \"HidDeviceFilter\", \"HidDeviceRequestOptions\", \"HidInputReportEvent\", \"HidInputReportEventInit\", \"HidReportInfo\", \"HidReportItem\", \"HidUnitSystem\", \"HiddenPluginEventInit\", \"Highlight\", \"HighlightHitResult\", \"HighlightRegistry\", \"HighlightType\", \"HighlightsFromPointOptions\", \"History\", \"HitRegionOptions\", \"HkdfParams\", \"HmacDerivedKeyParams\", \"HmacImportParams\", \"HmacKeyAlgorithm\", \"HmacKeyGenParams\", \"HtmlAllCollection\", \"HtmlAnchorElement\", \"HtmlAreaElement\", \"HtmlAudioElement\", \"HtmlBaseElement\", \"HtmlBodyElement\", \"HtmlBrElement\", \"HtmlButtonElement\", \"HtmlCanvasElement\", \"HtmlCollection\", \"HtmlDListElement\", \"HtmlDataElement\", \"HtmlDataListElement\", \"HtmlDetailsElement\", \"HtmlDialogElement\", \"HtmlDirectoryElement\", \"HtmlDivElement\", \"HtmlDocument\", \"HtmlElement\", \"HtmlEmbedElement\", \"HtmlFieldSetElement\", \"HtmlFontElement\", \"HtmlFormControlsCollection\", \"HtmlFormElement\", \"HtmlFrameElement\", \"HtmlFrameSetElement\", \"HtmlHeadElement\", \"HtmlHeadingElement\", \"HtmlHrElement\", \"HtmlHtmlElement\", \"HtmlIFrameElement\", \"HtmlImageElement\", \"HtmlInputElement\", \"HtmlLabelElement\", \"HtmlLegendElement\", \"HtmlLiElement\", \"HtmlLinkElement\", \"HtmlMapElement\", \"HtmlMediaElement\", \"HtmlMenuElement\", \"HtmlMenuItemElement\", \"HtmlMetaElement\", \"HtmlMeterElement\", \"HtmlModElement\", \"HtmlOListElement\", \"HtmlObjectElement\", \"HtmlOptGroupElement\", \"HtmlOptionElement\", \"HtmlOptionsCollection\", \"HtmlOutputElement\", \"HtmlParagraphElement\", \"HtmlParamElement\", \"HtmlPictureElement\", \"HtmlPreElement\", \"HtmlProgressElement\", \"HtmlQuoteElement\", \"HtmlScriptElement\", \"HtmlSelectElement\", \"HtmlSlotElement\", \"HtmlSourceElement\", \"HtmlSpanElement\", \"HtmlStyleElement\", \"HtmlTableCaptionElement\", \"HtmlTableCellElement\", \"HtmlTableColElement\", \"HtmlTableElement\", \"HtmlTableRowElement\", \"HtmlTableSectionElement\", \"HtmlTemplateElement\", \"HtmlTextAreaElement\", \"HtmlTimeElement\", \"HtmlTitleElement\", \"HtmlTrackElement\", \"HtmlUListElement\", \"HtmlUnknownElement\", \"HtmlVideoElement\", \"HttpConnDict\", \"HttpConnInfo\", \"HttpConnectionElement\", \"IdbCursor\", \"IdbCursorDirection\", \"IdbCursorWithValue\", \"IdbDatabase\", \"IdbFactory\", \"IdbFileHandle\", \"IdbFileMetadataParameters\", \"IdbFileRequest\", \"IdbIndex\", \"IdbIndexParameters\", \"IdbKeyRange\", \"IdbLocaleAwareKeyRange\", \"IdbMutableFile\", \"IdbObjectStore\", \"IdbObjectStoreParameters\", \"IdbOpenDbOptions\", \"IdbOpenDbRequest\", \"IdbRequest\", \"IdbRequestReadyState\", \"IdbTransaction\", \"IdbTransactionDurability\", \"IdbTransactionMode\", \"IdbTransactionOptions\", \"IdbVersionChangeEvent\", \"IdbVersionChangeEventInit\", \"IdleDeadline\", \"IdleRequestOptions\", \"IirFilterNode\", \"IirFilterOptions\", \"ImageBitmap\", \"ImageBitmapOptions\", \"ImageBitmapRenderingContext\", \"ImageCapture\", \"ImageCaptureError\", \"ImageCaptureErrorEvent\", \"ImageCaptureErrorEventInit\", \"ImageData\", \"ImageDecodeOptions\", \"ImageDecodeResult\", \"ImageDecoder\", \"ImageDecoderInit\", \"ImageEncodeOptions\", \"ImageOrientation\", \"ImageTrack\", \"ImageTrackList\", \"InputDeviceInfo\", \"InputEvent\", \"InputEventInit\", \"IntersectionObserver\", \"IntersectionObserverEntry\", \"IntersectionObserverEntryInit\", \"IntersectionObserverInit\", \"IntlUtils\", \"IsInputPendingOptions\", \"IterableKeyAndValueResult\", \"IterableKeyOrValueResult\", \"IterationCompositeOperation\", \"JsonWebKey\", \"KeyAlgorithm\", \"KeyEvent\", \"KeyFrameRequestEvent\", \"KeyIdsInitData\", \"KeyboardEvent\", \"KeyboardEventInit\", \"KeyframeAnimationOptions\", \"KeyframeEffect\", \"KeyframeEffectOptions\", \"L10nElement\", \"L10nValue\", \"LargeBlobSupport\", \"LatencyMode\", \"LifecycleCallbacks\", \"LineAlignSetting\", \"ListBoxObject\", \"LocalMediaStream\", \"LocaleInfo\", \"Location\", \"Lock\", \"LockInfo\", \"LockManager\", \"LockManagerSnapshot\", \"LockMode\", \"LockOptions\", \"MathMlElement\", \"MediaCapabilities\", \"MediaCapabilitiesInfo\", \"MediaConfiguration\", \"MediaDecodingConfiguration\", \"MediaDecodingType\", \"MediaDeviceInfo\", \"MediaDeviceKind\", \"MediaDevices\", \"MediaElementAudioSourceNode\", \"MediaElementAudioSourceOptions\", \"MediaEncodingConfiguration\", \"MediaEncodingType\", \"MediaEncryptedEvent\", \"MediaError\", \"MediaImage\", \"MediaKeyError\", \"MediaKeyMessageEvent\", \"MediaKeyMessageEventInit\", \"MediaKeyMessageType\", \"MediaKeyNeededEventInit\", \"MediaKeySession\", \"MediaKeySessionType\", \"MediaKeyStatus\", \"MediaKeyStatusMap\", \"MediaKeySystemAccess\", \"MediaKeySystemConfiguration\", \"MediaKeySystemMediaCapability\", \"MediaKeySystemStatus\", \"MediaKeys\", \"MediaKeysPolicy\", \"MediaKeysRequirement\", \"MediaList\", \"MediaMetadata\", \"MediaMetadataInit\", \"MediaPositionState\", \"MediaQueryList\", \"MediaQueryListEvent\", \"MediaQueryListEventInit\", \"MediaRecorder\", \"MediaRecorderErrorEvent\", \"MediaRecorderErrorEventInit\", \"MediaRecorderOptions\", \"MediaSession\", \"MediaSessionAction\", \"MediaSessionActionDetails\", \"MediaSessionPlaybackState\", \"MediaSettingsRange\", \"MediaSource\", \"MediaSourceEndOfStreamError\", \"MediaSourceEnum\", \"MediaSourceReadyState\", \"MediaStream\", \"MediaStreamAudioDestinationNode\", \"MediaStreamAudioSourceNode\", \"MediaStreamAudioSourceOptions\", \"MediaStreamConstraints\", \"MediaStreamError\", \"MediaStreamEvent\", \"MediaStreamEventInit\", \"MediaStreamTrack\", \"MediaStreamTrackEvent\", \"MediaStreamTrackEventInit\", \"MediaStreamTrackGenerator\", \"MediaStreamTrackGeneratorInit\", \"MediaStreamTrackProcessor\", \"MediaStreamTrackProcessorInit\", \"MediaStreamTrackState\", \"MediaTrackCapabilities\", \"MediaTrackConstraintSet\", \"MediaTrackConstraints\", \"MediaTrackSettings\", \"MediaTrackSupportedConstraints\", \"MemoryAttribution\", \"MemoryAttributionContainer\", \"MemoryBreakdownEntry\", \"MemoryMeasurement\", \"MessageChannel\", \"MessageEvent\", \"MessageEventInit\", \"MessagePort\", \"MeteringMode\", \"MidiAccess\", \"MidiConnectionEvent\", \"MidiConnectionEventInit\", \"MidiInput\", \"MidiInputMap\", \"MidiMessageEvent\", \"MidiMessageEventInit\", \"MidiOptions\", \"MidiOutput\", \"MidiOutputMap\", \"MidiPort\", \"MidiPortConnectionState\", \"MidiPortDeviceState\", \"MidiPortType\", \"MimeType\", \"MimeTypeArray\", \"MouseEvent\", \"MouseEventInit\", \"MouseScrollEvent\", \"MozDebug\", \"MutationEvent\", \"MutationObserver\", \"MutationObserverInit\", \"MutationObservingInfo\", \"MutationRecord\", \"NamedNodeMap\", \"NativeOsFileReadOptions\", \"NativeOsFileWriteAtomicOptions\", \"NavigationType\", \"Navigator\", \"NavigatorAutomationInformation\", \"NavigatorUaBrandVersion\", \"NavigatorUaData\", \"NetworkCommandOptions\", \"NetworkInformation\", \"NetworkResultOptions\", \"Node\", \"NodeFilter\", \"NodeIterator\", \"NodeList\", \"Notification\", \"NotificationAction\", \"NotificationDirection\", \"NotificationEvent\", \"NotificationEventInit\", \"NotificationOptions\", \"NotificationPermission\", \"ObserverCallback\", \"OesElementIndexUint\", \"OesStandardDerivatives\", \"OesTextureFloat\", \"OesTextureFloatLinear\", \"OesTextureHalfFloat\", \"OesTextureHalfFloatLinear\", \"OesVertexArrayObject\", \"OfflineAudioCompletionEvent\", \"OfflineAudioCompletionEventInit\", \"OfflineAudioContext\", \"OfflineAudioContextOptions\", \"OfflineResourceList\", \"OffscreenCanvas\", \"OffscreenCanvasRenderingContext2d\", \"OpenFilePickerOptions\", \"OpenWindowEventDetail\", \"OptionalEffectTiming\", \"OrientationLockType\", \"OrientationType\", \"OscillatorNode\", \"OscillatorOptions\", \"OscillatorType\", \"OverSampleType\", \"OvrMultiview2\", \"PageTransitionEvent\", \"PageTransitionEventInit\", \"PaintRequest\", \"PaintRequestList\", \"PaintWorkletGlobalScope\", \"PannerNode\", \"PannerOptions\", \"PanningModelType\", \"ParityType\", \"Path2d\", \"PaymentAddress\", \"PaymentComplete\", \"PaymentMethodChangeEvent\", \"PaymentMethodChangeEventInit\", \"PaymentRequestUpdateEvent\", \"PaymentRequestUpdateEventInit\", \"PaymentResponse\", \"Pbkdf2Params\", \"PcImplIceConnectionState\", \"PcImplIceGatheringState\", \"PcImplSignalingState\", \"PcObserverStateType\", \"Performance\", \"PerformanceEntry\", \"PerformanceEntryEventInit\", \"PerformanceEntryFilterOptions\", \"PerformanceMark\", \"PerformanceMarkOptions\", \"PerformanceMeasure\", \"PerformanceMeasureOptions\", \"PerformanceNavigation\", \"PerformanceNavigationTiming\", \"PerformanceObserver\", \"PerformanceObserverEntryList\", \"PerformanceObserverInit\", \"PerformanceResourceTiming\", \"PerformanceServerTiming\", \"PerformanceTiming\", \"PeriodicWave\", \"PeriodicWaveConstraints\", \"PeriodicWaveOptions\", \"PermissionDescriptor\", \"PermissionName\", \"PermissionState\", \"PermissionStatus\", \"Permissions\", \"PhotoCapabilities\", \"PhotoSettings\", \"PictureInPictureEvent\", \"PictureInPictureEventInit\", \"PictureInPictureWindow\", \"PlaneLayout\", \"PlaybackDirection\", \"Plugin\", \"PluginArray\", \"PluginCrashedEventInit\", \"Point2d\", \"PointerEvent\", \"PointerEventInit\", \"PopStateEvent\", \"PopStateEventInit\", \"PopupBlockedEvent\", \"PopupBlockedEventInit\", \"Position\", \"PositionAlignSetting\", \"PositionError\", \"PositionOptions\", \"PremultiplyAlpha\", \"Presentation\", \"PresentationAvailability\", \"PresentationConnection\", \"PresentationConnectionAvailableEvent\", \"PresentationConnectionAvailableEventInit\", \"PresentationConnectionBinaryType\", \"PresentationConnectionCloseEvent\", \"PresentationConnectionCloseEventInit\", \"PresentationConnectionClosedReason\", \"PresentationConnectionList\", \"PresentationConnectionState\", \"PresentationReceiver\", \"PresentationRequest\", \"PresentationStyle\", \"ProcessingInstruction\", \"ProfileTimelineLayerRect\", \"ProfileTimelineMarker\", \"ProfileTimelineMessagePortOperationType\", \"ProfileTimelineStackFrame\", \"ProfileTimelineWorkerOperationType\", \"ProgressEvent\", \"ProgressEventInit\", \"PromiseNativeHandler\", \"PromiseRejectionEvent\", \"PromiseRejectionEventInit\", \"PublicKeyCredential\", \"PublicKeyCredentialCreationOptions\", \"PublicKeyCredentialCreationOptionsJson\", \"PublicKeyCredentialDescriptor\", \"PublicKeyCredentialDescriptorJson\", \"PublicKeyCredentialEntity\", \"PublicKeyCredentialHints\", \"PublicKeyCredentialParameters\", \"PublicKeyCredentialRequestOptions\", \"PublicKeyCredentialRequestOptionsJson\", \"PublicKeyCredentialRpEntity\", \"PublicKeyCredentialType\", \"PublicKeyCredentialUserEntity\", \"PublicKeyCredentialUserEntityJson\", \"PushEncryptionKeyName\", \"PushEvent\", \"PushEventInit\", \"PushManager\", \"PushMessageData\", \"PushPermissionState\", \"PushSubscription\", \"PushSubscriptionInit\", \"PushSubscriptionJson\", \"PushSubscriptionKeys\", \"PushSubscriptionOptions\", \"PushSubscriptionOptionsInit\", \"QueryOptions\", \"QueuingStrategy\", \"QueuingStrategyInit\", \"RadioNodeList\", \"Range\", \"RcwnPerfStats\", \"RcwnStatus\", \"ReadableByteStreamController\", \"ReadableStream\", \"ReadableStreamByobReader\", \"ReadableStreamByobRequest\", \"ReadableStreamDefaultController\", \"ReadableStreamDefaultReader\", \"ReadableStreamGetReaderOptions\", \"ReadableStreamIteratorOptions\", \"ReadableStreamReadResult\", \"ReadableStreamReaderMode\", \"ReadableStreamType\", \"ReadableWritablePair\", \"RecordingState\", \"RedEyeReduction\", \"ReferrerPolicy\", \"RegisterRequest\", \"RegisterResponse\", \"RegisteredKey\", \"RegistrationOptions\", \"RegistrationResponseJson\", \"Request\", \"RequestCache\", \"RequestCredentials\", \"RequestDestination\", \"RequestDeviceOptions\", \"RequestInit\", \"RequestMediaKeySystemAccessNotification\", \"RequestMode\", \"RequestRedirect\", \"ResidentKeyRequirement\", \"ResizeObserver\", \"ResizeObserverBoxOptions\", \"ResizeObserverEntry\", \"ResizeObserverOptions\", \"ResizeObserverSize\", \"ResizeQuality\", \"Response\", \"ResponseInit\", \"ResponseType\", \"RsaHashedImportParams\", \"RsaOaepParams\", \"RsaOtherPrimesInfo\", \"RsaPssParams\", \"RtcAnswerOptions\", \"RtcBundlePolicy\", \"RtcCertificate\", \"RtcCertificateExpiration\", \"RtcCodecStats\", \"RtcConfiguration\", \"RtcDataChannel\", \"RtcDataChannelEvent\", \"RtcDataChannelEventInit\", \"RtcDataChannelInit\", \"RtcDataChannelState\", \"RtcDataChannelType\", \"RtcDegradationPreference\", \"RtcEncodedAudioFrame\", \"RtcEncodedAudioFrameMetadata\", \"RtcEncodedAudioFrameOptions\", \"RtcEncodedVideoFrame\", \"RtcEncodedVideoFrameMetadata\", \"RtcEncodedVideoFrameOptions\", \"RtcEncodedVideoFrameType\", \"RtcFecParameters\", \"RtcIceCandidate\", \"RtcIceCandidateInit\", \"RtcIceCandidatePairStats\", \"RtcIceCandidateStats\", \"RtcIceComponentStats\", \"RtcIceConnectionState\", \"RtcIceCredentialType\", \"RtcIceGatheringState\", \"RtcIceServer\", \"RtcIceTransportPolicy\", \"RtcIdentityAssertion\", \"RtcIdentityAssertionResult\", \"RtcIdentityProvider\", \"RtcIdentityProviderDetails\", \"RtcIdentityProviderOptions\", \"RtcIdentityProviderRegistrar\", \"RtcIdentityValidationResult\", \"RtcInboundRtpStreamStats\", \"RtcMediaStreamStats\", \"RtcMediaStreamTrackStats\", \"RtcOfferAnswerOptions\", \"RtcOfferOptions\", \"RtcOutboundRtpStreamStats\", \"RtcPeerConnection\", \"RtcPeerConnectionIceErrorEvent\", \"RtcPeerConnectionIceEvent\", \"RtcPeerConnectionIceEventInit\", \"RtcPeerConnectionState\", \"RtcPriorityType\", \"RtcRtcpParameters\", \"RtcRtpCapabilities\", \"RtcRtpCodecCapability\", \"RtcRtpCodecParameters\", \"RtcRtpContributingSource\", \"RtcRtpEncodingParameters\", \"RtcRtpHeaderExtensionCapability\", \"RtcRtpHeaderExtensionParameters\", \"RtcRtpParameters\", \"RtcRtpReceiver\", \"RtcRtpScriptTransform\", \"RtcRtpScriptTransformer\", \"RtcRtpSender\", \"RtcRtpSourceEntry\", \"RtcRtpSourceEntryType\", \"RtcRtpSynchronizationSource\", \"RtcRtpTransceiver\", \"RtcRtpTransceiverDirection\", \"RtcRtpTransceiverInit\", \"RtcRtxParameters\", \"RtcSdpType\", \"RtcSessionDescription\", \"RtcSessionDescriptionInit\", \"RtcSignalingState\", \"RtcStats\", \"RtcStatsIceCandidatePairState\", \"RtcStatsIceCandidateType\", \"RtcStatsReport\", \"RtcStatsReportInternal\", \"RtcStatsType\", \"RtcTrackEvent\", \"RtcTrackEventInit\", \"RtcTransformEvent\", \"RtcTransportStats\", \"RtcdtmfSender\", \"RtcdtmfToneChangeEvent\", \"RtcdtmfToneChangeEventInit\", \"RtcrtpContributingSourceStats\", \"RtcrtpStreamStats\", \"SFrameTransform\", \"SFrameTransformErrorEvent\", \"SFrameTransformErrorEventInit\", \"SFrameTransformErrorEventType\", \"SFrameTransformOptions\", \"SFrameTransformRole\", \"SaveFilePickerOptions\", \"Scheduler\", \"SchedulerPostTaskOptions\", \"Scheduling\", \"Screen\", \"ScreenColorGamut\", \"ScreenDetailed\", \"ScreenDetails\", \"ScreenLuminance\", \"ScreenOrientation\", \"ScriptProcessorNode\", \"ScrollAreaEvent\", \"ScrollBehavior\", \"ScrollBoxObject\", \"ScrollIntoViewContainer\", \"ScrollIntoViewOptions\", \"ScrollLogicalPosition\", \"ScrollOptions\", \"ScrollRestoration\", \"ScrollSetting\", \"ScrollState\", \"ScrollToOptions\", \"ScrollViewChangeEventInit\", \"SecurityPolicyViolationEvent\", \"SecurityPolicyViolationEventDisposition\", \"SecurityPolicyViolationEventInit\", \"Selection\", \"SelectionMode\", \"Serial\", \"SerialInputSignals\", \"SerialOptions\", \"SerialOutputSignals\", \"SerialPort\", \"SerialPortFilter\", \"SerialPortInfo\", \"SerialPortRequestOptions\", \"ServerSocketOptions\", \"ServiceWorker\", \"ServiceWorkerContainer\", \"ServiceWorkerGlobalScope\", \"ServiceWorkerRegistration\", \"ServiceWorkerState\", \"ServiceWorkerUpdateViaCache\", \"ShadowRoot\", \"ShadowRootInit\", \"ShadowRootMode\", \"ShareData\", \"SharedWorker\", \"SharedWorkerGlobalScope\", \"ShowPopoverOptions\", \"SignResponse\", \"SocketElement\", \"SocketOptions\", \"SocketReadyState\", \"SocketsDict\", \"SourceBuffer\", \"SourceBufferAppendMode\", \"SourceBufferList\", \"SpeechGrammar\", \"SpeechGrammarList\", \"SpeechRecognition\", \"SpeechRecognitionAlternative\", \"SpeechRecognitionError\", \"SpeechRecognitionErrorCode\", \"SpeechRecognitionErrorInit\", \"SpeechRecognitionEvent\", \"SpeechRecognitionEventInit\", \"SpeechRecognitionResult\", \"SpeechRecognitionResultList\", \"SpeechSynthesis\", \"SpeechSynthesisErrorCode\", \"SpeechSynthesisErrorEvent\", \"SpeechSynthesisErrorEventInit\", \"SpeechSynthesisEvent\", \"SpeechSynthesisEventInit\", \"SpeechSynthesisUtterance\", \"SpeechSynthesisVoice\", \"StaticRange\", \"StaticRangeInit\", \"StereoPannerNode\", \"StereoPannerOptions\", \"Storage\", \"StorageEstimate\", \"StorageEvent\", \"StorageEventInit\", \"StorageManager\", \"StorageType\", \"StreamPipeOptions\", \"StyleRuleChangeEventInit\", \"StyleSheet\", \"StyleSheetApplicableStateChangeEventInit\", \"StyleSheetChangeEventInit\", \"StyleSheetList\", \"SubmitEvent\", \"SubmitEventInit\", \"SubtleCrypto\", \"SupportedType\", \"SvcOutputMetadata\", \"SvgAngle\", \"SvgAnimateElement\", \"SvgAnimateMotionElement\", \"SvgAnimateTransformElement\", \"SvgAnimatedAngle\", \"SvgAnimatedBoolean\", \"SvgAnimatedEnumeration\", \"SvgAnimatedInteger\", \"SvgAnimatedLength\", \"SvgAnimatedLengthList\", \"SvgAnimatedNumber\", \"SvgAnimatedNumberList\", \"SvgAnimatedPreserveAspectRatio\", \"SvgAnimatedRect\", \"SvgAnimatedString\", \"SvgAnimatedTransformList\", \"SvgAnimationElement\", \"SvgBoundingBoxOptions\", \"SvgCircleElement\", \"SvgClipPathElement\", \"SvgComponentTransferFunctionElement\", \"SvgDefsElement\", \"SvgDescElement\", \"SvgElement\", \"SvgEllipseElement\", \"SvgFilterElement\", \"SvgForeignObjectElement\", \"SvgGeometryElement\", \"SvgGradientElement\", \"SvgGraphicsElement\", \"SvgImageElement\", \"SvgLength\", \"SvgLengthList\", \"SvgLineElement\", \"SvgLinearGradientElement\", \"SvgMarkerElement\", \"SvgMaskElement\", \"SvgMatrix\", \"SvgMetadataElement\", \"SvgNumber\", \"SvgNumberList\", \"SvgPathElement\", \"SvgPathSeg\", \"SvgPathSegArcAbs\", \"SvgPathSegArcRel\", \"SvgPathSegClosePath\", \"SvgPathSegCurvetoCubicAbs\", \"SvgPathSegCurvetoCubicRel\", \"SvgPathSegCurvetoCubicSmoothAbs\", \"SvgPathSegCurvetoCubicSmoothRel\", \"SvgPathSegCurvetoQuadraticAbs\", \"SvgPathSegCurvetoQuadraticRel\", \"SvgPathSegCurvetoQuadraticSmoothAbs\", \"SvgPathSegCurvetoQuadraticSmoothRel\", \"SvgPathSegLinetoAbs\", \"SvgPathSegLinetoHorizontalAbs\", \"SvgPathSegLinetoHorizontalRel\", \"SvgPathSegLinetoRel\", \"SvgPathSegLinetoVerticalAbs\", \"SvgPathSegLinetoVerticalRel\", \"SvgPathSegList\", \"SvgPathSegMovetoAbs\", \"SvgPathSegMovetoRel\", \"SvgPatternElement\", \"SvgPoint\", \"SvgPointList\", \"SvgPolygonElement\", \"SvgPolylineElement\", \"SvgPreserveAspectRatio\", \"SvgRadialGradientElement\", \"SvgRect\", \"SvgRectElement\", \"SvgScriptElement\", \"SvgSetElement\", \"SvgStopElement\", \"SvgStringList\", \"SvgStyleElement\", \"SvgSwitchElement\", \"SvgSymbolElement\", \"SvgTextContentElement\", \"SvgTextElement\", \"SvgTextPathElement\", \"SvgTextPositioningElement\", \"SvgTitleElement\", \"SvgTransform\", \"SvgTransformList\", \"SvgUnitTypes\", \"SvgUseElement\", \"SvgViewElement\", \"SvgZoomAndPan\", \"SvgaElement\", \"SvgfeBlendElement\", \"SvgfeColorMatrixElement\", \"SvgfeComponentTransferElement\", \"SvgfeCompositeElement\", \"SvgfeConvolveMatrixElement\", \"SvgfeDiffuseLightingElement\", \"SvgfeDisplacementMapElement\", \"SvgfeDistantLightElement\", \"SvgfeDropShadowElement\", \"SvgfeFloodElement\", \"SvgfeFuncAElement\", \"SvgfeFuncBElement\", \"SvgfeFuncGElement\", \"SvgfeFuncRElement\", \"SvgfeGaussianBlurElement\", \"SvgfeImageElement\", \"SvgfeMergeElement\", \"SvgfeMergeNodeElement\", \"SvgfeMorphologyElement\", \"SvgfeOffsetElement\", \"SvgfePointLightElement\", \"SvgfeSpecularLightingElement\", \"SvgfeSpotLightElement\", \"SvgfeTileElement\", \"SvgfeTurbulenceElement\", \"SvggElement\", \"SvgmPathElement\", \"SvgsvgElement\", \"SvgtSpanElement\", \"TaskController\", \"TaskControllerInit\", \"TaskPriority\", \"TaskPriorityChangeEvent\", \"TaskPriorityChangeEventInit\", \"TaskSignal\", \"TaskSignalAnyInit\", \"TcpReadyState\", \"TcpServerSocket\", \"TcpServerSocketEvent\", \"TcpServerSocketEventInit\", \"TcpSocket\", \"TcpSocketBinaryType\", \"TcpSocketErrorEvent\", \"TcpSocketErrorEventInit\", \"TcpSocketEvent\", \"TcpSocketEventInit\", \"Text\", \"TextDecodeOptions\", \"TextDecoder\", \"TextDecoderOptions\", \"TextEncoder\", \"TextMetrics\", \"TextTrack\", \"TextTrackCue\", \"TextTrackCueList\", \"TextTrackKind\", \"TextTrackList\", \"TextTrackMode\", \"TimeEvent\", \"TimeRanges\", \"ToggleEvent\", \"ToggleEventInit\", \"TogglePopoverOptions\", \"TokenBinding\", \"TokenBindingStatus\", \"Touch\", \"TouchEvent\", \"TouchEventInit\", \"TouchInit\", \"TouchList\", \"TrackEvent\", \"TrackEventInit\", \"TransformStream\", \"TransformStreamDefaultController\", \"Transformer\", \"TransitionEvent\", \"TransitionEventInit\", \"Transport\", \"TreeBoxObject\", \"TreeCellInfo\", \"TreeView\", \"TreeWalker\", \"U2f\", \"U2fClientData\", \"ULongRange\", \"UaDataValues\", \"UaLowEntropyJson\", \"UdpMessageEventInit\", \"UdpOptions\", \"UiEvent\", \"UiEventInit\", \"UnderlyingSink\", \"UnderlyingSource\", \"Url\", \"UrlSearchParams\", \"Usb\", \"UsbAlternateInterface\", \"UsbConfiguration\", \"UsbConnectionEvent\", \"UsbConnectionEventInit\", \"UsbControlTransferParameters\", \"UsbDevice\", \"UsbDeviceFilter\", \"UsbDeviceRequestOptions\", \"UsbDirection\", \"UsbEndpoint\", \"UsbEndpointType\", \"UsbInTransferResult\", \"UsbInterface\", \"UsbIsochronousInTransferPacket\", \"UsbIsochronousInTransferResult\", \"UsbIsochronousOutTransferPacket\", \"UsbIsochronousOutTransferResult\", \"UsbOutTransferResult\", \"UsbPermissionDescriptor\", \"UsbPermissionResult\", \"UsbPermissionStorage\", \"UsbRecipient\", \"UsbRequestType\", \"UsbTransferStatus\", \"UserActivation\", \"UserProximityEvent\", \"UserProximityEventInit\", \"UserVerificationRequirement\", \"ValidityState\", \"ValueEvent\", \"ValueEventInit\", \"VideoColorPrimaries\", \"VideoColorSpace\", \"VideoColorSpaceInit\", \"VideoConfiguration\", \"VideoDecoder\", \"VideoDecoderConfig\", \"VideoDecoderInit\", \"VideoDecoderSupport\", \"VideoEncoder\", \"VideoEncoderBitrateMode\", \"VideoEncoderConfig\", \"VideoEncoderEncodeOptions\", \"VideoEncoderInit\", \"VideoEncoderSupport\", \"VideoFacingModeEnum\", \"VideoFrame\", \"VideoFrameBufferInit\", \"VideoFrameCopyToOptions\", \"VideoFrameInit\", \"VideoFrameMetadata\", \"VideoMatrixCoefficients\", \"VideoPixelFormat\", \"VideoPlaybackQuality\", \"VideoStreamTrack\", \"VideoTrack\", \"VideoTrackList\", \"VideoTransferCharacteristics\", \"ViewTransition\", \"VisibilityState\", \"VisualViewport\", \"VoidCallback\", \"VrDisplay\", \"VrDisplayCapabilities\", \"VrEye\", \"VrEyeParameters\", \"VrFieldOfView\", \"VrFrameData\", \"VrLayer\", \"VrMockController\", \"VrMockDisplay\", \"VrPose\", \"VrServiceTest\", \"VrStageParameters\", \"VrSubmitFrameResult\", \"VttCue\", \"VttRegion\", \"WakeLock\", \"WakeLockSentinel\", \"WakeLockType\", \"WatchAdvertisementsOptions\", \"WaveShaperNode\", \"WaveShaperOptions\", \"WebGl2RenderingContext\", \"WebGlActiveInfo\", \"WebGlBuffer\", \"WebGlContextAttributes\", \"WebGlContextEvent\", \"WebGlContextEventInit\", \"WebGlFramebuffer\", \"WebGlPowerPreference\", \"WebGlProgram\", \"WebGlQuery\", \"WebGlRenderbuffer\", \"WebGlRenderingContext\", \"WebGlSampler\", \"WebGlShader\", \"WebGlShaderPrecisionFormat\", \"WebGlSync\", \"WebGlTexture\", \"WebGlTransformFeedback\", \"WebGlUniformLocation\", \"WebGlVertexArrayObject\", \"WebKitCssMatrix\", \"WebSocket\", \"WebSocketDict\", \"WebSocketElement\", \"WebTransport\", \"WebTransportBidirectionalStream\", \"WebTransportCloseInfo\", \"WebTransportCongestionControl\", \"WebTransportDatagramDuplexStream\", \"WebTransportDatagramStats\", \"WebTransportError\", \"WebTransportErrorOptions\", \"WebTransportErrorSource\", \"WebTransportHash\", \"WebTransportOptions\", \"WebTransportReceiveStream\", \"WebTransportReceiveStreamStats\", \"WebTransportReliabilityMode\", \"WebTransportSendStream\", \"WebTransportSendStreamOptions\", \"WebTransportSendStreamStats\", \"WebTransportStats\", \"WebglColorBufferFloat\", \"WebglCompressedTextureAstc\", \"WebglCompressedTextureAtc\", \"WebglCompressedTextureEtc\", \"WebglCompressedTextureEtc1\", \"WebglCompressedTexturePvrtc\", \"WebglCompressedTextureS3tc\", \"WebglCompressedTextureS3tcSrgb\", \"WebglDebugRendererInfo\", \"WebglDebugShaders\", \"WebglDepthTexture\", \"WebglDrawBuffers\", \"WebglLoseContext\", \"WebglMultiDraw\", \"WellKnownDirectory\", \"WgslLanguageFeatures\", \"WheelEvent\", \"WheelEventInit\", \"WidevineCdmManifest\", \"Window\", \"WindowClient\", \"Worker\", \"WorkerDebuggerGlobalScope\", \"WorkerGlobalScope\", \"WorkerLocation\", \"WorkerNavigator\", \"WorkerOptions\", \"WorkerType\", \"Worklet\", \"WorkletGlobalScope\", \"WorkletOptions\", \"WritableStream\", \"WritableStreamDefaultController\", \"WritableStreamDefaultWriter\", \"WriteCommandType\", \"WriteParams\", \"XPathExpression\", \"XPathNsResolver\", \"XPathResult\", \"XmlDocument\", \"XmlHttpRequest\", \"XmlHttpRequestEventTarget\", \"XmlHttpRequestResponseType\", \"XmlHttpRequestUpload\", \"XmlSerializer\", \"XrBoundedReferenceSpace\", \"XrEye\", \"XrFrame\", \"XrHand\", \"XrHandJoint\", \"XrHandedness\", \"XrInputSource\", \"XrInputSourceArray\", \"XrInputSourceEvent\", \"XrInputSourceEventInit\", \"XrInputSourcesChangeEvent\", \"XrInputSourcesChangeEventInit\", \"XrJointPose\", \"XrJointSpace\", \"XrLayer\", \"XrPermissionDescriptor\", \"XrPermissionStatus\", \"XrPose\", \"XrReferenceSpace\", \"XrReferenceSpaceEvent\", \"XrReferenceSpaceEventInit\", \"XrReferenceSpaceType\", \"XrRenderState\", \"XrRenderStateInit\", \"XrRigidTransform\", \"XrSession\", \"XrSessionEvent\", \"XrSessionEventInit\", \"XrSessionInit\", \"XrSessionMode\", \"XrSessionSupportedPermissionDescriptor\", \"XrSpace\", \"XrSystem\", \"XrTargetRayMode\", \"XrView\", \"XrViewerPose\", \"XrViewport\", \"XrVisibilityState\", \"XrWebGlLayer\", \"XrWebGlLayerInit\", \"XsltProcessor\", \"console\", \"css\", \"default\", \"gpu_buffer_usage\", \"gpu_color_write\", \"gpu_map_mode\", \"gpu_shader_stage\", \"gpu_texture_usage\", \"std\"]","target":13536520916013249019,"profile":1303032602642564613,"path":4513332955075284669,"deps":[[5098792620852445434,"wasm_bindgen",false,6650567199088231542],[17679330592366598538,"js_sys",false,8592139079836159418]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/web-sys-bc9f0b4e6ee60692/dep-lib-web_sys","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/winnow-ef9faab41c699399/dep-lib-winnow b/examples/leptos_axum/target/debug/.fingerprint/winnow-ef9faab41c699399/dep-lib-winnow new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/winnow-ef9faab41c699399/dep-lib-winnow differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/winnow-ef9faab41c699399/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/winnow-ef9faab41c699399/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/winnow-ef9faab41c699399/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/winnow-ef9faab41c699399/lib-winnow b/examples/leptos_axum/target/debug/.fingerprint/winnow-ef9faab41c699399/lib-winnow new file mode 100644 index 0000000..e1eda48 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/winnow-ef9faab41c699399/lib-winnow @@ -0,0 +1 @@ +53f72701a553ab22 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/winnow-ef9faab41c699399/lib-winnow.json b/examples/leptos_axum/target/debug/.fingerprint/winnow-ef9faab41c699399/lib-winnow.json new file mode 100644 index 0000000..d904e0e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/winnow-ef9faab41c699399/lib-winnow.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"ascii\", \"binary\", \"default\", \"parser\", \"std\"]","declared_features":"[\"alloc\", \"ascii\", \"binary\", \"debug\", \"default\", \"parser\", \"simd\", \"std\", \"unstable-doc\", \"unstable-recover\"]","target":13376497836617006023,"profile":2148984495287369481,"path":13034385240361998361,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/winnow-ef9faab41c699399/dep-lib-winnow","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/writeable-d27a59526004cf7e/dep-lib-writeable b/examples/leptos_axum/target/debug/.fingerprint/writeable-d27a59526004cf7e/dep-lib-writeable new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/writeable-d27a59526004cf7e/dep-lib-writeable differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/writeable-d27a59526004cf7e/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/writeable-d27a59526004cf7e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/writeable-d27a59526004cf7e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/writeable-d27a59526004cf7e/lib-writeable b/examples/leptos_axum/target/debug/.fingerprint/writeable-d27a59526004cf7e/lib-writeable new file mode 100644 index 0000000..680512c --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/writeable-d27a59526004cf7e/lib-writeable @@ -0,0 +1 @@ +01b412c4ff2be684 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/writeable-d27a59526004cf7e/lib-writeable.json b/examples/leptos_axum/target/debug/.fingerprint/writeable-d27a59526004cf7e/lib-writeable.json new file mode 100644 index 0000000..08b6f25 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/writeable-d27a59526004cf7e/lib-writeable.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"alloc\", \"default\", \"either\"]","target":6209224040855486982,"profile":15319846033271432293,"path":4603314379414331744,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/writeable-d27a59526004cf7e/dep-lib-writeable","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-7c7bdf068f7d340a/dep-lib-xxhash_rust b/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-7c7bdf068f7d340a/dep-lib-xxhash_rust new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-7c7bdf068f7d340a/dep-lib-xxhash_rust differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-7c7bdf068f7d340a/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-7c7bdf068f7d340a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-7c7bdf068f7d340a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-7c7bdf068f7d340a/lib-xxhash_rust b/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-7c7bdf068f7d340a/lib-xxhash_rust new file mode 100644 index 0000000..c0dfb60 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-7c7bdf068f7d340a/lib-xxhash_rust @@ -0,0 +1 @@ +cbf7382a8eb1dd61 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-7c7bdf068f7d340a/lib-xxhash_rust.json b/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-7c7bdf068f7d340a/lib-xxhash_rust.json new file mode 100644 index 0000000..809fe9f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-7c7bdf068f7d340a/lib-xxhash_rust.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"const_xxh64\"]","declared_features":"[\"const_xxh3\", \"const_xxh32\", \"const_xxh64\", \"std\", \"xxh3\", \"xxh32\", \"xxh64\"]","target":4163225083063804643,"profile":2241668132362809309,"path":17840125325460450824,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/xxhash-rust-7c7bdf068f7d340a/dep-lib-xxhash_rust","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-c7c0988ded3db730/dep-lib-xxhash_rust b/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-c7c0988ded3db730/dep-lib-xxhash_rust new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-c7c0988ded3db730/dep-lib-xxhash_rust differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-c7c0988ded3db730/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-c7c0988ded3db730/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-c7c0988ded3db730/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-c7c0988ded3db730/lib-xxhash_rust b/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-c7c0988ded3db730/lib-xxhash_rust new file mode 100644 index 0000000..94fa94a --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-c7c0988ded3db730/lib-xxhash_rust @@ -0,0 +1 @@ +5fdd58e8ca2f40db \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-c7c0988ded3db730/lib-xxhash_rust.json b/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-c7c0988ded3db730/lib-xxhash_rust.json new file mode 100644 index 0000000..77de4a5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/xxhash-rust-c7c0988ded3db730/lib-xxhash_rust.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"const_xxh64\"]","declared_features":"[\"const_xxh3\", \"const_xxh32\", \"const_xxh64\", \"std\", \"xxh3\", \"xxh32\", \"xxh64\"]","target":4163225083063804643,"profile":2225463790103693989,"path":17840125325460450824,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/xxhash-rust-c7c0988ded3db730/dep-lib-xxhash_rust","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/yansi-c70c0f24defc00dc/dep-lib-yansi b/examples/leptos_axum/target/debug/.fingerprint/yansi-c70c0f24defc00dc/dep-lib-yansi new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/yansi-c70c0f24defc00dc/dep-lib-yansi differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/yansi-c70c0f24defc00dc/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/yansi-c70c0f24defc00dc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/yansi-c70c0f24defc00dc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/yansi-c70c0f24defc00dc/lib-yansi b/examples/leptos_axum/target/debug/.fingerprint/yansi-c70c0f24defc00dc/lib-yansi new file mode 100644 index 0000000..6608043 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/yansi-c70c0f24defc00dc/lib-yansi @@ -0,0 +1 @@ +c5b471a099d197a5 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/yansi-c70c0f24defc00dc/lib-yansi.json b/examples/leptos_axum/target/debug/.fingerprint/yansi-c70c0f24defc00dc/lib-yansi.json new file mode 100644 index 0000000..ed2663a --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/yansi-c70c0f24defc00dc/lib-yansi.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"_nightly\", \"alloc\", \"default\", \"detect-env\", \"detect-tty\", \"hyperlink\", \"is-terminal\", \"std\"]","target":7022233409860942053,"profile":2225463790103693989,"path":9944352922566900089,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/yansi-c70c0f24defc00dc/dep-lib-yansi","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/yansi-c7e72d49211f840a/dep-lib-yansi b/examples/leptos_axum/target/debug/.fingerprint/yansi-c7e72d49211f840a/dep-lib-yansi new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/yansi-c7e72d49211f840a/dep-lib-yansi differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/yansi-c7e72d49211f840a/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/yansi-c7e72d49211f840a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/yansi-c7e72d49211f840a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/yansi-c7e72d49211f840a/lib-yansi b/examples/leptos_axum/target/debug/.fingerprint/yansi-c7e72d49211f840a/lib-yansi new file mode 100644 index 0000000..8b786d4 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/yansi-c7e72d49211f840a/lib-yansi @@ -0,0 +1 @@ +2c0bf2876d128ba1 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/yansi-c7e72d49211f840a/lib-yansi.json b/examples/leptos_axum/target/debug/.fingerprint/yansi-c7e72d49211f840a/lib-yansi.json new file mode 100644 index 0000000..eb4344e --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/yansi-c7e72d49211f840a/lib-yansi.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"_nightly\", \"alloc\", \"default\", \"detect-env\", \"detect-tty\", \"hyperlink\", \"is-terminal\", \"std\"]","target":7022233409860942053,"profile":2241668132362809309,"path":9944352922566900089,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/yansi-c7e72d49211f840a/dep-lib-yansi","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/yoke-6eff7b2f0fceec96/dep-lib-yoke b/examples/leptos_axum/target/debug/.fingerprint/yoke-6eff7b2f0fceec96/dep-lib-yoke new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/yoke-6eff7b2f0fceec96/dep-lib-yoke differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/yoke-6eff7b2f0fceec96/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/yoke-6eff7b2f0fceec96/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/yoke-6eff7b2f0fceec96/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/yoke-6eff7b2f0fceec96/lib-yoke b/examples/leptos_axum/target/debug/.fingerprint/yoke-6eff7b2f0fceec96/lib-yoke new file mode 100644 index 0000000..0094f25 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/yoke-6eff7b2f0fceec96/lib-yoke @@ -0,0 +1 @@ +4c1d89aa7b1abaa0 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/yoke-6eff7b2f0fceec96/lib-yoke.json b/examples/leptos_axum/target/debug/.fingerprint/yoke-6eff7b2f0fceec96/lib-yoke.json new file mode 100644 index 0000000..500acf7 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/yoke-6eff7b2f0fceec96/lib-yoke.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"derive\", \"zerofrom\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"serde\", \"zerofrom\"]","target":11250006364125496299,"profile":15470915970897398656,"path":11916407324591565764,"deps":[[12481580349051900383,"zerofrom",false,8622045262010753522],[12669569555400633618,"stable_deref_trait",false,6923334992282444819],[16311920433940660851,"yoke_derive",false,995896130041567262]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/yoke-6eff7b2f0fceec96/dep-lib-yoke","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/yoke-derive-b97dc8353690e6bb/dep-lib-yoke_derive b/examples/leptos_axum/target/debug/.fingerprint/yoke-derive-b97dc8353690e6bb/dep-lib-yoke_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/yoke-derive-b97dc8353690e6bb/dep-lib-yoke_derive differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/yoke-derive-b97dc8353690e6bb/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/yoke-derive-b97dc8353690e6bb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/yoke-derive-b97dc8353690e6bb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/yoke-derive-b97dc8353690e6bb/lib-yoke_derive b/examples/leptos_axum/target/debug/.fingerprint/yoke-derive-b97dc8353690e6bb/lib-yoke_derive new file mode 100644 index 0000000..43f8d47 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/yoke-derive-b97dc8353690e6bb/lib-yoke_derive @@ -0,0 +1 @@ +1e5850f84022d20d \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/yoke-derive-b97dc8353690e6bb/lib-yoke_derive.json b/examples/leptos_axum/target/debug/.fingerprint/yoke-derive-b97dc8353690e6bb/lib-yoke_derive.json new file mode 100644 index 0000000..0f6715f --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/yoke-derive-b97dc8353690e6bb/lib-yoke_derive.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":1654536213780382264,"profile":17177036626609572155,"path":8064018977285691200,"deps":[[4621990586401870511,"synstructure",false,14233620294821354427],[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/yoke-derive-b97dc8353690e6bb/dep-lib-yoke_derive","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerofrom-b7fd213306bba939/dep-lib-zerofrom b/examples/leptos_axum/target/debug/.fingerprint/zerofrom-b7fd213306bba939/dep-lib-zerofrom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/zerofrom-b7fd213306bba939/dep-lib-zerofrom differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerofrom-b7fd213306bba939/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/zerofrom-b7fd213306bba939/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zerofrom-b7fd213306bba939/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerofrom-b7fd213306bba939/lib-zerofrom b/examples/leptos_axum/target/debug/.fingerprint/zerofrom-b7fd213306bba939/lib-zerofrom new file mode 100644 index 0000000..9fb47c0 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zerofrom-b7fd213306bba939/lib-zerofrom @@ -0,0 +1 @@ +f2a17df77ba8a777 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerofrom-b7fd213306bba939/lib-zerofrom.json b/examples/leptos_axum/target/debug/.fingerprint/zerofrom-b7fd213306bba939/lib-zerofrom.json new file mode 100644 index 0000000..52f3de7 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zerofrom-b7fd213306bba939/lib-zerofrom.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"derive\"]","declared_features":"[\"alloc\", \"default\", \"derive\"]","target":723370850876025358,"profile":15470915970897398656,"path":11033449008477232080,"deps":[[8736710335745631552,"zerofrom_derive",false,15665573761744809579]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerofrom-b7fd213306bba939/dep-lib-zerofrom","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerofrom-derive-12c4527cdceeb8fd/dep-lib-zerofrom_derive b/examples/leptos_axum/target/debug/.fingerprint/zerofrom-derive-12c4527cdceeb8fd/dep-lib-zerofrom_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/zerofrom-derive-12c4527cdceeb8fd/dep-lib-zerofrom_derive differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerofrom-derive-12c4527cdceeb8fd/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/zerofrom-derive-12c4527cdceeb8fd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zerofrom-derive-12c4527cdceeb8fd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerofrom-derive-12c4527cdceeb8fd/lib-zerofrom_derive b/examples/leptos_axum/target/debug/.fingerprint/zerofrom-derive-12c4527cdceeb8fd/lib-zerofrom_derive new file mode 100644 index 0000000..57611b4 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zerofrom-derive-12c4527cdceeb8fd/lib-zerofrom_derive @@ -0,0 +1 @@ +6bae7a27564c67d9 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerofrom-derive-12c4527cdceeb8fd/lib-zerofrom_derive.json b/examples/leptos_axum/target/debug/.fingerprint/zerofrom-derive-12c4527cdceeb8fd/lib-zerofrom_derive.json new file mode 100644 index 0000000..e443b22 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zerofrom-derive-12c4527cdceeb8fd/lib-zerofrom_derive.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":1753304412232254384,"profile":17177036626609572155,"path":7206638110024683109,"deps":[[4621990586401870511,"synstructure",false,14233620294821354427],[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerofrom-derive-12c4527cdceeb8fd/dep-lib-zerofrom_derive","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerotrie-f6b223adad647016/dep-lib-zerotrie b/examples/leptos_axum/target/debug/.fingerprint/zerotrie-f6b223adad647016/dep-lib-zerotrie new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/zerotrie-f6b223adad647016/dep-lib-zerotrie differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerotrie-f6b223adad647016/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/zerotrie-f6b223adad647016/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zerotrie-f6b223adad647016/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerotrie-f6b223adad647016/lib-zerotrie b/examples/leptos_axum/target/debug/.fingerprint/zerotrie-f6b223adad647016/lib-zerotrie new file mode 100644 index 0000000..fe90aef --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zerotrie-f6b223adad647016/lib-zerotrie @@ -0,0 +1 @@ +4dff8531f80519ad \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerotrie-f6b223adad647016/lib-zerotrie.json b/examples/leptos_axum/target/debug/.fingerprint/zerotrie-f6b223adad647016/lib-zerotrie.json new file mode 100644 index 0000000..585e730 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zerotrie-f6b223adad647016/lib-zerotrie.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"yoke\", \"zerofrom\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"dense\", \"litemap\", \"serde\", \"yoke\", \"zerofrom\", \"zerovec\"]","target":12445875338185814621,"profile":15319846033271432293,"path":14709232119954189801,"deps":[[4367327283662589161,"yoke",false,11581598510181064012],[7664967068156160197,"displaydoc",false,4513505632876660728],[12481580349051900383,"zerofrom",false,8622045262010753522]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerotrie-f6b223adad647016/dep-lib-zerotrie","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerovec-6a02e0511e8f8728/dep-lib-zerovec b/examples/leptos_axum/target/debug/.fingerprint/zerovec-6a02e0511e8f8728/dep-lib-zerovec new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/zerovec-6a02e0511e8f8728/dep-lib-zerovec differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerovec-6a02e0511e8f8728/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/zerovec-6a02e0511e8f8728/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zerovec-6a02e0511e8f8728/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerovec-6a02e0511e8f8728/lib-zerovec b/examples/leptos_axum/target/debug/.fingerprint/zerovec-6a02e0511e8f8728/lib-zerovec new file mode 100644 index 0000000..5e94b46 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zerovec-6a02e0511e8f8728/lib-zerovec @@ -0,0 +1 @@ +8fd685710d0ca076 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerovec-6a02e0511e8f8728/lib-zerovec.json b/examples/leptos_axum/target/debug/.fingerprint/zerovec-6a02e0511e8f8728/lib-zerovec.json new file mode 100644 index 0000000..639c5ac --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zerovec-6a02e0511e8f8728/lib-zerovec.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[\"derive\", \"yoke\"]","declared_features":"[\"alloc\", \"databake\", \"derive\", \"hashmap\", \"schemars\", \"serde\", \"std\", \"yoke\"]","target":1825474209729987087,"profile":15319846033271432293,"path":8076641172070478705,"deps":[[4367327283662589161,"yoke",false,11581598510181064012],[12481580349051900383,"zerofrom",false,8622045262010753522],[13916398663282415334,"zerovec_derive",false,3692039351977957221]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerovec-6a02e0511e8f8728/dep-lib-zerovec","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerovec-derive-596a74a191e24ba0/dep-lib-zerovec_derive b/examples/leptos_axum/target/debug/.fingerprint/zerovec-derive-596a74a191e24ba0/dep-lib-zerovec_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/zerovec-derive-596a74a191e24ba0/dep-lib-zerovec_derive differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerovec-derive-596a74a191e24ba0/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/zerovec-derive-596a74a191e24ba0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zerovec-derive-596a74a191e24ba0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerovec-derive-596a74a191e24ba0/lib-zerovec_derive b/examples/leptos_axum/target/debug/.fingerprint/zerovec-derive-596a74a191e24ba0/lib-zerovec_derive new file mode 100644 index 0000000..a673a94 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zerovec-derive-596a74a191e24ba0/lib-zerovec_derive @@ -0,0 +1 @@ +65d768b73ac23c33 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zerovec-derive-596a74a191e24ba0/lib-zerovec_derive.json b/examples/leptos_axum/target/debug/.fingerprint/zerovec-derive-596a74a191e24ba0/lib-zerovec_derive.json new file mode 100644 index 0000000..3c8bceb --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zerovec-derive-596a74a191e24ba0/lib-zerovec_derive.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[]","target":14030368369369144574,"profile":17177036626609572155,"path":15788821099228741078,"deps":[[8949245912927223590,"quote",false,14896968245106632325],[10190449710562616856,"syn",false,6080269753824482509],[16346726298725429545,"proc_macro2",false,3721553344835398169]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zerovec-derive-596a74a191e24ba0/dep-lib-zerovec_derive","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zmij-09764c09118bc5c9/dep-lib-zmij b/examples/leptos_axum/target/debug/.fingerprint/zmij-09764c09118bc5c9/dep-lib-zmij new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/zmij-09764c09118bc5c9/dep-lib-zmij differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/zmij-09764c09118bc5c9/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/zmij-09764c09118bc5c9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zmij-09764c09118bc5c9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zmij-09764c09118bc5c9/lib-zmij b/examples/leptos_axum/target/debug/.fingerprint/zmij-09764c09118bc5c9/lib-zmij new file mode 100644 index 0000000..3453819 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zmij-09764c09118bc5c9/lib-zmij @@ -0,0 +1 @@ +80a75f848cc77c63 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zmij-09764c09118bc5c9/lib-zmij.json b/examples/leptos_axum/target/debug/.fingerprint/zmij-09764c09118bc5c9/lib-zmij.json new file mode 100644 index 0000000..794a0f5 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zmij-09764c09118bc5c9/lib-zmij.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"no-panic\"]","target":16603507647234574737,"profile":2241668132362809309,"path":12234166441033065369,"deps":[[16226529040278277557,"build_script_build",false,18024177201373993393]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zmij-09764c09118bc5c9/dep-lib-zmij","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zmij-1d41e468114f7fa5/run-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/zmij-1d41e468114f7fa5/run-build-script-build-script-build new file mode 100644 index 0000000..3458ae4 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zmij-1d41e468114f7fa5/run-build-script-build-script-build @@ -0,0 +1 @@ +b1599720abbd22fa \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zmij-1d41e468114f7fa5/run-build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/zmij-1d41e468114f7fa5/run-build-script-build-script-build.json new file mode 100644 index 0000000..3f2ba89 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zmij-1d41e468114f7fa5/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[16226529040278277557,"build_script_build",false,15492212153124122005]],"local":[{"RerunIfChanged":{"output":"debug/build/zmij-1d41e468114f7fa5/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zmij-37c7a7b83a60607f/build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/zmij-37c7a7b83a60607f/build-script-build-script-build new file mode 100644 index 0000000..d574358 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zmij-37c7a7b83a60607f/build-script-build-script-build @@ -0,0 +1 @@ +95edf33bdf64ffd6 \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zmij-37c7a7b83a60607f/build-script-build-script-build.json b/examples/leptos_axum/target/debug/.fingerprint/zmij-37c7a7b83a60607f/build-script-build-script-build.json new file mode 100644 index 0000000..ad0c586 --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zmij-37c7a7b83a60607f/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":12019306335353385202,"features":"[]","declared_features":"[\"no-panic\"]","target":5408242616063297496,"profile":2225463790103693989,"path":3269043988998986641,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/zmij-37c7a7b83a60607f/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":9396254390672932401,"compile_kind":0} \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/.fingerprint/zmij-37c7a7b83a60607f/dep-build-script-build-script-build b/examples/leptos_axum/target/debug/.fingerprint/zmij-37c7a7b83a60607f/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/examples/leptos_axum/target/debug/.fingerprint/zmij-37c7a7b83a60607f/dep-build-script-build-script-build differ diff --git a/examples/leptos_axum/target/debug/.fingerprint/zmij-37c7a7b83a60607f/invoked.timestamp b/examples/leptos_axum/target/debug/.fingerprint/zmij-37c7a7b83a60607f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/.fingerprint/zmij-37c7a7b83a60607f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/anyhow-30de1fe9efd21a23/invoked.timestamp b/examples/leptos_axum/target/debug/build/anyhow-30de1fe9efd21a23/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/anyhow-30de1fe9efd21a23/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/anyhow-30de1fe9efd21a23/output b/examples/leptos_axum/target/debug/build/anyhow-30de1fe9efd21a23/output new file mode 100644 index 0000000..81d9fc4 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/anyhow-30de1fe9efd21a23/output @@ -0,0 +1,7 @@ +cargo:rerun-if-changed=src/nightly.rs +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP +cargo:rustc-check-cfg=cfg(anyhow_build_probe) +cargo:rustc-check-cfg=cfg(anyhow_nightly_testing) +cargo:rustc-check-cfg=cfg(anyhow_no_clippy_format_args) +cargo:rustc-check-cfg=cfg(anyhow_no_core_error) +cargo:rustc-check-cfg=cfg(error_generic_member_access) diff --git a/examples/leptos_axum/target/debug/build/anyhow-30de1fe9efd21a23/root-output b/examples/leptos_axum/target/debug/build/anyhow-30de1fe9efd21a23/root-output new file mode 100644 index 0000000..c6ca2bb --- /dev/null +++ b/examples/leptos_axum/target/debug/build/anyhow-30de1fe9efd21a23/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/anyhow-30de1fe9efd21a23/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/anyhow-30de1fe9efd21a23/stderr b/examples/leptos_axum/target/debug/build/anyhow-30de1fe9efd21a23/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/anyhow-fbd2417508b87357/build-script-build b/examples/leptos_axum/target/debug/build/anyhow-fbd2417508b87357/build-script-build new file mode 100755 index 0000000..736f229 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/anyhow-fbd2417508b87357/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/anyhow-fbd2417508b87357/build_script_build-fbd2417508b87357 b/examples/leptos_axum/target/debug/build/anyhow-fbd2417508b87357/build_script_build-fbd2417508b87357 new file mode 100755 index 0000000..736f229 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/anyhow-fbd2417508b87357/build_script_build-fbd2417508b87357 differ diff --git a/examples/leptos_axum/target/debug/build/anyhow-fbd2417508b87357/build_script_build-fbd2417508b87357.d b/examples/leptos_axum/target/debug/build/anyhow-fbd2417508b87357/build_script_build-fbd2417508b87357.d new file mode 100644 index 0000000..250d7a1 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/anyhow-fbd2417508b87357/build_script_build-fbd2417508b87357.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/anyhow-fbd2417508b87357/build_script_build-fbd2417508b87357.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/anyhow-fbd2417508b87357/build_script_build-fbd2417508b87357: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/build.rs: diff --git a/examples/leptos_axum/target/debug/build/camino-58afb4f8704430ea/invoked.timestamp b/examples/leptos_axum/target/debug/build/camino-58afb4f8704430ea/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/camino-58afb4f8704430ea/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/camino-58afb4f8704430ea/output b/examples/leptos_axum/target/debug/build/camino-58afb4f8704430ea/output new file mode 100644 index 0000000..aceeeb8 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/camino-58afb4f8704430ea/output @@ -0,0 +1,16 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(doc_cfg) +cargo:rustc-check-cfg=cfg(path_buf_deref_mut) +cargo:rustc-check-cfg=cfg(try_reserve_2) +cargo:rustc-check-cfg=cfg(os_str_bytes) +cargo:rustc-check-cfg=cfg(os_string_pathbuf_leak) +cargo:rustc-check-cfg=cfg(absolute_path) +cargo:rustc-check-cfg=cfg(path_add_extension) +cargo:rustc-check-cfg=cfg(pathbuf_const_new) +cargo:rustc-cfg=try_reserve_2 +cargo:rustc-cfg=path_buf_deref_mut +cargo:rustc-cfg=os_str_bytes +cargo:rustc-cfg=absolute_path +cargo:rustc-cfg=os_string_pathbuf_leak +cargo:rustc-cfg=path_add_extension +cargo:rustc-cfg=pathbuf_const_new diff --git a/examples/leptos_axum/target/debug/build/camino-58afb4f8704430ea/root-output b/examples/leptos_axum/target/debug/build/camino-58afb4f8704430ea/root-output new file mode 100644 index 0000000..8f9f102 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/camino-58afb4f8704430ea/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/camino-58afb4f8704430ea/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/camino-58afb4f8704430ea/stderr b/examples/leptos_axum/target/debug/build/camino-58afb4f8704430ea/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/camino-9d1e7ce5f7a0108a/build-script-build b/examples/leptos_axum/target/debug/build/camino-9d1e7ce5f7a0108a/build-script-build new file mode 100755 index 0000000..d48e75a Binary files /dev/null and b/examples/leptos_axum/target/debug/build/camino-9d1e7ce5f7a0108a/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/camino-9d1e7ce5f7a0108a/build_script_build-9d1e7ce5f7a0108a b/examples/leptos_axum/target/debug/build/camino-9d1e7ce5f7a0108a/build_script_build-9d1e7ce5f7a0108a new file mode 100755 index 0000000..d48e75a Binary files /dev/null and b/examples/leptos_axum/target/debug/build/camino-9d1e7ce5f7a0108a/build_script_build-9d1e7ce5f7a0108a differ diff --git a/examples/leptos_axum/target/debug/build/camino-9d1e7ce5f7a0108a/build_script_build-9d1e7ce5f7a0108a.d b/examples/leptos_axum/target/debug/build/camino-9d1e7ce5f7a0108a/build_script_build-9d1e7ce5f7a0108a.d new file mode 100644 index 0000000..c697d73 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/camino-9d1e7ce5f7a0108a/build_script_build-9d1e7ce5f7a0108a.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/camino-9d1e7ce5f7a0108a/build_script_build-9d1e7ce5f7a0108a.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/camino-1.2.5/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/camino-9d1e7ce5f7a0108a/build_script_build-9d1e7ce5f7a0108a: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/camino-1.2.5/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/camino-1.2.5/build.rs: diff --git a/examples/leptos_axum/target/debug/build/generic-array-7f343a2386109d39/build-script-build b/examples/leptos_axum/target/debug/build/generic-array-7f343a2386109d39/build-script-build new file mode 100755 index 0000000..9dbce8f Binary files /dev/null and b/examples/leptos_axum/target/debug/build/generic-array-7f343a2386109d39/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/generic-array-7f343a2386109d39/build_script_build-7f343a2386109d39 b/examples/leptos_axum/target/debug/build/generic-array-7f343a2386109d39/build_script_build-7f343a2386109d39 new file mode 100755 index 0000000..9dbce8f Binary files /dev/null and b/examples/leptos_axum/target/debug/build/generic-array-7f343a2386109d39/build_script_build-7f343a2386109d39 differ diff --git a/examples/leptos_axum/target/debug/build/generic-array-7f343a2386109d39/build_script_build-7f343a2386109d39.d b/examples/leptos_axum/target/debug/build/generic-array-7f343a2386109d39/build_script_build-7f343a2386109d39.d new file mode 100644 index 0000000..95013cb --- /dev/null +++ b/examples/leptos_axum/target/debug/build/generic-array-7f343a2386109d39/build_script_build-7f343a2386109d39.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/generic-array-7f343a2386109d39/build_script_build-7f343a2386109d39.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/generic-array-7f343a2386109d39/build_script_build-7f343a2386109d39: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/build.rs: diff --git a/examples/leptos_axum/target/debug/build/generic-array-ba7aa4dcc8b8bd58/invoked.timestamp b/examples/leptos_axum/target/debug/build/generic-array-ba7aa4dcc8b8bd58/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/generic-array-ba7aa4dcc8b8bd58/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/generic-array-ba7aa4dcc8b8bd58/output b/examples/leptos_axum/target/debug/build/generic-array-ba7aa4dcc8b8bd58/output new file mode 100644 index 0000000..a67c3a8 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/generic-array-ba7aa4dcc8b8bd58/output @@ -0,0 +1 @@ +cargo:rustc-cfg=relaxed_coherence diff --git a/examples/leptos_axum/target/debug/build/generic-array-ba7aa4dcc8b8bd58/root-output b/examples/leptos_axum/target/debug/build/generic-array-ba7aa4dcc8b8bd58/root-output new file mode 100644 index 0000000..f418d30 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/generic-array-ba7aa4dcc8b8bd58/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/generic-array-ba7aa4dcc8b8bd58/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/generic-array-ba7aa4dcc8b8bd58/stderr b/examples/leptos_axum/target/debug/build/generic-array-ba7aa4dcc8b8bd58/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/getrandom-aecce89476706edf/build-script-build b/examples/leptos_axum/target/debug/build/getrandom-aecce89476706edf/build-script-build new file mode 100755 index 0000000..b3d4d79 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/getrandom-aecce89476706edf/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/getrandom-aecce89476706edf/build_script_build-aecce89476706edf b/examples/leptos_axum/target/debug/build/getrandom-aecce89476706edf/build_script_build-aecce89476706edf new file mode 100755 index 0000000..b3d4d79 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/getrandom-aecce89476706edf/build_script_build-aecce89476706edf differ diff --git a/examples/leptos_axum/target/debug/build/getrandom-aecce89476706edf/build_script_build-aecce89476706edf.d b/examples/leptos_axum/target/debug/build/getrandom-aecce89476706edf/build_script_build-aecce89476706edf.d new file mode 100644 index 0000000..951a02a --- /dev/null +++ b/examples/leptos_axum/target/debug/build/getrandom-aecce89476706edf/build_script_build-aecce89476706edf.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/getrandom-aecce89476706edf/build_script_build-aecce89476706edf.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/getrandom-aecce89476706edf/build_script_build-aecce89476706edf: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/build.rs: diff --git a/examples/leptos_axum/target/debug/build/getrandom-d35b6c2445598084/invoked.timestamp b/examples/leptos_axum/target/debug/build/getrandom-d35b6c2445598084/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/getrandom-d35b6c2445598084/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/getrandom-d35b6c2445598084/output b/examples/leptos_axum/target/debug/build/getrandom-d35b6c2445598084/output new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/examples/leptos_axum/target/debug/build/getrandom-d35b6c2445598084/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=build.rs diff --git a/examples/leptos_axum/target/debug/build/getrandom-d35b6c2445598084/root-output b/examples/leptos_axum/target/debug/build/getrandom-d35b6c2445598084/root-output new file mode 100644 index 0000000..ec1f9b9 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/getrandom-d35b6c2445598084/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/getrandom-d35b6c2445598084/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/getrandom-d35b6c2445598084/stderr b/examples/leptos_axum/target/debug/build/getrandom-d35b6c2445598084/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/invoked.timestamp b/examples/leptos_axum/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/output b/examples/leptos_axum/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/output new file mode 100644 index 0000000..30ced52 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/output @@ -0,0 +1,2 @@ +cargo:rerun-if-env-changed=ICU4X_DATA_DIR +cargo:rustc-check-cfg=cfg(icu4c_enable_renaming) diff --git a/examples/leptos_axum/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/root-output b/examples/leptos_axum/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/root-output new file mode 100644 index 0000000..c994258 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/stderr b/examples/leptos_axum/target/debug/build/icu_normalizer_data-8a6d3456e3f5808e/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build-script-build b/examples/leptos_axum/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build-script-build new file mode 100755 index 0000000..a14b152 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build_script_build-972e8c05ead035c0 b/examples/leptos_axum/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build_script_build-972e8c05ead035c0 new file mode 100755 index 0000000..a14b152 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build_script_build-972e8c05ead035c0 differ diff --git a/examples/leptos_axum/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build_script_build-972e8c05ead035c0.d b/examples/leptos_axum/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build_script_build-972e8c05ead035c0.d new file mode 100644 index 0000000..b9be7aa --- /dev/null +++ b/examples/leptos_axum/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build_script_build-972e8c05ead035c0.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build_script_build-972e8c05ead035c0.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/icu_normalizer_data-972e8c05ead035c0/build_script_build-972e8c05ead035c0: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/build.rs: diff --git a/examples/leptos_axum/target/debug/build/icu_properties_data-c25c7adf66567e52/invoked.timestamp b/examples/leptos_axum/target/debug/build/icu_properties_data-c25c7adf66567e52/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/icu_properties_data-c25c7adf66567e52/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/icu_properties_data-c25c7adf66567e52/output b/examples/leptos_axum/target/debug/build/icu_properties_data-c25c7adf66567e52/output new file mode 100644 index 0000000..30ced52 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/icu_properties_data-c25c7adf66567e52/output @@ -0,0 +1,2 @@ +cargo:rerun-if-env-changed=ICU4X_DATA_DIR +cargo:rustc-check-cfg=cfg(icu4c_enable_renaming) diff --git a/examples/leptos_axum/target/debug/build/icu_properties_data-c25c7adf66567e52/root-output b/examples/leptos_axum/target/debug/build/icu_properties_data-c25c7adf66567e52/root-output new file mode 100644 index 0000000..400353a --- /dev/null +++ b/examples/leptos_axum/target/debug/build/icu_properties_data-c25c7adf66567e52/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/icu_properties_data-c25c7adf66567e52/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/icu_properties_data-c25c7adf66567e52/stderr b/examples/leptos_axum/target/debug/build/icu_properties_data-c25c7adf66567e52/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/icu_properties_data-c6a58e264774ca8f/build-script-build b/examples/leptos_axum/target/debug/build/icu_properties_data-c6a58e264774ca8f/build-script-build new file mode 100755 index 0000000..e780471 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/icu_properties_data-c6a58e264774ca8f/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/icu_properties_data-c6a58e264774ca8f/build_script_build-c6a58e264774ca8f b/examples/leptos_axum/target/debug/build/icu_properties_data-c6a58e264774ca8f/build_script_build-c6a58e264774ca8f new file mode 100755 index 0000000..e780471 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/icu_properties_data-c6a58e264774ca8f/build_script_build-c6a58e264774ca8f differ diff --git a/examples/leptos_axum/target/debug/build/icu_properties_data-c6a58e264774ca8f/build_script_build-c6a58e264774ca8f.d b/examples/leptos_axum/target/debug/build/icu_properties_data-c6a58e264774ca8f/build_script_build-c6a58e264774ca8f.d new file mode 100644 index 0000000..18bd65c --- /dev/null +++ b/examples/leptos_axum/target/debug/build/icu_properties_data-c6a58e264774ca8f/build_script_build-c6a58e264774ca8f.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/icu_properties_data-c6a58e264774ca8f/build_script_build-c6a58e264774ca8f.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/icu_properties_data-c6a58e264774ca8f/build_script_build-c6a58e264774ca8f: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/build.rs: diff --git a/examples/leptos_axum/target/debug/build/leptos-79d43df65fd17784/invoked.timestamp b/examples/leptos_axum/target/debug/build/leptos-79d43df65fd17784/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/leptos-79d43df65fd17784/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/leptos-79d43df65fd17784/output b/examples/leptos_axum/target/debug/build/leptos-79d43df65fd17784/output new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/leptos-79d43df65fd17784/root-output b/examples/leptos_axum/target/debug/build/leptos-79d43df65fd17784/root-output new file mode 100644 index 0000000..ddb8ee6 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/leptos-79d43df65fd17784/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/leptos-79d43df65fd17784/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/leptos-79d43df65fd17784/stderr b/examples/leptos_axum/target/debug/build/leptos-79d43df65fd17784/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/leptos-f61e3c5e22b91683/build-script-build b/examples/leptos_axum/target/debug/build/leptos-f61e3c5e22b91683/build-script-build new file mode 100755 index 0000000..8b05faf Binary files /dev/null and b/examples/leptos_axum/target/debug/build/leptos-f61e3c5e22b91683/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/leptos-f61e3c5e22b91683/build_script_build-f61e3c5e22b91683 b/examples/leptos_axum/target/debug/build/leptos-f61e3c5e22b91683/build_script_build-f61e3c5e22b91683 new file mode 100755 index 0000000..8b05faf Binary files /dev/null and b/examples/leptos_axum/target/debug/build/leptos-f61e3c5e22b91683/build_script_build-f61e3c5e22b91683 differ diff --git a/examples/leptos_axum/target/debug/build/leptos-f61e3c5e22b91683/build_script_build-f61e3c5e22b91683.d b/examples/leptos_axum/target/debug/build/leptos-f61e3c5e22b91683/build_script_build-f61e3c5e22b91683.d new file mode 100644 index 0000000..c6bd616 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/leptos-f61e3c5e22b91683/build_script_build-f61e3c5e22b91683.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/leptos-f61e3c5e22b91683/build_script_build-f61e3c5e22b91683.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/leptos-f61e3c5e22b91683/build_script_build-f61e3c5e22b91683: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/build.rs: diff --git a/examples/leptos_axum/target/debug/build/leptos_macro-006d8d79dc7aab34/invoked.timestamp b/examples/leptos_axum/target/debug/build/leptos_macro-006d8d79dc7aab34/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/leptos_macro-006d8d79dc7aab34/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/leptos_macro-006d8d79dc7aab34/output b/examples/leptos_axum/target/debug/build/leptos_macro-006d8d79dc7aab34/output new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/leptos_macro-006d8d79dc7aab34/root-output b/examples/leptos_axum/target/debug/build/leptos_macro-006d8d79dc7aab34/root-output new file mode 100644 index 0000000..4b78275 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/leptos_macro-006d8d79dc7aab34/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/leptos_macro-006d8d79dc7aab34/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/leptos_macro-006d8d79dc7aab34/stderr b/examples/leptos_axum/target/debug/build/leptos_macro-006d8d79dc7aab34/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/leptos_macro-bc117aefcaa3b957/build-script-build b/examples/leptos_axum/target/debug/build/leptos_macro-bc117aefcaa3b957/build-script-build new file mode 100755 index 0000000..dbee0e8 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/leptos_macro-bc117aefcaa3b957/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/leptos_macro-bc117aefcaa3b957/build_script_build-bc117aefcaa3b957 b/examples/leptos_axum/target/debug/build/leptos_macro-bc117aefcaa3b957/build_script_build-bc117aefcaa3b957 new file mode 100755 index 0000000..dbee0e8 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/leptos_macro-bc117aefcaa3b957/build_script_build-bc117aefcaa3b957 differ diff --git a/examples/leptos_axum/target/debug/build/leptos_macro-bc117aefcaa3b957/build_script_build-bc117aefcaa3b957.d b/examples/leptos_axum/target/debug/build/leptos_macro-bc117aefcaa3b957/build_script_build-bc117aefcaa3b957.d new file mode 100644 index 0000000..4510341 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/leptos_macro-bc117aefcaa3b957/build_script_build-bc117aefcaa3b957.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/leptos_macro-bc117aefcaa3b957/build_script_build-bc117aefcaa3b957.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/leptos_macro-bc117aefcaa3b957/build_script_build-bc117aefcaa3b957: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/build.rs: diff --git a/examples/leptos_axum/target/debug/build/leptos_router-1b42a9c9350ab3c2/build-script-build b/examples/leptos_axum/target/debug/build/leptos_router-1b42a9c9350ab3c2/build-script-build new file mode 100755 index 0000000..64f1423 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/leptos_router-1b42a9c9350ab3c2/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/leptos_router-1b42a9c9350ab3c2/build_script_build-1b42a9c9350ab3c2 b/examples/leptos_axum/target/debug/build/leptos_router-1b42a9c9350ab3c2/build_script_build-1b42a9c9350ab3c2 new file mode 100755 index 0000000..64f1423 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/leptos_router-1b42a9c9350ab3c2/build_script_build-1b42a9c9350ab3c2 differ diff --git a/examples/leptos_axum/target/debug/build/leptos_router-1b42a9c9350ab3c2/build_script_build-1b42a9c9350ab3c2.d b/examples/leptos_axum/target/debug/build/leptos_router-1b42a9c9350ab3c2/build_script_build-1b42a9c9350ab3c2.d new file mode 100644 index 0000000..c6ad207 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/leptos_router-1b42a9c9350ab3c2/build_script_build-1b42a9c9350ab3c2.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/leptos_router-1b42a9c9350ab3c2/build_script_build-1b42a9c9350ab3c2.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/leptos_router-1b42a9c9350ab3c2/build_script_build-1b42a9c9350ab3c2: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/build.rs: diff --git a/examples/leptos_axum/target/debug/build/leptos_router-ea02271efca7764f/invoked.timestamp b/examples/leptos_axum/target/debug/build/leptos_router-ea02271efca7764f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/leptos_router-ea02271efca7764f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/leptos_router-ea02271efca7764f/output b/examples/leptos_axum/target/debug/build/leptos_router-ea02271efca7764f/output new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/leptos_router-ea02271efca7764f/root-output b/examples/leptos_axum/target/debug/build/leptos_router-ea02271efca7764f/root-output new file mode 100644 index 0000000..824534d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/leptos_router-ea02271efca7764f/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/leptos_router-ea02271efca7764f/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/leptos_router-ea02271efca7764f/stderr b/examples/leptos_axum/target/debug/build/leptos_router-ea02271efca7764f/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/libc-a0156fe49325159f/invoked.timestamp b/examples/leptos_axum/target/debug/build/libc-a0156fe49325159f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/libc-a0156fe49325159f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/libc-a0156fe49325159f/output b/examples/leptos_axum/target/debug/build/libc-a0156fe49325159f/output new file mode 100644 index 0000000..4528d3b --- /dev/null +++ b/examples/leptos_axum/target/debug/build/libc-a0156fe49325159f/output @@ -0,0 +1,25 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-env-changed=LIBC_BUILD_VERBOSE +cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION +cargo:rustc-cfg=freebsd12 +cargo:rustc-check-cfg=cfg(emscripten_old_stat_abi) +cargo:rustc-check-cfg=cfg(espidf_picolibc) +cargo:rustc-check-cfg=cfg(espidf_time32) +cargo:rustc-check-cfg=cfg(freebsd10) +cargo:rustc-check-cfg=cfg(freebsd11) +cargo:rustc-check-cfg=cfg(freebsd12) +cargo:rustc-check-cfg=cfg(freebsd13) +cargo:rustc-check-cfg=cfg(freebsd14) +cargo:rustc-check-cfg=cfg(freebsd15) +cargo:rustc-check-cfg=cfg(gnu_file_offset_bits64) +cargo:rustc-check-cfg=cfg(gnu_time_bits64) +cargo:rustc-check-cfg=cfg(libc_deny_warnings) +cargo:rustc-check-cfg=cfg(linux_time_bits64) +cargo:rustc-check-cfg=cfg(musl_v1_2_3) +cargo:rustc-check-cfg=cfg(musl32_time64) +cargo:rustc-check-cfg=cfg(musl_redir_time64) +cargo:rustc-check-cfg=cfg(vxworks_lt_25_09) +cargo:rustc-check-cfg=cfg(libc_pauthtest) +cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx","cygwin","qurt","qnx")) +cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos","nto71_iosock")) +cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) diff --git a/examples/leptos_axum/target/debug/build/libc-a0156fe49325159f/root-output b/examples/leptos_axum/target/debug/build/libc-a0156fe49325159f/root-output new file mode 100644 index 0000000..387ac27 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/libc-a0156fe49325159f/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/libc-a0156fe49325159f/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/libc-a0156fe49325159f/stderr b/examples/leptos_axum/target/debug/build/libc-a0156fe49325159f/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/libc-fdafe8ebaf5b42a4/build-script-build b/examples/leptos_axum/target/debug/build/libc-fdafe8ebaf5b42a4/build-script-build new file mode 100755 index 0000000..4ce44b0 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/libc-fdafe8ebaf5b42a4/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/libc-fdafe8ebaf5b42a4/build_script_build-fdafe8ebaf5b42a4 b/examples/leptos_axum/target/debug/build/libc-fdafe8ebaf5b42a4/build_script_build-fdafe8ebaf5b42a4 new file mode 100755 index 0000000..4ce44b0 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/libc-fdafe8ebaf5b42a4/build_script_build-fdafe8ebaf5b42a4 differ diff --git a/examples/leptos_axum/target/debug/build/libc-fdafe8ebaf5b42a4/build_script_build-fdafe8ebaf5b42a4.d b/examples/leptos_axum/target/debug/build/libc-fdafe8ebaf5b42a4/build_script_build-fdafe8ebaf5b42a4.d new file mode 100644 index 0000000..9ed5f79 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/libc-fdafe8ebaf5b42a4/build_script_build-fdafe8ebaf5b42a4.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/libc-fdafe8ebaf5b42a4/build_script_build-fdafe8ebaf5b42a4.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/libc-fdafe8ebaf5b42a4/build_script_build-fdafe8ebaf5b42a4: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/build.rs: diff --git a/examples/leptos_axum/target/debug/build/paste-5e66a4bcbe3fe91d/invoked.timestamp b/examples/leptos_axum/target/debug/build/paste-5e66a4bcbe3fe91d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/paste-5e66a4bcbe3fe91d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/paste-5e66a4bcbe3fe91d/output b/examples/leptos_axum/target/debug/build/paste-5e66a4bcbe3fe91d/output new file mode 100644 index 0000000..738185c --- /dev/null +++ b/examples/leptos_axum/target/debug/build/paste-5e66a4bcbe3fe91d/output @@ -0,0 +1,3 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(no_literal_fromstr) +cargo:rustc-check-cfg=cfg(feature, values("protocol_feature_paste")) diff --git a/examples/leptos_axum/target/debug/build/paste-5e66a4bcbe3fe91d/root-output b/examples/leptos_axum/target/debug/build/paste-5e66a4bcbe3fe91d/root-output new file mode 100644 index 0000000..6d3507b --- /dev/null +++ b/examples/leptos_axum/target/debug/build/paste-5e66a4bcbe3fe91d/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/paste-5e66a4bcbe3fe91d/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/paste-5e66a4bcbe3fe91d/stderr b/examples/leptos_axum/target/debug/build/paste-5e66a4bcbe3fe91d/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/paste-f0fd735125c647b5/build-script-build b/examples/leptos_axum/target/debug/build/paste-f0fd735125c647b5/build-script-build new file mode 100755 index 0000000..73663aa Binary files /dev/null and b/examples/leptos_axum/target/debug/build/paste-f0fd735125c647b5/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/paste-f0fd735125c647b5/build_script_build-f0fd735125c647b5 b/examples/leptos_axum/target/debug/build/paste-f0fd735125c647b5/build_script_build-f0fd735125c647b5 new file mode 100755 index 0000000..73663aa Binary files /dev/null and b/examples/leptos_axum/target/debug/build/paste-f0fd735125c647b5/build_script_build-f0fd735125c647b5 differ diff --git a/examples/leptos_axum/target/debug/build/paste-f0fd735125c647b5/build_script_build-f0fd735125c647b5.d b/examples/leptos_axum/target/debug/build/paste-f0fd735125c647b5/build_script_build-f0fd735125c647b5.d new file mode 100644 index 0000000..83537a7 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/paste-f0fd735125c647b5/build_script_build-f0fd735125c647b5.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/paste-f0fd735125c647b5/build_script_build-f0fd735125c647b5.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/paste-f0fd735125c647b5/build_script_build-f0fd735125c647b5: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/build.rs: diff --git a/examples/leptos_axum/target/debug/build/prettyplease-313503e4931fbd32/invoked.timestamp b/examples/leptos_axum/target/debug/build/prettyplease-313503e4931fbd32/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/prettyplease-313503e4931fbd32/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/prettyplease-313503e4931fbd32/output b/examples/leptos_axum/target/debug/build/prettyplease-313503e4931fbd32/output new file mode 100644 index 0000000..ef4528d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/prettyplease-313503e4931fbd32/output @@ -0,0 +1,5 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(exhaustive) +cargo:rustc-check-cfg=cfg(prettyplease_debug) +cargo:rustc-check-cfg=cfg(prettyplease_debug_indent) +cargo:VERSION=0.2.37 diff --git a/examples/leptos_axum/target/debug/build/prettyplease-313503e4931fbd32/root-output b/examples/leptos_axum/target/debug/build/prettyplease-313503e4931fbd32/root-output new file mode 100644 index 0000000..a1bec57 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/prettyplease-313503e4931fbd32/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/prettyplease-313503e4931fbd32/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/prettyplease-313503e4931fbd32/stderr b/examples/leptos_axum/target/debug/build/prettyplease-313503e4931fbd32/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/prettyplease-4e660e93577719bd/build-script-build b/examples/leptos_axum/target/debug/build/prettyplease-4e660e93577719bd/build-script-build new file mode 100755 index 0000000..0275582 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/prettyplease-4e660e93577719bd/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/prettyplease-4e660e93577719bd/build_script_build-4e660e93577719bd b/examples/leptos_axum/target/debug/build/prettyplease-4e660e93577719bd/build_script_build-4e660e93577719bd new file mode 100755 index 0000000..0275582 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/prettyplease-4e660e93577719bd/build_script_build-4e660e93577719bd differ diff --git a/examples/leptos_axum/target/debug/build/prettyplease-4e660e93577719bd/build_script_build-4e660e93577719bd.d b/examples/leptos_axum/target/debug/build/prettyplease-4e660e93577719bd/build_script_build-4e660e93577719bd.d new file mode 100644 index 0000000..bb791b7 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/prettyplease-4e660e93577719bd/build_script_build-4e660e93577719bd.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/prettyplease-4e660e93577719bd/build_script_build-4e660e93577719bd.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/prettyplease-4e660e93577719bd/build_script_build-4e660e93577719bd: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/build.rs: diff --git a/examples/leptos_axum/target/debug/build/proc-macro2-2702dbf3e3a1a7ab/build-script-build b/examples/leptos_axum/target/debug/build/proc-macro2-2702dbf3e3a1a7ab/build-script-build new file mode 100755 index 0000000..23f3bae Binary files /dev/null and b/examples/leptos_axum/target/debug/build/proc-macro2-2702dbf3e3a1a7ab/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/proc-macro2-2702dbf3e3a1a7ab/build_script_build-2702dbf3e3a1a7ab b/examples/leptos_axum/target/debug/build/proc-macro2-2702dbf3e3a1a7ab/build_script_build-2702dbf3e3a1a7ab new file mode 100755 index 0000000..23f3bae Binary files /dev/null and b/examples/leptos_axum/target/debug/build/proc-macro2-2702dbf3e3a1a7ab/build_script_build-2702dbf3e3a1a7ab differ diff --git a/examples/leptos_axum/target/debug/build/proc-macro2-2702dbf3e3a1a7ab/build_script_build-2702dbf3e3a1a7ab.d b/examples/leptos_axum/target/debug/build/proc-macro2-2702dbf3e3a1a7ab/build_script_build-2702dbf3e3a1a7ab.d new file mode 100644 index 0000000..013c535 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/proc-macro2-2702dbf3e3a1a7ab/build_script_build-2702dbf3e3a1a7ab.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/proc-macro2-2702dbf3e3a1a7ab/build_script_build-2702dbf3e3a1a7ab.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/proc-macro2-2702dbf3e3a1a7ab/build_script_build-2702dbf3e3a1a7ab: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/build.rs: diff --git a/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-7997f87e5fadb406/build-script-build b/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-7997f87e5fadb406/build-script-build new file mode 100755 index 0000000..04430e6 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-7997f87e5fadb406/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-7997f87e5fadb406/build_script_build-7997f87e5fadb406 b/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-7997f87e5fadb406/build_script_build-7997f87e5fadb406 new file mode 100755 index 0000000..04430e6 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-7997f87e5fadb406/build_script_build-7997f87e5fadb406 differ diff --git a/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-7997f87e5fadb406/build_script_build-7997f87e5fadb406.d b/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-7997f87e5fadb406/build_script_build-7997f87e5fadb406.d new file mode 100644 index 0000000..cd9c7cc --- /dev/null +++ b/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-7997f87e5fadb406/build_script_build-7997f87e5fadb406.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-7997f87e5fadb406/build_script_build-7997f87e5fadb406.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-7997f87e5fadb406/build_script_build-7997f87e5fadb406: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/build.rs: diff --git a/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-c1a7d4ae149b2c69/invoked.timestamp b/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-c1a7d4ae149b2c69/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-c1a7d4ae149b2c69/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-c1a7d4ae149b2c69/output b/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-c1a7d4ae149b2c69/output new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-c1a7d4ae149b2c69/root-output b/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-c1a7d4ae149b2c69/root-output new file mode 100644 index 0000000..fe2e0da --- /dev/null +++ b/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-c1a7d4ae149b2c69/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-c1a7d4ae149b2c69/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-c1a7d4ae149b2c69/stderr b/examples/leptos_axum/target/debug/build/proc-macro2-diagnostics-c1a7d4ae149b2c69/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/proc-macro2-f9037ddb91635dbd/invoked.timestamp b/examples/leptos_axum/target/debug/build/proc-macro2-f9037ddb91635dbd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/proc-macro2-f9037ddb91635dbd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/proc-macro2-f9037ddb91635dbd/output b/examples/leptos_axum/target/debug/build/proc-macro2-f9037ddb91635dbd/output new file mode 100644 index 0000000..5785ffe --- /dev/null +++ b/examples/leptos_axum/target/debug/build/proc-macro2-f9037ddb91635dbd/output @@ -0,0 +1,24 @@ +cargo:rustc-check-cfg=cfg(fuzzing) +cargo:rustc-check-cfg=cfg(no_is_available) +cargo:rustc-check-cfg=cfg(no_literal_byte_character) +cargo:rustc-check-cfg=cfg(no_literal_c_string) +cargo:rustc-check-cfg=cfg(no_source_text) +cargo:rustc-check-cfg=cfg(proc_macro_span) +cargo:rustc-check-cfg=cfg(proc_macro_span_file) +cargo:rustc-check-cfg=cfg(proc_macro_span_location) +cargo:rustc-check-cfg=cfg(procmacro2_backtrace) +cargo:rustc-check-cfg=cfg(procmacro2_build_probe) +cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) +cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) +cargo:rustc-check-cfg=cfg(randomize_layout) +cargo:rustc-check-cfg=cfg(span_locations) +cargo:rustc-check-cfg=cfg(super_unstable) +cargo:rustc-check-cfg=cfg(wrap_proc_macro) +cargo:rustc-cfg=span_locations +cargo:rerun-if-changed=src/probe/proc_macro_span.rs +cargo:rustc-cfg=wrap_proc_macro +cargo:rerun-if-changed=src/probe/proc_macro_span_location.rs +cargo:rustc-cfg=proc_macro_span_location +cargo:rerun-if-changed=src/probe/proc_macro_span_file.rs +cargo:rustc-cfg=proc_macro_span_file +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP diff --git a/examples/leptos_axum/target/debug/build/proc-macro2-f9037ddb91635dbd/root-output b/examples/leptos_axum/target/debug/build/proc-macro2-f9037ddb91635dbd/root-output new file mode 100644 index 0000000..916ec4d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/proc-macro2-f9037ddb91635dbd/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/proc-macro2-f9037ddb91635dbd/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/proc-macro2-f9037ddb91635dbd/stderr b/examples/leptos_axum/target/debug/build/proc-macro2-f9037ddb91635dbd/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/pulldown-cmark-5ae88b7df1430425/build-script-build b/examples/leptos_axum/target/debug/build/pulldown-cmark-5ae88b7df1430425/build-script-build new file mode 100755 index 0000000..65c831e Binary files /dev/null and b/examples/leptos_axum/target/debug/build/pulldown-cmark-5ae88b7df1430425/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/pulldown-cmark-5ae88b7df1430425/build_script_build-5ae88b7df1430425 b/examples/leptos_axum/target/debug/build/pulldown-cmark-5ae88b7df1430425/build_script_build-5ae88b7df1430425 new file mode 100755 index 0000000..65c831e Binary files /dev/null and b/examples/leptos_axum/target/debug/build/pulldown-cmark-5ae88b7df1430425/build_script_build-5ae88b7df1430425 differ diff --git a/examples/leptos_axum/target/debug/build/pulldown-cmark-5ae88b7df1430425/build_script_build-5ae88b7df1430425.d b/examples/leptos_axum/target/debug/build/pulldown-cmark-5ae88b7df1430425/build_script_build-5ae88b7df1430425.d new file mode 100644 index 0000000..5d0c83f --- /dev/null +++ b/examples/leptos_axum/target/debug/build/pulldown-cmark-5ae88b7df1430425/build_script_build-5ae88b7df1430425.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/pulldown-cmark-5ae88b7df1430425/build_script_build-5ae88b7df1430425.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/pulldown-cmark-5ae88b7df1430425/build_script_build-5ae88b7df1430425: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/build.rs: diff --git a/examples/leptos_axum/target/debug/build/pulldown-cmark-dba37eae186fd407/invoked.timestamp b/examples/leptos_axum/target/debug/build/pulldown-cmark-dba37eae186fd407/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/pulldown-cmark-dba37eae186fd407/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/pulldown-cmark-dba37eae186fd407/output b/examples/leptos_axum/target/debug/build/pulldown-cmark-dba37eae186fd407/output new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/pulldown-cmark-dba37eae186fd407/root-output b/examples/leptos_axum/target/debug/build/pulldown-cmark-dba37eae186fd407/root-output new file mode 100644 index 0000000..5e88d89 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/pulldown-cmark-dba37eae186fd407/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/pulldown-cmark-dba37eae186fd407/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/pulldown-cmark-dba37eae186fd407/stderr b/examples/leptos_axum/target/debug/build/pulldown-cmark-dba37eae186fd407/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/quote-6dff9724e4e81362/build-script-build b/examples/leptos_axum/target/debug/build/quote-6dff9724e4e81362/build-script-build new file mode 100755 index 0000000..1dbb8e6 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/quote-6dff9724e4e81362/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/quote-6dff9724e4e81362/build_script_build-6dff9724e4e81362 b/examples/leptos_axum/target/debug/build/quote-6dff9724e4e81362/build_script_build-6dff9724e4e81362 new file mode 100755 index 0000000..1dbb8e6 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/quote-6dff9724e4e81362/build_script_build-6dff9724e4e81362 differ diff --git a/examples/leptos_axum/target/debug/build/quote-6dff9724e4e81362/build_script_build-6dff9724e4e81362.d b/examples/leptos_axum/target/debug/build/quote-6dff9724e4e81362/build_script_build-6dff9724e4e81362.d new file mode 100644 index 0000000..a4add00 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/quote-6dff9724e4e81362/build_script_build-6dff9724e4e81362.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/quote-6dff9724e4e81362/build_script_build-6dff9724e4e81362.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/quote-6dff9724e4e81362/build_script_build-6dff9724e4e81362: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/build.rs: diff --git a/examples/leptos_axum/target/debug/build/quote-d182b96d5648b437/invoked.timestamp b/examples/leptos_axum/target/debug/build/quote-d182b96d5648b437/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/quote-d182b96d5648b437/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/quote-d182b96d5648b437/output b/examples/leptos_axum/target/debug/build/quote-d182b96d5648b437/output new file mode 100644 index 0000000..6d81eca --- /dev/null +++ b/examples/leptos_axum/target/debug/build/quote-d182b96d5648b437/output @@ -0,0 +1,2 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) diff --git a/examples/leptos_axum/target/debug/build/quote-d182b96d5648b437/root-output b/examples/leptos_axum/target/debug/build/quote-d182b96d5648b437/root-output new file mode 100644 index 0000000..2306411 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/quote-d182b96d5648b437/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/quote-d182b96d5648b437/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/quote-d182b96d5648b437/stderr b/examples/leptos_axum/target/debug/build/quote-d182b96d5648b437/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/reactive_graph-b97763c3eda5216f/invoked.timestamp b/examples/leptos_axum/target/debug/build/reactive_graph-b97763c3eda5216f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/reactive_graph-b97763c3eda5216f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/reactive_graph-b97763c3eda5216f/output b/examples/leptos_axum/target/debug/build/reactive_graph-b97763c3eda5216f/output new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/reactive_graph-b97763c3eda5216f/root-output b/examples/leptos_axum/target/debug/build/reactive_graph-b97763c3eda5216f/root-output new file mode 100644 index 0000000..e3bcaf2 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/reactive_graph-b97763c3eda5216f/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/reactive_graph-b97763c3eda5216f/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/reactive_graph-b97763c3eda5216f/stderr b/examples/leptos_axum/target/debug/build/reactive_graph-b97763c3eda5216f/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/reactive_graph-db99cfee8bdb5deb/build-script-build b/examples/leptos_axum/target/debug/build/reactive_graph-db99cfee8bdb5deb/build-script-build new file mode 100755 index 0000000..d27a4c5 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/reactive_graph-db99cfee8bdb5deb/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/reactive_graph-db99cfee8bdb5deb/build_script_build-db99cfee8bdb5deb b/examples/leptos_axum/target/debug/build/reactive_graph-db99cfee8bdb5deb/build_script_build-db99cfee8bdb5deb new file mode 100755 index 0000000..d27a4c5 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/reactive_graph-db99cfee8bdb5deb/build_script_build-db99cfee8bdb5deb differ diff --git a/examples/leptos_axum/target/debug/build/reactive_graph-db99cfee8bdb5deb/build_script_build-db99cfee8bdb5deb.d b/examples/leptos_axum/target/debug/build/reactive_graph-db99cfee8bdb5deb/build_script_build-db99cfee8bdb5deb.d new file mode 100644 index 0000000..509264a --- /dev/null +++ b/examples/leptos_axum/target/debug/build/reactive_graph-db99cfee8bdb5deb/build_script_build-db99cfee8bdb5deb.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/reactive_graph-db99cfee8bdb5deb/build_script_build-db99cfee8bdb5deb.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/reactive_graph-db99cfee8bdb5deb/build_script_build-db99cfee8bdb5deb: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/build.rs: diff --git a/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/invoked.timestamp b/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/out/version.expr b/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/out/version.expr new file mode 100644 index 0000000..42f5fba --- /dev/null +++ b/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/out/version.expr @@ -0,0 +1,5 @@ +crate::version::Version { + minor: 97, + patch: 1, + channel: crate::version::Channel::Stable, +} diff --git a/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/output b/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/output new file mode 100644 index 0000000..c2182eb --- /dev/null +++ b/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/output @@ -0,0 +1,3 @@ +cargo:rerun-if-changed=build/build.rs +cargo:rustc-check-cfg=cfg(cfg_macro_not_allowed) +cargo:rustc-check-cfg=cfg(host_os, values("windows")) diff --git a/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/root-output b/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/root-output new file mode 100644 index 0000000..15a9bbf --- /dev/null +++ b/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/stderr b/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/rustversion-b0526d303ea2073d/build-script-build b/examples/leptos_axum/target/debug/build/rustversion-b0526d303ea2073d/build-script-build new file mode 100755 index 0000000..cba63b6 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/rustversion-b0526d303ea2073d/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/rustversion-b0526d303ea2073d/build_script_build-b0526d303ea2073d b/examples/leptos_axum/target/debug/build/rustversion-b0526d303ea2073d/build_script_build-b0526d303ea2073d new file mode 100755 index 0000000..cba63b6 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/rustversion-b0526d303ea2073d/build_script_build-b0526d303ea2073d differ diff --git a/examples/leptos_axum/target/debug/build/rustversion-b0526d303ea2073d/build_script_build-b0526d303ea2073d.d b/examples/leptos_axum/target/debug/build/rustversion-b0526d303ea2073d/build_script_build-b0526d303ea2073d.d new file mode 100644 index 0000000..aec7fe3 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/rustversion-b0526d303ea2073d/build_script_build-b0526d303ea2073d.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/rustversion-b0526d303ea2073d/build_script_build-b0526d303ea2073d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/build/build.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/build/rustc.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/rustversion-b0526d303ea2073d/build_script_build-b0526d303ea2073d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/build/build.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/build/rustc.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/build/build.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/build/rustc.rs: diff --git a/examples/leptos_axum/target/debug/build/serde-047fb28ec31c7b7d/build-script-build b/examples/leptos_axum/target/debug/build/serde-047fb28ec31c7b7d/build-script-build new file mode 100755 index 0000000..c0cf451 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/serde-047fb28ec31c7b7d/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/serde-047fb28ec31c7b7d/build_script_build-047fb28ec31c7b7d b/examples/leptos_axum/target/debug/build/serde-047fb28ec31c7b7d/build_script_build-047fb28ec31c7b7d new file mode 100755 index 0000000..c0cf451 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/serde-047fb28ec31c7b7d/build_script_build-047fb28ec31c7b7d differ diff --git a/examples/leptos_axum/target/debug/build/serde-047fb28ec31c7b7d/build_script_build-047fb28ec31c7b7d.d b/examples/leptos_axum/target/debug/build/serde-047fb28ec31c7b7d/build_script_build-047fb28ec31c7b7d.d new file mode 100644 index 0000000..3919b97 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde-047fb28ec31c7b7d/build_script_build-047fb28ec31c7b7d.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde-047fb28ec31c7b7d/build_script_build-047fb28ec31c7b7d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde-047fb28ec31c7b7d/build_script_build-047fb28ec31c7b7d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/build.rs: diff --git a/examples/leptos_axum/target/debug/build/serde-36b596088804c786/invoked.timestamp b/examples/leptos_axum/target/debug/build/serde-36b596088804c786/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde-36b596088804c786/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/serde-36b596088804c786/out/private.rs b/examples/leptos_axum/target/debug/build/serde-36b596088804c786/out/private.rs new file mode 100644 index 0000000..9200846 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde-36b596088804c786/out/private.rs @@ -0,0 +1,6 @@ +#[doc(hidden)] +pub mod __private229 { + #[doc(hidden)] + pub use crate::private::*; +} +use serde_core::__private229 as serde_core_private; diff --git a/examples/leptos_axum/target/debug/build/serde-36b596088804c786/output b/examples/leptos_axum/target/debug/build/serde-36b596088804c786/output new file mode 100644 index 0000000..854cb53 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde-36b596088804c786/output @@ -0,0 +1,13 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-cfg=if_docsrs_then_no_serde_core +cargo:rustc-check-cfg=cfg(feature, values("result")) +cargo:rustc-check-cfg=cfg(if_docsrs_then_no_serde_core) +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/examples/leptos_axum/target/debug/build/serde-36b596088804c786/root-output b/examples/leptos_axum/target/debug/build/serde-36b596088804c786/root-output new file mode 100644 index 0000000..d05f412 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde-36b596088804c786/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde-36b596088804c786/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/serde-36b596088804c786/stderr b/examples/leptos_axum/target/debug/build/serde-36b596088804c786/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/invoked.timestamp b/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/out/private.rs b/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/out/private.rs new file mode 100644 index 0000000..9200846 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/out/private.rs @@ -0,0 +1,6 @@ +#[doc(hidden)] +pub mod __private229 { + #[doc(hidden)] + pub use crate::private::*; +} +use serde_core::__private229 as serde_core_private; diff --git a/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/output b/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/output new file mode 100644 index 0000000..854cb53 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/output @@ -0,0 +1,13 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-cfg=if_docsrs_then_no_serde_core +cargo:rustc-check-cfg=cfg(feature, values("result")) +cargo:rustc-check-cfg=cfg(if_docsrs_then_no_serde_core) +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/root-output b/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/root-output new file mode 100644 index 0000000..8879ae9 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/stderr b/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/serde-8ace3a4027742868/build-script-build b/examples/leptos_axum/target/debug/build/serde-8ace3a4027742868/build-script-build new file mode 100755 index 0000000..f0f71b9 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/serde-8ace3a4027742868/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/serde-8ace3a4027742868/build_script_build-8ace3a4027742868 b/examples/leptos_axum/target/debug/build/serde-8ace3a4027742868/build_script_build-8ace3a4027742868 new file mode 100755 index 0000000..f0f71b9 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/serde-8ace3a4027742868/build_script_build-8ace3a4027742868 differ diff --git a/examples/leptos_axum/target/debug/build/serde-8ace3a4027742868/build_script_build-8ace3a4027742868.d b/examples/leptos_axum/target/debug/build/serde-8ace3a4027742868/build_script_build-8ace3a4027742868.d new file mode 100644 index 0000000..12dc514 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde-8ace3a4027742868/build_script_build-8ace3a4027742868.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde-8ace3a4027742868/build_script_build-8ace3a4027742868.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde-8ace3a4027742868/build_script_build-8ace3a4027742868: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/build.rs: diff --git a/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/invoked.timestamp b/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/out/private.rs b/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/out/private.rs new file mode 100644 index 0000000..2da7a58 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/out/private.rs @@ -0,0 +1,5 @@ +#[doc(hidden)] +pub mod __private229 { + #[doc(hidden)] + pub use crate::private::*; +} diff --git a/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/output b/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/output new file mode 100644 index 0000000..98a6653 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/output @@ -0,0 +1,11 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(if_docsrs_then_no_serde_core) +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/root-output b/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/root-output new file mode 100644 index 0000000..a07f50f --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/stderr b/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/serde_core-5d6e9002e9317d2c/build-script-build b/examples/leptos_axum/target/debug/build/serde_core-5d6e9002e9317d2c/build-script-build new file mode 100755 index 0000000..c28da66 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/serde_core-5d6e9002e9317d2c/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/serde_core-5d6e9002e9317d2c/build_script_build-5d6e9002e9317d2c b/examples/leptos_axum/target/debug/build/serde_core-5d6e9002e9317d2c/build_script_build-5d6e9002e9317d2c new file mode 100755 index 0000000..c28da66 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/serde_core-5d6e9002e9317d2c/build_script_build-5d6e9002e9317d2c differ diff --git a/examples/leptos_axum/target/debug/build/serde_core-5d6e9002e9317d2c/build_script_build-5d6e9002e9317d2c.d b/examples/leptos_axum/target/debug/build/serde_core-5d6e9002e9317d2c/build_script_build-5d6e9002e9317d2c.d new file mode 100644 index 0000000..98ade5b --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde_core-5d6e9002e9317d2c/build_script_build-5d6e9002e9317d2c.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_core-5d6e9002e9317d2c/build_script_build-5d6e9002e9317d2c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_core-5d6e9002e9317d2c/build_script_build-5d6e9002e9317d2c: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/build.rs: diff --git a/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/invoked.timestamp b/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/out/private.rs b/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/out/private.rs new file mode 100644 index 0000000..2da7a58 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/out/private.rs @@ -0,0 +1,5 @@ +#[doc(hidden)] +pub mod __private229 { + #[doc(hidden)] + pub use crate::private::*; +} diff --git a/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/output b/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/output new file mode 100644 index 0000000..98a6653 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/output @@ -0,0 +1,11 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(if_docsrs_then_no_serde_core) +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/root-output b/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/root-output new file mode 100644 index 0000000..2847ee7 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/stderr b/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/serde_core-f2ae637853f690ee/build-script-build b/examples/leptos_axum/target/debug/build/serde_core-f2ae637853f690ee/build-script-build new file mode 100755 index 0000000..07405ec Binary files /dev/null and b/examples/leptos_axum/target/debug/build/serde_core-f2ae637853f690ee/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/serde_core-f2ae637853f690ee/build_script_build-f2ae637853f690ee b/examples/leptos_axum/target/debug/build/serde_core-f2ae637853f690ee/build_script_build-f2ae637853f690ee new file mode 100755 index 0000000..07405ec Binary files /dev/null and b/examples/leptos_axum/target/debug/build/serde_core-f2ae637853f690ee/build_script_build-f2ae637853f690ee differ diff --git a/examples/leptos_axum/target/debug/build/serde_core-f2ae637853f690ee/build_script_build-f2ae637853f690ee.d b/examples/leptos_axum/target/debug/build/serde_core-f2ae637853f690ee/build_script_build-f2ae637853f690ee.d new file mode 100644 index 0000000..4a36f68 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde_core-f2ae637853f690ee/build_script_build-f2ae637853f690ee.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_core-f2ae637853f690ee/build_script_build-f2ae637853f690ee.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_core-f2ae637853f690ee/build_script_build-f2ae637853f690ee: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/build.rs: diff --git a/examples/leptos_axum/target/debug/build/serde_json-1b15c588822affbf/invoked.timestamp b/examples/leptos_axum/target/debug/build/serde_json-1b15c588822affbf/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde_json-1b15c588822affbf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/serde_json-1b15c588822affbf/output b/examples/leptos_axum/target/debug/build/serde_json-1b15c588822affbf/output new file mode 100644 index 0000000..3201077 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde_json-1b15c588822affbf/output @@ -0,0 +1,3 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(fast_arithmetic, values("32", "64")) +cargo:rustc-cfg=fast_arithmetic="64" diff --git a/examples/leptos_axum/target/debug/build/serde_json-1b15c588822affbf/root-output b/examples/leptos_axum/target/debug/build/serde_json-1b15c588822affbf/root-output new file mode 100644 index 0000000..23a27ea --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde_json-1b15c588822affbf/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_json-1b15c588822affbf/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/serde_json-1b15c588822affbf/stderr b/examples/leptos_axum/target/debug/build/serde_json-1b15c588822affbf/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/serde_json-2c0a994303fe8e5c/build-script-build b/examples/leptos_axum/target/debug/build/serde_json-2c0a994303fe8e5c/build-script-build new file mode 100755 index 0000000..c734981 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/serde_json-2c0a994303fe8e5c/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/serde_json-2c0a994303fe8e5c/build_script_build-2c0a994303fe8e5c b/examples/leptos_axum/target/debug/build/serde_json-2c0a994303fe8e5c/build_script_build-2c0a994303fe8e5c new file mode 100755 index 0000000..c734981 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/serde_json-2c0a994303fe8e5c/build_script_build-2c0a994303fe8e5c differ diff --git a/examples/leptos_axum/target/debug/build/serde_json-2c0a994303fe8e5c/build_script_build-2c0a994303fe8e5c.d b/examples/leptos_axum/target/debug/build/serde_json-2c0a994303fe8e5c/build_script_build-2c0a994303fe8e5c.d new file mode 100644 index 0000000..28b4c88 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/serde_json-2c0a994303fe8e5c/build_script_build-2c0a994303fe8e5c.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_json-2c0a994303fe8e5c/build_script_build-2c0a994303fe8e5c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_json-2c0a994303fe8e5c/build_script_build-2c0a994303fe8e5c: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/build.rs: diff --git a/examples/leptos_axum/target/debug/build/server_fn-3ae6298e70a95fba/build-script-build b/examples/leptos_axum/target/debug/build/server_fn-3ae6298e70a95fba/build-script-build new file mode 100755 index 0000000..94538b9 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/server_fn-3ae6298e70a95fba/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/server_fn-3ae6298e70a95fba/build_script_build-3ae6298e70a95fba b/examples/leptos_axum/target/debug/build/server_fn-3ae6298e70a95fba/build_script_build-3ae6298e70a95fba new file mode 100755 index 0000000..94538b9 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/server_fn-3ae6298e70a95fba/build_script_build-3ae6298e70a95fba differ diff --git a/examples/leptos_axum/target/debug/build/server_fn-3ae6298e70a95fba/build_script_build-3ae6298e70a95fba.d b/examples/leptos_axum/target/debug/build/server_fn-3ae6298e70a95fba/build_script_build-3ae6298e70a95fba.d new file mode 100644 index 0000000..5aba6fb --- /dev/null +++ b/examples/leptos_axum/target/debug/build/server_fn-3ae6298e70a95fba/build_script_build-3ae6298e70a95fba.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/server_fn-3ae6298e70a95fba/build_script_build-3ae6298e70a95fba.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/server_fn-3ae6298e70a95fba/build_script_build-3ae6298e70a95fba: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/build.rs: diff --git a/examples/leptos_axum/target/debug/build/server_fn-f139628b0d90e05e/invoked.timestamp b/examples/leptos_axum/target/debug/build/server_fn-f139628b0d90e05e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/server_fn-f139628b0d90e05e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/server_fn-f139628b0d90e05e/output b/examples/leptos_axum/target/debug/build/server_fn-f139628b0d90e05e/output new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/server_fn-f139628b0d90e05e/root-output b/examples/leptos_axum/target/debug/build/server_fn-f139628b0d90e05e/root-output new file mode 100644 index 0000000..a4ded95 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/server_fn-f139628b0d90e05e/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/server_fn-f139628b0d90e05e/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/server_fn-f139628b0d90e05e/stderr b/examples/leptos_axum/target/debug/build/server_fn-f139628b0d90e05e/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/server_fn_macro-d8468f1f77dec8ea/build-script-build b/examples/leptos_axum/target/debug/build/server_fn_macro-d8468f1f77dec8ea/build-script-build new file mode 100755 index 0000000..93da53f Binary files /dev/null and b/examples/leptos_axum/target/debug/build/server_fn_macro-d8468f1f77dec8ea/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/server_fn_macro-d8468f1f77dec8ea/build_script_build-d8468f1f77dec8ea b/examples/leptos_axum/target/debug/build/server_fn_macro-d8468f1f77dec8ea/build_script_build-d8468f1f77dec8ea new file mode 100755 index 0000000..93da53f Binary files /dev/null and b/examples/leptos_axum/target/debug/build/server_fn_macro-d8468f1f77dec8ea/build_script_build-d8468f1f77dec8ea differ diff --git a/examples/leptos_axum/target/debug/build/server_fn_macro-d8468f1f77dec8ea/build_script_build-d8468f1f77dec8ea.d b/examples/leptos_axum/target/debug/build/server_fn_macro-d8468f1f77dec8ea/build_script_build-d8468f1f77dec8ea.d new file mode 100644 index 0000000..ea78e3b --- /dev/null +++ b/examples/leptos_axum/target/debug/build/server_fn_macro-d8468f1f77dec8ea/build_script_build-d8468f1f77dec8ea.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/server_fn_macro-d8468f1f77dec8ea/build_script_build-d8468f1f77dec8ea.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn_macro-0.8.10/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/server_fn_macro-d8468f1f77dec8ea/build_script_build-d8468f1f77dec8ea: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn_macro-0.8.10/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn_macro-0.8.10/build.rs: diff --git a/examples/leptos_axum/target/debug/build/server_fn_macro-e70729b978250205/invoked.timestamp b/examples/leptos_axum/target/debug/build/server_fn_macro-e70729b978250205/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/server_fn_macro-e70729b978250205/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/server_fn_macro-e70729b978250205/output b/examples/leptos_axum/target/debug/build/server_fn_macro-e70729b978250205/output new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/server_fn_macro-e70729b978250205/root-output b/examples/leptos_axum/target/debug/build/server_fn_macro-e70729b978250205/root-output new file mode 100644 index 0000000..63c67ef --- /dev/null +++ b/examples/leptos_axum/target/debug/build/server_fn_macro-e70729b978250205/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/server_fn_macro-e70729b978250205/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/server_fn_macro-e70729b978250205/stderr b/examples/leptos_axum/target/debug/build/server_fn_macro-e70729b978250205/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/slotmap-1c2b2eeaa881df50/invoked.timestamp b/examples/leptos_axum/target/debug/build/slotmap-1c2b2eeaa881df50/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/slotmap-1c2b2eeaa881df50/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/slotmap-1c2b2eeaa881df50/output b/examples/leptos_axum/target/debug/build/slotmap-1c2b2eeaa881df50/output new file mode 100644 index 0000000..129c59f --- /dev/null +++ b/examples/leptos_axum/target/debug/build/slotmap-1c2b2eeaa881df50/output @@ -0,0 +1 @@ +cargo:rustc-check-cfg=cfg(nightly) diff --git a/examples/leptos_axum/target/debug/build/slotmap-1c2b2eeaa881df50/root-output b/examples/leptos_axum/target/debug/build/slotmap-1c2b2eeaa881df50/root-output new file mode 100644 index 0000000..bc3a62e --- /dev/null +++ b/examples/leptos_axum/target/debug/build/slotmap-1c2b2eeaa881df50/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/slotmap-1c2b2eeaa881df50/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/slotmap-1c2b2eeaa881df50/stderr b/examples/leptos_axum/target/debug/build/slotmap-1c2b2eeaa881df50/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/slotmap-d4f3f708af8675a8/build-script-build b/examples/leptos_axum/target/debug/build/slotmap-d4f3f708af8675a8/build-script-build new file mode 100755 index 0000000..22bc861 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/slotmap-d4f3f708af8675a8/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/slotmap-d4f3f708af8675a8/build_script_build-d4f3f708af8675a8 b/examples/leptos_axum/target/debug/build/slotmap-d4f3f708af8675a8/build_script_build-d4f3f708af8675a8 new file mode 100755 index 0000000..22bc861 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/slotmap-d4f3f708af8675a8/build_script_build-d4f3f708af8675a8 differ diff --git a/examples/leptos_axum/target/debug/build/slotmap-d4f3f708af8675a8/build_script_build-d4f3f708af8675a8.d b/examples/leptos_axum/target/debug/build/slotmap-d4f3f708af8675a8/build_script_build-d4f3f708af8675a8.d new file mode 100644 index 0000000..9342f7a --- /dev/null +++ b/examples/leptos_axum/target/debug/build/slotmap-d4f3f708af8675a8/build_script_build-d4f3f708af8675a8.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/slotmap-d4f3f708af8675a8/build_script_build-d4f3f708af8675a8.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/slotmap-d4f3f708af8675a8/build_script_build-d4f3f708af8675a8: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/build.rs: diff --git a/examples/leptos_axum/target/debug/build/tachys-4f2ce050e8cea98c/build-script-build b/examples/leptos_axum/target/debug/build/tachys-4f2ce050e8cea98c/build-script-build new file mode 100755 index 0000000..c684391 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/tachys-4f2ce050e8cea98c/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/tachys-4f2ce050e8cea98c/build_script_build-4f2ce050e8cea98c b/examples/leptos_axum/target/debug/build/tachys-4f2ce050e8cea98c/build_script_build-4f2ce050e8cea98c new file mode 100755 index 0000000..c684391 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/tachys-4f2ce050e8cea98c/build_script_build-4f2ce050e8cea98c differ diff --git a/examples/leptos_axum/target/debug/build/tachys-4f2ce050e8cea98c/build_script_build-4f2ce050e8cea98c.d b/examples/leptos_axum/target/debug/build/tachys-4f2ce050e8cea98c/build_script_build-4f2ce050e8cea98c.d new file mode 100644 index 0000000..f2943d9 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/tachys-4f2ce050e8cea98c/build_script_build-4f2ce050e8cea98c.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/tachys-4f2ce050e8cea98c/build_script_build-4f2ce050e8cea98c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/tachys-4f2ce050e8cea98c/build_script_build-4f2ce050e8cea98c: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/build.rs: diff --git a/examples/leptos_axum/target/debug/build/tachys-66525ec357922bb8/invoked.timestamp b/examples/leptos_axum/target/debug/build/tachys-66525ec357922bb8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/tachys-66525ec357922bb8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/tachys-66525ec357922bb8/output b/examples/leptos_axum/target/debug/build/tachys-66525ec357922bb8/output new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/tachys-66525ec357922bb8/root-output b/examples/leptos_axum/target/debug/build/tachys-66525ec357922bb8/root-output new file mode 100644 index 0000000..95f082a --- /dev/null +++ b/examples/leptos_axum/target/debug/build/tachys-66525ec357922bb8/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/tachys-66525ec357922bb8/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/tachys-66525ec357922bb8/stderr b/examples/leptos_axum/target/debug/build/tachys-66525ec357922bb8/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/invoked.timestamp b/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/out/private.rs b/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/out/private.rs new file mode 100644 index 0000000..3206fe0 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/out/private.rs @@ -0,0 +1,5 @@ +#[doc(hidden)] +pub mod __private19 { + #[doc(hidden)] + pub use crate::private::*; +} diff --git a/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/output b/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/output new file mode 100644 index 0000000..f62a8d1 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/output @@ -0,0 +1,5 @@ +cargo:rerun-if-changed=build/probe.rs +cargo:rustc-check-cfg=cfg(error_generic_member_access) +cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) +cargo:rustc-check-cfg=cfg(thiserror_no_backtrace_type) +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP diff --git a/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/root-output b/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/root-output new file mode 100644 index 0000000..0041710 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/stderr b/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/thiserror-2c86f3aea4f39327/invoked.timestamp b/examples/leptos_axum/target/debug/build/thiserror-2c86f3aea4f39327/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/thiserror-2c86f3aea4f39327/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/thiserror-2c86f3aea4f39327/output b/examples/leptos_axum/target/debug/build/thiserror-2c86f3aea4f39327/output new file mode 100644 index 0000000..3b23df4 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/thiserror-2c86f3aea4f39327/output @@ -0,0 +1,4 @@ +cargo:rerun-if-changed=build/probe.rs +cargo:rustc-check-cfg=cfg(error_generic_member_access) +cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP diff --git a/examples/leptos_axum/target/debug/build/thiserror-2c86f3aea4f39327/root-output b/examples/leptos_axum/target/debug/build/thiserror-2c86f3aea4f39327/root-output new file mode 100644 index 0000000..3ddc65a --- /dev/null +++ b/examples/leptos_axum/target/debug/build/thiserror-2c86f3aea4f39327/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/thiserror-2c86f3aea4f39327/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/thiserror-2c86f3aea4f39327/stderr b/examples/leptos_axum/target/debug/build/thiserror-2c86f3aea4f39327/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/thiserror-529e636cb807cb66/build-script-build b/examples/leptos_axum/target/debug/build/thiserror-529e636cb807cb66/build-script-build new file mode 100755 index 0000000..98cae80 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/thiserror-529e636cb807cb66/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/thiserror-529e636cb807cb66/build_script_build-529e636cb807cb66 b/examples/leptos_axum/target/debug/build/thiserror-529e636cb807cb66/build_script_build-529e636cb807cb66 new file mode 100755 index 0000000..98cae80 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/thiserror-529e636cb807cb66/build_script_build-529e636cb807cb66 differ diff --git a/examples/leptos_axum/target/debug/build/thiserror-529e636cb807cb66/build_script_build-529e636cb807cb66.d b/examples/leptos_axum/target/debug/build/thiserror-529e636cb807cb66/build_script_build-529e636cb807cb66.d new file mode 100644 index 0000000..91ae419 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/thiserror-529e636cb807cb66/build_script_build-529e636cb807cb66.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/thiserror-529e636cb807cb66/build_script_build-529e636cb807cb66.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/thiserror-529e636cb807cb66/build_script_build-529e636cb807cb66: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/build.rs: diff --git a/examples/leptos_axum/target/debug/build/thiserror-c38a878e108bbc23/build-script-build b/examples/leptos_axum/target/debug/build/thiserror-c38a878e108bbc23/build-script-build new file mode 100755 index 0000000..382ac86 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/thiserror-c38a878e108bbc23/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/thiserror-c38a878e108bbc23/build_script_build-c38a878e108bbc23 b/examples/leptos_axum/target/debug/build/thiserror-c38a878e108bbc23/build_script_build-c38a878e108bbc23 new file mode 100755 index 0000000..382ac86 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/thiserror-c38a878e108bbc23/build_script_build-c38a878e108bbc23 differ diff --git a/examples/leptos_axum/target/debug/build/thiserror-c38a878e108bbc23/build_script_build-c38a878e108bbc23.d b/examples/leptos_axum/target/debug/build/thiserror-c38a878e108bbc23/build_script_build-c38a878e108bbc23.d new file mode 100644 index 0000000..6baf381 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/thiserror-c38a878e108bbc23/build_script_build-c38a878e108bbc23.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/thiserror-c38a878e108bbc23/build_script_build-c38a878e108bbc23.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/thiserror-c38a878e108bbc23/build_script_build-c38a878e108bbc23: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs: diff --git a/examples/leptos_axum/target/debug/build/wasm-bindgen-44bb07e9720af6f9/invoked.timestamp b/examples/leptos_axum/target/debug/build/wasm-bindgen-44bb07e9720af6f9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/wasm-bindgen-44bb07e9720af6f9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/wasm-bindgen-44bb07e9720af6f9/output b/examples/leptos_axum/target/debug/build/wasm-bindgen-44bb07e9720af6f9/output new file mode 100644 index 0000000..617b994 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/wasm-bindgen-44bb07e9720af6f9/output @@ -0,0 +1,4 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(wbg_diagnostic) +cargo:rustc-cfg=wbg_diagnostic +cargo:rustc-check-cfg=cfg(wbg_reference_types) diff --git a/examples/leptos_axum/target/debug/build/wasm-bindgen-44bb07e9720af6f9/root-output b/examples/leptos_axum/target/debug/build/wasm-bindgen-44bb07e9720af6f9/root-output new file mode 100644 index 0000000..31bd0dd --- /dev/null +++ b/examples/leptos_axum/target/debug/build/wasm-bindgen-44bb07e9720af6f9/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/wasm-bindgen-44bb07e9720af6f9/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/wasm-bindgen-44bb07e9720af6f9/stderr b/examples/leptos_axum/target/debug/build/wasm-bindgen-44bb07e9720af6f9/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/wasm-bindgen-fba7949c8f2ef40f/build-script-build b/examples/leptos_axum/target/debug/build/wasm-bindgen-fba7949c8f2ef40f/build-script-build new file mode 100755 index 0000000..538f967 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/wasm-bindgen-fba7949c8f2ef40f/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/wasm-bindgen-fba7949c8f2ef40f/build_script_build-fba7949c8f2ef40f b/examples/leptos_axum/target/debug/build/wasm-bindgen-fba7949c8f2ef40f/build_script_build-fba7949c8f2ef40f new file mode 100755 index 0000000..538f967 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/wasm-bindgen-fba7949c8f2ef40f/build_script_build-fba7949c8f2ef40f differ diff --git a/examples/leptos_axum/target/debug/build/wasm-bindgen-fba7949c8f2ef40f/build_script_build-fba7949c8f2ef40f.d b/examples/leptos_axum/target/debug/build/wasm-bindgen-fba7949c8f2ef40f/build_script_build-fba7949c8f2ef40f.d new file mode 100644 index 0000000..141136f --- /dev/null +++ b/examples/leptos_axum/target/debug/build/wasm-bindgen-fba7949c8f2ef40f/build_script_build-fba7949c8f2ef40f.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/wasm-bindgen-fba7949c8f2ef40f/build_script_build-fba7949c8f2ef40f.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/wasm-bindgen-fba7949c8f2ef40f/build_script_build-fba7949c8f2ef40f: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/build.rs: diff --git a/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-9c459357017d924a/build-script-build b/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-9c459357017d924a/build-script-build new file mode 100755 index 0000000..09c0424 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-9c459357017d924a/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-9c459357017d924a/build_script_build-9c459357017d924a b/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-9c459357017d924a/build_script_build-9c459357017d924a new file mode 100755 index 0000000..09c0424 Binary files /dev/null and b/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-9c459357017d924a/build_script_build-9c459357017d924a differ diff --git a/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-9c459357017d924a/build_script_build-9c459357017d924a.d b/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-9c459357017d924a/build_script_build-9c459357017d924a.d new file mode 100644 index 0000000..96f8852 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-9c459357017d924a/build_script_build-9c459357017d924a.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-9c459357017d924a/build_script_build-9c459357017d924a.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-9c459357017d924a/build_script_build-9c459357017d924a: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/build.rs: diff --git a/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-d195e4f1aa2147fb/invoked.timestamp b/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-d195e4f1aa2147fb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-d195e4f1aa2147fb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-d195e4f1aa2147fb/output b/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-d195e4f1aa2147fb/output new file mode 100644 index 0000000..21e1aad --- /dev/null +++ b/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-d195e4f1aa2147fb/output @@ -0,0 +1 @@ +cargo:rustc-env=SCHEMA_FILE_HASH=4279711543728568852 diff --git a/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-d195e4f1aa2147fb/root-output b/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-d195e4f1aa2147fb/root-output new file mode 100644 index 0000000..0806bb2 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-d195e4f1aa2147fb/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-d195e4f1aa2147fb/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-d195e4f1aa2147fb/stderr b/examples/leptos_axum/target/debug/build/wasm-bindgen-shared-d195e4f1aa2147fb/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/zmij-1d41e468114f7fa5/invoked.timestamp b/examples/leptos_axum/target/debug/build/zmij-1d41e468114f7fa5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/examples/leptos_axum/target/debug/build/zmij-1d41e468114f7fa5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/zmij-1d41e468114f7fa5/output b/examples/leptos_axum/target/debug/build/zmij-1d41e468114f7fa5/output new file mode 100644 index 0000000..726e627 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/zmij-1d41e468114f7fa5/output @@ -0,0 +1,4 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(exhaustive) +cargo:rustc-check-cfg=cfg(opt_level, values("s")) +cargo:rustc-check-cfg=cfg(zmij_no_select_unpredictable) diff --git a/examples/leptos_axum/target/debug/build/zmij-1d41e468114f7fa5/root-output b/examples/leptos_axum/target/debug/build/zmij-1d41e468114f7fa5/root-output new file mode 100644 index 0000000..646867e --- /dev/null +++ b/examples/leptos_axum/target/debug/build/zmij-1d41e468114f7fa5/root-output @@ -0,0 +1 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/zmij-1d41e468114f7fa5/out \ No newline at end of file diff --git a/examples/leptos_axum/target/debug/build/zmij-1d41e468114f7fa5/stderr b/examples/leptos_axum/target/debug/build/zmij-1d41e468114f7fa5/stderr new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/build/zmij-37c7a7b83a60607f/build-script-build b/examples/leptos_axum/target/debug/build/zmij-37c7a7b83a60607f/build-script-build new file mode 100755 index 0000000..d99dd1a Binary files /dev/null and b/examples/leptos_axum/target/debug/build/zmij-37c7a7b83a60607f/build-script-build differ diff --git a/examples/leptos_axum/target/debug/build/zmij-37c7a7b83a60607f/build_script_build-37c7a7b83a60607f b/examples/leptos_axum/target/debug/build/zmij-37c7a7b83a60607f/build_script_build-37c7a7b83a60607f new file mode 100755 index 0000000..d99dd1a Binary files /dev/null and b/examples/leptos_axum/target/debug/build/zmij-37c7a7b83a60607f/build_script_build-37c7a7b83a60607f differ diff --git a/examples/leptos_axum/target/debug/build/zmij-37c7a7b83a60607f/build_script_build-37c7a7b83a60607f.d b/examples/leptos_axum/target/debug/build/zmij-37c7a7b83a60607f/build_script_build-37c7a7b83a60607f.d new file mode 100644 index 0000000..2024937 --- /dev/null +++ b/examples/leptos_axum/target/debug/build/zmij-37c7a7b83a60607f/build_script_build-37c7a7b83a60607f.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/zmij-37c7a7b83a60607f/build_script_build-37c7a7b83a60607f.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/build.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/zmij-37c7a7b83a60607f/build_script_build-37c7a7b83a60607f: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/build.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/build.rs: diff --git a/examples/leptos_axum/target/debug/deps/aho_corasick-7e7dc3fcb99ca317.d b/examples/leptos_axum/target/debug/deps/aho_corasick-7e7dc3fcb99ca317.d new file mode 100644 index 0000000..52077d9 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/aho_corasick-7e7dc3fcb99ca317.d @@ -0,0 +1,33 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/aho_corasick-7e7dc3fcb99ca317.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/ahocorasick.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/automaton.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/dfa.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/contiguous.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/noncontiguous.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/api.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/pattern.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/rabinkarp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/generic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/vector.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/alphabet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/byte_frequencies.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/prefilter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/remapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/search.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/special.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libaho_corasick-7e7dc3fcb99ca317.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/ahocorasick.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/automaton.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/dfa.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/contiguous.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/noncontiguous.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/api.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/pattern.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/rabinkarp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/generic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/vector.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/alphabet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/byte_frequencies.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/prefilter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/remapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/search.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/special.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/ahocorasick.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/automaton.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/dfa.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/contiguous.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/nfa/noncontiguous.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/api.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/pattern.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/rabinkarp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/builder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/teddy/generic.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/packed/vector.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/alphabet.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/buffer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/byte_frequencies.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/debug.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/int.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/prefilter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/primitives.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/remapper.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/search.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aho-corasick-1.1.4/src/util/special.rs: diff --git a/examples/leptos_axum/target/debug/deps/any_spawner-361659875a04860f.d b/examples/leptos_axum/target/debug/deps/any_spawner-361659875a04860f.d new file mode 100644 index 0000000..8833ed3 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/any_spawner-361659875a04860f.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/any_spawner-361659875a04860f.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/any_spawner-0.3.0/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libany_spawner-361659875a04860f.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/any_spawner-0.3.0/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/any_spawner-0.3.0/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/anyhow-63324738ee307b1e.d b/examples/leptos_axum/target/debug/deps/anyhow-63324738ee307b1e.d new file mode 100644 index 0000000..17a1bd4 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/anyhow-63324738ee307b1e.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/anyhow-63324738ee307b1e.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/backtrace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/context.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ensure.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/kind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/wrapper.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libanyhow-63324738ee307b1e.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/backtrace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/context.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ensure.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/kind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/wrapper.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libanyhow-63324738ee307b1e.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/backtrace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/context.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ensure.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/kind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/wrapper.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/backtrace.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/chain.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/context.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ensure.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/fmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/kind.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ptr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/wrapper.rs: diff --git a/examples/leptos_axum/target/debug/deps/anyhow-b73a1c715f21f557.d b/examples/leptos_axum/target/debug/deps/anyhow-b73a1c715f21f557.d new file mode 100644 index 0000000..f0e0634 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/anyhow-b73a1c715f21f557.d @@ -0,0 +1,15 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/anyhow-b73a1c715f21f557.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/backtrace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/context.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ensure.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/kind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/wrapper.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libanyhow-b73a1c715f21f557.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/backtrace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/context.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ensure.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/kind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/wrapper.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/backtrace.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/chain.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/context.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ensure.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/fmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/kind.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/ptr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anyhow-1.0.104/src/wrapper.rs: diff --git a/examples/leptos_axum/target/debug/deps/async_lock-382d81936a3e281a.d b/examples/leptos_axum/target/debug/deps/async_lock-382d81936a3e281a.d new file mode 100644 index 0000000..a737a8f --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/async_lock-382d81936a3e281a.d @@ -0,0 +1,12 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/async_lock-382d81936a3e281a.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/barrier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/once_cell.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/rwlock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/rwlock/futures.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/rwlock/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/semaphore.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libasync_lock-382d81936a3e281a.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/barrier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/once_cell.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/rwlock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/rwlock/futures.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/rwlock/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/semaphore.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/barrier.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/mutex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/once_cell.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/rwlock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/rwlock/futures.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/rwlock/raw.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-lock-3.4.2/src/semaphore.rs: diff --git a/examples/leptos_axum/target/debug/deps/async_once_cell-ec8006818f625de1.d b/examples/leptos_axum/target/debug/deps/async_once_cell-ec8006818f625de1.d new file mode 100644 index 0000000..80bed31 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/async_once_cell-ec8006818f625de1.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/async_once_cell-ec8006818f625de1.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-once-cell-0.5.4/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libasync_once_cell-ec8006818f625de1.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-once-cell-0.5.4/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-once-cell-0.5.4/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/async_trait-05006c89df4656d0.d b/examples/leptos_axum/target/debug/deps/async_trait-05006c89df4656d0.d new file mode 100644 index 0000000..a2a4a5f --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/async_trait-05006c89df4656d0.d @@ -0,0 +1,12 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/async_trait-05006c89df4656d0.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/args.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/bound.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/expand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/receiver.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/verbatim.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libasync_trait-05006c89df4656d0.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/args.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/bound.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/expand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/receiver.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/verbatim.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/args.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/bound.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/expand.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/lifetime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/receiver.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/async-trait-0.1.91/src/verbatim.rs: diff --git a/examples/leptos_axum/target/debug/deps/attribute_derive-f62d62e13cdaddf5.d b/examples/leptos_axum/target/debug/deps/attribute_derive-f62d62e13cdaddf5.d new file mode 100644 index 0000000..9514ab9 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/attribute_derive-f62d62e13cdaddf5.d @@ -0,0 +1,13 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/attribute_derive-f62d62e13cdaddf5.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/std_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/syn_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/parsing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/from_partial.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/../docs/traits.html + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libattribute_derive-f62d62e13cdaddf5.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/std_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/syn_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/parsing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/from_partial.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/../docs/traits.html + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libattribute_derive-f62d62e13cdaddf5.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/std_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/syn_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/parsing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/from_partial.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/../docs/traits.html + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/std_impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/syn_impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/parsing.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/from_partial.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-0.10.5/src/../docs/traits.html: diff --git a/examples/leptos_axum/target/debug/deps/attribute_derive_macro-609872bc0610bf37.d b/examples/leptos_axum/target/debug/deps/attribute_derive_macro-609872bc0610bf37.d new file mode 100644 index 0000000..a14626c --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/attribute_derive_macro-609872bc0610bf37.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/attribute_derive_macro-609872bc0610bf37.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-macro-0.10.5/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libattribute_derive_macro-609872bc0610bf37.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-macro-0.10.5/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/attribute-derive-macro-0.10.5/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/base16-2acebe9a84ad400d.d b/examples/leptos_axum/target/debug/deps/base16-2acebe9a84ad400d.d new file mode 100644 index 0000000..eb80e2b --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/base16-2acebe9a84ad400d.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/base16-2acebe9a84ad400d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base16-0.2.1/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libbase16-2acebe9a84ad400d.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base16-0.2.1/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libbase16-2acebe9a84ad400d.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base16-0.2.1/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base16-0.2.1/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/base64-86c29447d3e7c92b.d b/examples/leptos_axum/target/debug/deps/base64-86c29447d3e7c92b.d new file mode 100644 index 0000000..ec8b08e --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/base64-86c29447d3e7c92b.d @@ -0,0 +1,20 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/base64-86c29447d3e7c92b.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/chunked_encoder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/decoder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder_string_writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode_suffix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/alphabet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/encode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/decode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/prelude.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libbase64-86c29447d3e7c92b.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/chunked_encoder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/decoder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder_string_writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode_suffix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/alphabet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/encode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/decode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/prelude.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/chunked_encoder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/display.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/read/decoder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/write/encoder_string_writer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/engine/general_purpose/decode_suffix.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/alphabet.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/encode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/decode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/base64-0.22.1/src/prelude.rs: diff --git a/examples/leptos_axum/target/debug/deps/bitflags-cff3612a3afc1bc7.d b/examples/leptos_axum/target/debug/deps/bitflags-cff3612a3afc1bc7.d new file mode 100644 index 0000000..2f7b8af --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/bitflags-cff3612a3afc1bc7.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/bitflags-cff3612a3afc1bc7.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/public.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/internal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/external.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libbitflags-cff3612a3afc1bc7.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/public.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/internal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/external.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/parser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/traits.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/public.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/internal.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bitflags-2.13.1/src/external.rs: diff --git a/examples/leptos_axum/target/debug/deps/block_buffer-82877868746bd0a3.d b/examples/leptos_axum/target/debug/deps/block_buffer-82877868746bd0a3.d new file mode 100644 index 0000000..81b40aa --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/block_buffer-82877868746bd0a3.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/block_buffer-82877868746bd0a3.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/sealed.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libblock_buffer-82877868746bd0a3.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/sealed.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libblock_buffer-82877868746bd0a3.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/sealed.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/block-buffer-0.10.4/src/sealed.rs: diff --git a/examples/leptos_axum/target/debug/deps/bumpalo-79e9bea688dd5fa8.d b/examples/leptos_axum/target/debug/deps/bumpalo-79e9bea688dd5fa8.d new file mode 100644 index 0000000..b950cff --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/bumpalo-79e9bea688dd5fa8.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/bumpalo-79e9bea688dd5fa8.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.20.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.20.3/src/alloc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.20.3/src/../README.md + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libbumpalo-79e9bea688dd5fa8.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.20.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.20.3/src/alloc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.20.3/src/../README.md + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libbumpalo-79e9bea688dd5fa8.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.20.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.20.3/src/alloc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.20.3/src/../README.md + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.20.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.20.3/src/alloc.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bumpalo-3.20.3/src/../README.md: diff --git a/examples/leptos_axum/target/debug/deps/bytes-c3394b0af77a15c5.d b/examples/leptos_axum/target/debug/deps/bytes-c3394b0af77a15c5.d new file mode 100644 index 0000000..26534b4 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/bytes-c3394b0af77a15c5.d @@ -0,0 +1,22 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/bytes-c3394b0af77a15c5.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/limit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/take.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/uninit_slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/vec_deque.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/hex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/loom.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libbytes-c3394b0af77a15c5.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/limit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/take.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/uninit_slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/vec_deque.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/hex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/loom.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/buf_mut.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/chain.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/limit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/reader.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/take.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/uninit_slice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/vec_deque.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/buf/writer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/bytes_mut.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/debug.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/fmt/hex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bytes-1.12.1/src/loom.rs: diff --git a/examples/leptos_axum/target/debug/deps/camino-66e40624b2ee4131.d b/examples/leptos_axum/target/debug/deps/camino-66e40624b2ee4131.d new file mode 100644 index 0000000..ce52fd4 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/camino-66e40624b2ee4131.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/camino-66e40624b2ee4131.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/camino-1.2.5/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libcamino-66e40624b2ee4131.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/camino-1.2.5/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libcamino-66e40624b2ee4131.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/camino-1.2.5/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/camino-1.2.5/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/camino-7ece83f2109c1466.d b/examples/leptos_axum/target/debug/deps/camino-7ece83f2109c1466.d new file mode 100644 index 0000000..faaf2b3 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/camino-7ece83f2109c1466.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/camino-7ece83f2109c1466.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/camino-1.2.5/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libcamino-7ece83f2109c1466.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/camino-1.2.5/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/camino-1.2.5/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/cfg_if-8e014ddcb785b96d.d b/examples/leptos_axum/target/debug/deps/cfg_if-8e014ddcb785b96d.d new file mode 100644 index 0000000..441b029 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/cfg_if-8e014ddcb785b96d.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/cfg_if-8e014ddcb785b96d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libcfg_if-8e014ddcb785b96d.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/cfg_if-a5d74e57c5b7e6d1.d b/examples/leptos_axum/target/debug/deps/cfg_if-a5d74e57c5b7e6d1.d new file mode 100644 index 0000000..e982bc5 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/cfg_if-a5d74e57c5b7e6d1.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/cfg_if-a5d74e57c5b7e6d1.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libcfg_if-a5d74e57c5b7e6d1.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libcfg_if-a5d74e57c5b7e6d1.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/codee-52695188789e516c.d b/examples/leptos_axum/target/debug/deps/codee-52695188789e516c.d new file mode 100644 index 0000000..dbfd500 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/codee-52695188789e516c.d @@ -0,0 +1,14 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/codee-52695188789e516c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/binary/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/binary/from_to_bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/hybrid.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/string/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/string/from_to_string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/string/json_serde.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/string/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/traits.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libcodee-52695188789e516c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/binary/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/binary/from_to_bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/hybrid.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/string/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/string/from_to_string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/string/json_serde.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/string/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/traits.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/binary/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/binary/from_to_bytes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/hybrid.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/string/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/string/from_to_string.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/string/json_serde.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/string/option.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/codee-0.3.5/src/traits.rs: diff --git a/examples/leptos_axum/target/debug/deps/collection_literals-4f0a9919e4b05d61.d b/examples/leptos_axum/target/debug/deps/collection_literals-4f0a9919e4b05d61.d new file mode 100644 index 0000000..8287fde --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/collection_literals-4f0a9919e4b05d61.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/collection_literals-4f0a9919e4b05d61.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/collection_literals-1.0.3/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libcollection_literals-4f0a9919e4b05d61.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/collection_literals-1.0.3/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libcollection_literals-4f0a9919e4b05d61.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/collection_literals-1.0.3/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/collection_literals-1.0.3/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/config-3c9b85a4af98af1d.d b/examples/leptos_axum/target/debug/deps/config-3c9b85a4af98af1d.d new file mode 100644 index 0000000..9b842de --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/config-3c9b85a4af98af1d.d @@ -0,0 +1,24 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/config-3c9b85a4af98af1d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/config.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/env.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/format/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/format/toml.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/source/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/source/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/source/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/path/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/path/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/../examples/simple.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libconfig-3c9b85a4af98af1d.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/config.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/env.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/format/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/format/toml.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/source/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/source/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/source/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/path/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/path/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/../examples/simple.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/builder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/config.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/de.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/env.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/format/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/format/toml.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/source/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/source/file.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/file/source/string.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/format.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/path/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/path/parser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/ser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/source.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/config-0.15.25/src/../examples/simple.rs: diff --git a/examples/leptos_axum/target/debug/deps/console_error_panic_hook-711a7aa6723a560b.d b/examples/leptos_axum/target/debug/deps/console_error_panic_hook-711a7aa6723a560b.d new file mode 100644 index 0000000..36971e1 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/console_error_panic_hook-711a7aa6723a560b.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/console_error_panic_hook-711a7aa6723a560b.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_error_panic_hook-0.1.7/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libconsole_error_panic_hook-711a7aa6723a560b.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_error_panic_hook-0.1.7/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/console_error_panic_hook-0.1.7/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/const_format-e1fe68a0dc334ca5.d b/examples/leptos_axum/target/debug/deps/const_format-e1fe68a0dc334ca5.d new file mode 100644 index 0000000..7105738 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/const_format-e1fe68a0dc334ca5.d @@ -0,0 +1,29 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/const_format-e1fe68a0dc334ca5.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/assertions.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/constructors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/helper_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/fmt_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/map_ascii_case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/str_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/formatting.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/char_encoding.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/pargument.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/const_generic_concatcp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__hidden_utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/wrapper_types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/wrapper_types/pwrapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__ascii_case_conv.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__ascii_case_conv/word_iterator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_replace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_repeat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_splice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_indexing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/pattern.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/const_debug_derive.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libconst_format-e1fe68a0dc334ca5.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/assertions.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/constructors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/helper_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/fmt_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/map_ascii_case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/str_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/formatting.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/char_encoding.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/pargument.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/const_generic_concatcp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__hidden_utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/wrapper_types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/wrapper_types/pwrapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__ascii_case_conv.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__ascii_case_conv/word_iterator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_replace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_repeat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_splice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_indexing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/pattern.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/const_debug_derive.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/assertions.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/constructors.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/helper_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/fmt_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/map_ascii_case.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/str_methods.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/formatting.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/char_encoding.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/pargument.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/const_generic_concatcp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__hidden_utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/wrapper_types.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/wrapper_types/pwrapper.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__ascii_case_conv.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__ascii_case_conv/word_iterator.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_replace.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_repeat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_splice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_indexing.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_split.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/pattern.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/const_debug_derive.rs: diff --git a/examples/leptos_axum/target/debug/deps/const_format-f314c68d7f0a66dd.d b/examples/leptos_axum/target/debug/deps/const_format-f314c68d7f0a66dd.d new file mode 100644 index 0000000..8ae4404 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/const_format-f314c68d7f0a66dd.d @@ -0,0 +1,31 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/const_format-f314c68d7f0a66dd.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/assertions.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/constructors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/helper_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/fmt_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/map_ascii_case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/str_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/formatting.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/char_encoding.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/pargument.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/const_generic_concatcp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__hidden_utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/wrapper_types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/wrapper_types/pwrapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__ascii_case_conv.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__ascii_case_conv/word_iterator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_replace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_repeat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_splice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_indexing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/pattern.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/const_debug_derive.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libconst_format-f314c68d7f0a66dd.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/assertions.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/constructors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/helper_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/fmt_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/map_ascii_case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/str_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/formatting.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/char_encoding.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/pargument.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/const_generic_concatcp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__hidden_utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/wrapper_types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/wrapper_types/pwrapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__ascii_case_conv.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__ascii_case_conv/word_iterator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_replace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_repeat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_splice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_indexing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/pattern.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/const_debug_derive.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libconst_format-f314c68d7f0a66dd.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/assertions.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/constructors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/helper_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/fmt_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/map_ascii_case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/str_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/formatting.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/char_encoding.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/pargument.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/const_generic_concatcp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__hidden_utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/wrapper_types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/wrapper_types/pwrapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__ascii_case_conv.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__ascii_case_conv/word_iterator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_replace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_repeat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_splice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_indexing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/pattern.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/const_debug_derive.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/assertions.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/constructors.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/helper_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/fmt_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/map_ascii_case.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/macros/str_methods.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/formatting.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/char_encoding.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/pargument.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/const_generic_concatcp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__hidden_utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/wrapper_types.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/wrapper_types/pwrapper.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__ascii_case_conv.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__ascii_case_conv/word_iterator.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_replace.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_repeat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_splice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_indexing.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/str_split.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/__str_methods/pattern.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format-0.2.36/src/const_debug_derive.rs: diff --git a/examples/leptos_axum/target/debug/deps/const_format_proc_macros-0f337214c362af6d.d b/examples/leptos_axum/target/debug/deps/const_format_proc_macros-0f337214c362af6d.d new file mode 100644 index 0000000..9c8bde0 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/const_format_proc_macros-0f337214c362af6d.d @@ -0,0 +1,18 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/const_format_proc_macros-0f337214c362af6d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_args.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_args/parsing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_str.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_str/errors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_str/parsing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_macro.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/formatting.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/parse_utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/respan_to_macro.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/shared_arg_parsing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/utils.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libconst_format_proc_macros-0f337214c362af6d.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_args.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_args/parsing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_str.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_str/errors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_str/parsing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_macro.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/formatting.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/parse_utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/respan_to_macro.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/shared_arg_parsing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/utils.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_args.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_args/parsing.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_str.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_str/errors.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_str/parsing.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/format_macro.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/formatting.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/parse_utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/respan_to_macro.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/shared_arg_parsing.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/spanned.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_format_proc_macros-0.2.34/src/utils.rs: diff --git a/examples/leptos_axum/target/debug/deps/const_str-52f1d0f8e7a003ce.d b/examples/leptos_axum/target/debug/deps/const_str-52f1d0f8e7a003ce.d new file mode 100644 index 0000000..8814480 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/const_str-52f1d0f8e7a003ce.d @@ -0,0 +1,38 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/const_str-52f1d0f8e7a003ce.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/ascii.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/printable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/str.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/utf16.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/utf8.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/ascii_case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/compare.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/concat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/concat_bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/cstr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/encode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/equal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/find.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/hex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/net.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/repeat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/replace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/str.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/to_byte_array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/to_char_array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/to_str.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/sorted.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/squish.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/is_ascii.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/eq_ignore_ascii_case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/unwrap.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/trim_ascii.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libconst_str-52f1d0f8e7a003ce.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/ascii.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/printable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/str.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/utf16.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/utf8.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/ascii_case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/compare.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/concat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/concat_bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/cstr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/encode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/equal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/find.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/hex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/net.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/repeat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/replace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/str.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/to_byte_array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/to_char_array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/to_str.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/sorted.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/squish.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/is_ascii.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/eq_ignore_ascii_case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/unwrap.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/trim_ascii.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/ascii.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/bytes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/printable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/slice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/str.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/utf16.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/utf8.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/ascii_case.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/chain.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/compare.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/concat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/concat_bytes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/cstr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/encode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/equal.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/find.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/fmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/hex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/net.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/repeat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/replace.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/str.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/to_byte_array.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/to_char_array.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/to_str.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/sorted.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/split.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/squish.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/is_ascii.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/eq_ignore_ascii_case.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/unwrap.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const-str-1.1.0/src/__ctfe/trim_ascii.rs: diff --git a/examples/leptos_axum/target/debug/deps/const_str_slice_concat-82fcb9501360d738.d b/examples/leptos_axum/target/debug/deps/const_str_slice_concat-82fcb9501360d738.d new file mode 100644 index 0000000..4582d3e --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/const_str_slice_concat-82fcb9501360d738.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/const_str_slice_concat-82fcb9501360d738.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_str_slice_concat-0.1.0/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libconst_str_slice_concat-82fcb9501360d738.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_str_slice_concat-0.1.0/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/const_str_slice_concat-0.1.0/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/convert_case-2628ae2be3deb1b5.d b/examples/leptos_axum/target/debug/deps/convert_case-2628ae2be3deb1b5.d new file mode 100644 index 0000000..1845b78 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/convert_case-2628ae2be3deb1b5.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/convert_case-2628ae2be3deb1b5.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/boundary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/converter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/pattern.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libconvert_case-2628ae2be3deb1b5.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/boundary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/converter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/pattern.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libconvert_case-2628ae2be3deb1b5.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/boundary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/converter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/pattern.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/boundary.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/case.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/converter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.11.0/src/pattern.rs: diff --git a/examples/leptos_axum/target/debug/deps/convert_case-7209f6d0f64c0ef2.d b/examples/leptos_axum/target/debug/deps/convert_case-7209f6d0f64c0ef2.d new file mode 100644 index 0000000..3240530 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/convert_case-7209f6d0f64c0ef2.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/convert_case-7209f6d0f64c0ef2.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.6.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.6.0/src/case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.6.0/src/converter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.6.0/src/pattern.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.6.0/src/segmentation.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libconvert_case-7209f6d0f64c0ef2.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.6.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.6.0/src/case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.6.0/src/converter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.6.0/src/pattern.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.6.0/src/segmentation.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.6.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.6.0/src/case.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.6.0/src/converter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.6.0/src/pattern.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case-0.6.0/src/segmentation.rs: diff --git a/examples/leptos_axum/target/debug/deps/convert_case_extras-6f78dc8bb04e6ee9.d b/examples/leptos_axum/target/debug/deps/convert_case_extras-6f78dc8bb04e6ee9.d new file mode 100644 index 0000000..03abf71 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/convert_case_extras-6f78dc8bb04e6ee9.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/convert_case_extras-6f78dc8bb04e6ee9.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case_extras-0.2.0/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libconvert_case_extras-6f78dc8bb04e6ee9.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case_extras-0.2.0/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libconvert_case_extras-6f78dc8bb04e6ee9.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case_extras-0.2.0/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/convert_case_extras-0.2.0/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/cpufeatures-13cf37fdce80f82f.d b/examples/leptos_axum/target/debug/deps/cpufeatures-13cf37fdce80f82f.d new file mode 100644 index 0000000..33ace26 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/cpufeatures-13cf37fdce80f82f.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/cpufeatures-13cf37fdce80f82f.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/x86.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libcpufeatures-13cf37fdce80f82f.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/x86.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libcpufeatures-13cf37fdce80f82f.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/x86.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cpufeatures-0.2.17/src/x86.rs: diff --git a/examples/leptos_axum/target/debug/deps/crypto_common-c0edffe7f96ddd28.d b/examples/leptos_axum/target/debug/deps/crypto_common-c0edffe7f96ddd28.d new file mode 100644 index 0000000..b2b480c --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/crypto_common-c0edffe7f96ddd28.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/crypto_common-c0edffe7f96ddd28.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libcrypto_common-c0edffe7f96ddd28.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libcrypto_common-c0edffe7f96ddd28.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crypto-common-0.1.7/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/derive_where-8f93f40d0a741f91.d b/examples/leptos_axum/target/debug/deps/derive_where-8f93f40d0a741f91.d new file mode 100644 index 0000000..6957282 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/derive_where-8f93f40d0a741f91.d @@ -0,0 +1,31 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/derive_where-8f93f40d0a741f91.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/crate_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/default.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/field.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/incomparable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/skip.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/variant.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/data/field.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/data/fields.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/clone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/common_ord.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/copy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/default.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/hash.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/ord.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/partial_eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/partial_ord.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/util.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libderive_where-8f93f40d0a741f91.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/crate_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/default.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/field.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/incomparable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/skip.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/variant.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/data/field.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/data/fields.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/clone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/common_ord.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/copy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/default.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/hash.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/ord.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/partial_eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/partial_ord.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/util.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/crate_.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/default.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/field.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/incomparable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/item.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/skip.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/attr/variant.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/data.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/data/field.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/data/fields.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/input.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/item.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/clone.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/common_ord.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/copy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/debug.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/default.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/eq.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/hash.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/ord.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/partial_eq.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/trait_/partial_ord.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/derive-where-1.6.1/src/util.rs: diff --git a/examples/leptos_axum/target/debug/deps/digest-229773c461897454.d b/examples/leptos_axum/target/debug/deps/digest-229773c461897454.d new file mode 100644 index 0000000..b3566ff --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/digest-229773c461897454.d @@ -0,0 +1,13 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/digest-229773c461897454.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/ct_variable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/rt_variable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/wrapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/xof_reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/digest.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libdigest-229773c461897454.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/ct_variable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/rt_variable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/wrapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/xof_reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/digest.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libdigest-229773c461897454.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/ct_variable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/rt_variable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/wrapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/xof_reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/digest.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/ct_variable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/rt_variable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/wrapper.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/core_api/xof_reader.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/digest-0.10.7/src/digest.rs: diff --git a/examples/leptos_axum/target/debug/deps/displaydoc-39890585602376ad.d b/examples/leptos_axum/target/debug/deps/displaydoc-39890585602376ad.d new file mode 100644 index 0000000..3700bd6 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/displaydoc-39890585602376ad.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/displaydoc-39890585602376ad.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/expand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/fmt.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libdisplaydoc-39890585602376ad.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/expand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/fmt.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/expand.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/displaydoc-0.2.7/src/fmt.rs: diff --git a/examples/leptos_axum/target/debug/deps/drain_filter_polyfill-cfdd89c70b92254c.d b/examples/leptos_axum/target/debug/deps/drain_filter_polyfill-cfdd89c70b92254c.d new file mode 100644 index 0000000..0e38b87 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/drain_filter_polyfill-cfdd89c70b92254c.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/drain_filter_polyfill-cfdd89c70b92254c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/drain_filter_polyfill-0.1.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/drain_filter_polyfill-0.1.3/src/copypasted_impl.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libdrain_filter_polyfill-cfdd89c70b92254c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/drain_filter_polyfill-0.1.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/drain_filter_polyfill-0.1.3/src/copypasted_impl.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/drain_filter_polyfill-0.1.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/drain_filter_polyfill-0.1.3/src/copypasted_impl.rs: diff --git a/examples/leptos_axum/target/debug/deps/either-4df26a1332d7081b.d b/examples/leptos_axum/target/debug/deps/either-4df26a1332d7081b.d new file mode 100644 index 0000000..8e7c979 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/either-4df26a1332d7081b.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/either-4df26a1332d7081b.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/iterator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/into_either.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libeither-4df26a1332d7081b.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/iterator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/into_either.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libeither-4df26a1332d7081b.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/iterator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/into_either.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/iterator.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/into_either.rs: diff --git a/examples/leptos_axum/target/debug/deps/either-9f0a89081c0ca233.d b/examples/leptos_axum/target/debug/deps/either-9f0a89081c0ca233.d new file mode 100644 index 0000000..aaf6c66 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/either-9f0a89081c0ca233.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/either-9f0a89081c0ca233.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/iterator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/into_either.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libeither-9f0a89081c0ca233.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/iterator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/into_either.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/iterator.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.17.0/src/into_either.rs: diff --git a/examples/leptos_axum/target/debug/deps/either_of-bfce8fd63a10cb69.d b/examples/leptos_axum/target/debug/deps/either_of-bfce8fd63a10cb69.d new file mode 100644 index 0000000..a5e50f6 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/either_of-bfce8fd63a10cb69.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/either_of-bfce8fd63a10cb69.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either_of-0.1.9/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libeither_of-bfce8fd63a10cb69.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either_of-0.1.9/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either_of-0.1.9/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/equivalent-0aada0f55b2e54f9.d b/examples/leptos_axum/target/debug/deps/equivalent-0aada0f55b2e54f9.d new file mode 100644 index 0000000..b65789c --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/equivalent-0aada0f55b2e54f9.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/equivalent-0aada0f55b2e54f9.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libequivalent-0aada0f55b2e54f9.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libequivalent-0aada0f55b2e54f9.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/equivalent-c8922812beabd051.d b/examples/leptos_axum/target/debug/deps/equivalent-c8922812beabd051.d new file mode 100644 index 0000000..2015e61 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/equivalent-c8922812beabd051.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/equivalent-c8922812beabd051.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libequivalent-c8922812beabd051.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/erased-68f74a5e08c5e561.d b/examples/leptos_axum/target/debug/deps/erased-68f74a5e08c5e561.d new file mode 100644 index 0000000..5c0d318 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/erased-68f74a5e08c5e561.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/erased-68f74a5e08c5e561.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-0.1.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-0.1.2/src/erased_box.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-0.1.2/src/erased_mut_ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-0.1.2/src/erased_ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-0.1.2/src/../README.md + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/liberased-68f74a5e08c5e561.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-0.1.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-0.1.2/src/erased_box.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-0.1.2/src/erased_mut_ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-0.1.2/src/erased_ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-0.1.2/src/../README.md + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-0.1.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-0.1.2/src/erased_box.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-0.1.2/src/erased_mut_ref.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-0.1.2/src/erased_ref.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/erased-0.1.2/src/../README.md: diff --git a/examples/leptos_axum/target/debug/deps/event_listener-1f42df9c57044c2d.d b/examples/leptos_axum/target/debug/deps/event_listener-1f42df9c57044c2d.d new file mode 100644 index 0000000..502cb46 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/event_listener-1f42df9c57044c2d.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/event_listener-1f42df9c57044c2d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-5.4.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-5.4.2/src/intrusive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-5.4.2/src/notify.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libevent_listener-1f42df9c57044c2d.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-5.4.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-5.4.2/src/intrusive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-5.4.2/src/notify.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-5.4.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-5.4.2/src/intrusive.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-5.4.2/src/notify.rs: diff --git a/examples/leptos_axum/target/debug/deps/event_listener_strategy-d390ec938f25d728.d b/examples/leptos_axum/target/debug/deps/event_listener_strategy-d390ec938f25d728.d new file mode 100644 index 0000000..3ddb763 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/event_listener_strategy-d390ec938f25d728.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/event_listener_strategy-d390ec938f25d728.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-strategy-0.5.4/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libevent_listener_strategy-d390ec938f25d728.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-strategy-0.5.4/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/event-listener-strategy-0.5.4/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/form_urlencoded-53df02ed96661281.d b/examples/leptos_axum/target/debug/deps/form_urlencoded-53df02ed96661281.d new file mode 100644 index 0000000..ab15990 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/form_urlencoded-53df02ed96661281.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/form_urlencoded-53df02ed96661281.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.2/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libform_urlencoded-53df02ed96661281.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.2/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/form_urlencoded-1.2.2/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/futures-32f26cd5af3706ad.d b/examples/leptos_axum/target/debug/deps/futures-32f26cd5af3706ad.d new file mode 100644 index 0000000..0d734f9 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/futures-32f26cd5af3706ad.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/futures-32f26cd5af3706ad.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.33/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libfutures-32f26cd5af3706ad.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.33/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-0.3.33/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/futures_channel-0ac15f8efb8db236.d b/examples/leptos_axum/target/debug/deps/futures_channel-0ac15f8efb8db236.d new file mode 100644 index 0000000..c591a86 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/futures_channel-0ac15f8efb8db236.d @@ -0,0 +1,10 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/futures_channel-0ac15f8efb8db236.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/lock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/mpsc/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/mpsc/queue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/mpsc/sink_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/oneshot.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libfutures_channel-0ac15f8efb8db236.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/lock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/mpsc/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/mpsc/queue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/mpsc/sink_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/oneshot.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/lock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/mpsc/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/mpsc/queue.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/mpsc/sink_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-channel-0.3.33/src/oneshot.rs: diff --git a/examples/leptos_axum/target/debug/deps/futures_core-77c8ed53374c713b.d b/examples/leptos_axum/target/debug/deps/futures_core-77c8ed53374c713b.d new file mode 100644 index 0000000..39624c8 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/futures_core-77c8ed53374c713b.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/futures_core-77c8ed53374c713b.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/poll.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/__internal/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/__internal/atomic_waker.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libfutures_core-77c8ed53374c713b.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/poll.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/__internal/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/__internal/atomic_waker.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/future.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/stream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/poll.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/__internal/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-core-0.3.33/src/task/__internal/atomic_waker.rs: diff --git a/examples/leptos_axum/target/debug/deps/futures_executor-1dc509e8279fc434.d b/examples/leptos_axum/target/debug/deps/futures_executor-1dc509e8279fc434.d new file mode 100644 index 0000000..81de197 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/futures_executor-1dc509e8279fc434.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/futures_executor-1dc509e8279fc434.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.33/src/local_pool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.33/src/thread_pool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.33/src/unpark_mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.33/src/enter.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libfutures_executor-1dc509e8279fc434.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.33/src/local_pool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.33/src/thread_pool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.33/src/unpark_mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.33/src/enter.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.33/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.33/src/local_pool.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.33/src/thread_pool.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.33/src/unpark_mutex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-executor-0.3.33/src/enter.rs: diff --git a/examples/leptos_axum/target/debug/deps/futures_io-39c08f9e9c63bb7d.d b/examples/leptos_axum/target/debug/deps/futures_io-39c08f9e9c63bb7d.d new file mode 100644 index 0000000..0ace623 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/futures_io-39c08f9e9c63bb7d.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/futures_io-39c08f9e9c63bb7d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.33/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libfutures_io-39c08f9e9c63bb7d.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.33/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-io-0.3.33/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/futures_macro-fcd27692e72fee92.d b/examples/leptos_axum/target/debug/deps/futures_macro-fcd27692e72fee92.d new file mode 100644 index 0000000..b7595f5 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/futures_macro-fcd27692e72fee92.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/futures_macro-fcd27692e72fee92.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/executor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/stream_select.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libfutures_macro-fcd27692e72fee92.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/executor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/stream_select.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/executor.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/join.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/select.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-macro-0.3.33/src/stream_select.rs: diff --git a/examples/leptos_axum/target/debug/deps/futures_sink-288f8e7b06f8dcbc.d b/examples/leptos_axum/target/debug/deps/futures_sink-288f8e7b06f8dcbc.d new file mode 100644 index 0000000..1556212 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/futures_sink-288f8e7b06f8dcbc.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/futures_sink-288f8e7b06f8dcbc.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.33/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libfutures_sink-288f8e7b06f8dcbc.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.33/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-sink-0.3.33/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/futures_task-b2cf2b99319e9c19.d b/examples/leptos_axum/target/debug/deps/futures_task-b2cf2b99319e9c19.d new file mode 100644 index 0000000..89b97e5 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/futures_task-b2cf2b99319e9c19.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/futures_task-b2cf2b99319e9c19.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/spawn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/arc_wake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/waker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/waker_ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/future_obj.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/noop_waker.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libfutures_task-b2cf2b99319e9c19.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/spawn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/arc_wake.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/waker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/waker_ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/future_obj.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/noop_waker.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/spawn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/arc_wake.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/waker.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/waker_ref.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/future_obj.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-task-0.3.33/src/noop_waker.rs: diff --git a/examples/leptos_axum/target/debug/deps/futures_util-b9ea746dd82c65c2.d b/examples/leptos_axum/target/debug/deps/futures_util-b9ea746dd82c65c2.d new file mode 100644 index 0000000..0a65bc7 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/futures_util-b9ea746dd82c65c2.d @@ -0,0 +1,181 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/futures_util-b9ea746dd82c65c2.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/poll.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/pending.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/join_mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/select_mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/stream_select_mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/random.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/flatten.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/fuse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/catch_unwind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/remote_handle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/shared.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/into_future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/try_flatten.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/try_flatten_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/lazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/pending.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/maybe_done.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_maybe_done.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/poll_fn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/poll_immediate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/ready.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/always_ready.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/join_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_join_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select_ok.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/abortable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/collect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/unzip.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/concat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/count.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/cycle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/enumerate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/filter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/filter_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/flatten.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/fold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/forward.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/for_each.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/fuse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/into_future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/next.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/select_next_some.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/peek.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/skip.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/skip_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take_until.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/then.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/zip.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/ready_chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/scan.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/buffer_unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/buffered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/flatten_unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/for_each_concurrent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/catch_unwind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/and_then.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/into_stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/or_else.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_next.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_for_each.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_filter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_filter_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_flatten.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_flatten_unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_collect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_concat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_ready_chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_fold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_unfold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_skip_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_buffer_unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_buffered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_for_each_concurrent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/into_async_read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/repeat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/repeat_with.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/empty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/once.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/pending.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/poll_fn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/poll_immediate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select_with_strategy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/unfold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_ordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/abort.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/task.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/ready_to_run_queue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/abortable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/close.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/drain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/fanout.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/feed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/flush.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/err_into.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/map_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/send.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/send_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/unfold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/with.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/with_flat_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/task/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/task/spawn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/never.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/allow_std.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/buf_reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/buf_writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/line_writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/close.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/copy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/copy_buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/copy_buf_abortable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/cursor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/empty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/fill_buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/flush.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/into_sink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/lines.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_vectored.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_exact.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_line.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_to_end.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_to_string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_until.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/repeat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/seek.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/sink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/take.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/window.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/write_vectored.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/write_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/bilock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/abortable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/fns.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/unfold_state.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libfutures_util-b9ea746dd82c65c2.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/poll.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/pending.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/join_mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/select_mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/stream_select_mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/random.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/flatten.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/fuse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/catch_unwind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/remote_handle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/shared.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/into_future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/try_flatten.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/try_flatten_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/lazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/pending.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/maybe_done.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_maybe_done.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/poll_fn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/poll_immediate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/ready.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/always_ready.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/join_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_join_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select_ok.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/abortable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/collect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/unzip.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/concat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/count.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/cycle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/enumerate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/filter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/filter_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/flatten.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/fold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/forward.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/for_each.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/fuse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/into_future.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/next.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/select_next_some.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/peek.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/skip.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/skip_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take_until.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/then.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/zip.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/ready_chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/scan.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/buffer_unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/buffered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/flatten_unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/for_each_concurrent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/catch_unwind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/and_then.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/into_stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/or_else.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_next.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_for_each.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_filter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_filter_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_flatten.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_flatten_unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_collect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_concat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_ready_chunks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_fold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_unfold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_skip_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_buffer_unordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_buffered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_for_each_concurrent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/into_async_read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/repeat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/repeat_with.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/empty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/once.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/pending.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/poll_fn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/poll_immediate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select_with_strategy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/unfold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_ordered.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/abort.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/task.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/ready_to_run_queue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/abortable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/close.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/drain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/fanout.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/feed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/flush.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/err_into.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/map_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/send.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/send_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/unfold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/with.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/with_flat_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/task/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/task/spawn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/never.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/allow_std.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/buf_reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/buf_writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/line_writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/chain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/close.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/copy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/copy_buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/copy_buf_abortable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/cursor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/empty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/fill_buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/flush.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/into_sink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/lines.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_vectored.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_exact.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_line.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_to_end.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_to_string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_until.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/repeat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/seek.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/sink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/split.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/take.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/window.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/write_vectored.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/write_all.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/bilock.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/abortable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/fns.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/unfold_state.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/poll.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/pending.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/join_mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/select_mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/stream_select_mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/async_await/random.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/flatten.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/fuse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/catch_unwind.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/remote_handle.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/future/shared.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/into_future.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/try_flatten.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_future/try_flatten_err.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/lazy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/pending.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/maybe_done.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_maybe_done.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/option.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/poll_fn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/poll_immediate.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/ready.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/always_ready.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/join.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/join_all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select_all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_join.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_join_all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/try_select.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/select_ok.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/either.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/future/abortable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/chain.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/collect.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/unzip.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/concat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/count.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/cycle.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/enumerate.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/filter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/filter_map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/flatten.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/fold.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/any.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/forward.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/for_each.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/fuse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/into_future.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/next.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/select_next_some.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/peek.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/skip.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/skip_while.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take_while.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/take_until.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/then.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/zip.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/chunks.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/ready_chunks.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/scan.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/buffer_unordered.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/buffered.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/flatten_unordered.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/for_each_concurrent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/split.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/stream/catch_unwind.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/and_then.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/into_stream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/or_else.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_next.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_for_each.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_filter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_filter_map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_flatten.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_flatten_unordered.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_collect.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_concat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_chunks.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_ready_chunks.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_fold.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_unfold.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_skip_while.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_take_while.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_buffer_unordered.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_buffered.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_for_each_concurrent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/into_async_read.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/try_stream/try_any.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/repeat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/repeat_with.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/empty.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/once.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/pending.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/poll_fn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/poll_immediate.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select_with_strategy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/unfold.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_ordered.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/abort.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/task.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/futures_unordered/ready_to_run_queue.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/select_all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/stream/abortable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/close.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/drain.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/fanout.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/feed.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/flush.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/err_into.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/map_err.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/send.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/send_all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/unfold.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/with.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/with_flat_map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/sink/buffer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/task/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/task/spawn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/never.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/allow_std.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/buf_reader.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/buf_writer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/line_writer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/chain.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/close.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/copy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/copy_buf.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/copy_buf_abortable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/cursor.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/empty.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/fill_buf.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/flush.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/into_sink.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/lines.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_vectored.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_exact.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_line.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_to_end.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_to_string.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/read_until.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/repeat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/seek.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/sink.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/split.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/take.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/window.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/write.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/write_vectored.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/io/write_all.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/bilock.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/lock/mutex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/abortable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/fns.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/futures-util-0.3.33/src/unfold_state.rs: diff --git a/examples/leptos_axum/target/debug/deps/generic_array-5902fc5acf9fb48e.d b/examples/leptos_axum/target/debug/deps/generic_array-5902fc5acf9fb48e.d new file mode 100644 index 0000000..70e1c97 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/generic_array-5902fc5acf9fb48e.d @@ -0,0 +1,13 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/generic_array-5902fc5acf9fb48e.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/hex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/arr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/functional.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/sequence.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libgeneric_array-5902fc5acf9fb48e.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/hex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/arr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/functional.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/sequence.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libgeneric_array-5902fc5acf9fb48e.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/hex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/arr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/functional.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/sequence.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/hex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/arr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/functional.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/generic-array-0.14.7/src/sequence.rs: diff --git a/examples/leptos_axum/target/debug/deps/getrandom-eade8d24da07ca42.d b/examples/leptos_axum/target/debug/deps/getrandom-eade8d24da07ca42.d new file mode 100644 index 0000000..80bdbec --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/getrandom-eade8d24da07ca42.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/getrandom-eade8d24da07ca42.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/../README.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/use_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/sys_fill_exact.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/get_errno.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/sanitizer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/linux_android_with_fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/lazy_ptr.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libgetrandom-eade8d24da07ca42.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/../README.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/use_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/sys_fill_exact.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/get_errno.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/sanitizer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/linux_android_with_fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/lazy_ptr.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libgetrandom-eade8d24da07ca42.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/../README.md /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/use_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/sys_fill_exact.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/get_errno.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/sanitizer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/linux_android_with_fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/lazy_ptr.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/../README.md: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/use_file.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/sys_fill_exact.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/get_errno.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/sanitizer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/linux_android_with_fallback.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/getrandom-0.4.3/src/backends/../utils/lazy_ptr.rs: diff --git a/examples/leptos_axum/target/debug/deps/gloo_net-c2ae71330efea551.d b/examples/leptos_axum/target/debug/deps/gloo_net-c2ae71330efea551.d new file mode 100644 index 0000000..e742e87 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/gloo_net-c2ae71330efea551.d @@ -0,0 +1,16 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/gloo_net-c2ae71330efea551.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/eventsource/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/eventsource/futures.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/http/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/http/headers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/http/query.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/http/request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/http/response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/websocket/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/websocket/events.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/websocket/futures.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libgloo_net-c2ae71330efea551.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/eventsource/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/eventsource/futures.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/http/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/http/headers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/http/query.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/http/request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/http/response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/websocket/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/websocket/events.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/websocket/futures.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/eventsource/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/eventsource/futures.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/http/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/http/headers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/http/query.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/http/request.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/http/response.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/websocket/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/websocket/events.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-net-0.6.0/src/websocket/futures.rs: diff --git a/examples/leptos_axum/target/debug/deps/gloo_utils-d06d67fc27b6bc59.d b/examples/leptos_axum/target/debug/deps/gloo_utils-d06d67fc27b6bc59.d new file mode 100644 index 0000000..c02394c --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/gloo_utils-d06d67fc27b6bc59.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/gloo_utils-d06d67fc27b6bc59.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/src/errors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/src/format/json.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libgloo_utils-d06d67fc27b6bc59.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/src/errors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/src/format/json.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/src/errors.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gloo-utils-0.2.0/src/format/json.rs: diff --git a/examples/leptos_axum/target/debug/deps/guardian-6410e32068359079.d b/examples/leptos_axum/target/debug/deps/guardian-6410e32068359079.d new file mode 100644 index 0000000..834d86f --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/guardian-6410e32068359079.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/guardian-6410e32068359079.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/guardian-1.3.0/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libguardian-6410e32068359079.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/guardian-1.3.0/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/guardian-1.3.0/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/hashbrown-5cfb98346d9bdeab.d b/examples/leptos_axum/target/debug/deps/hashbrown-5cfb98346d9bdeab.d new file mode 100644 index 0000000..665e4cf --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/hashbrown-5cfb98346d9bdeab.d @@ -0,0 +1,20 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/hashbrown-5cfb98346d9bdeab.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/alloc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/bitmask.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/tag.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/hasher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/external_trait_impls/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/scopeguard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/table.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/sse2.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libhashbrown-5cfb98346d9bdeab.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/alloc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/bitmask.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/tag.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/hasher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/external_trait_impls/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/scopeguard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/table.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/sse2.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/alloc.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/bitmask.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/tag.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/hasher.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/raw.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/external_trait_impls/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/scopeguard.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/table.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/sse2.rs: diff --git a/examples/leptos_axum/target/debug/deps/hashbrown-ae4809890b874568.d b/examples/leptos_axum/target/debug/deps/hashbrown-ae4809890b874568.d new file mode 100644 index 0000000..ada68b2 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/hashbrown-ae4809890b874568.d @@ -0,0 +1,22 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/hashbrown-ae4809890b874568.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/alloc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/bitmask.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/tag.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/hasher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/external_trait_impls/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/scopeguard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/table.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/sse2.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libhashbrown-ae4809890b874568.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/alloc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/bitmask.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/tag.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/hasher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/external_trait_impls/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/scopeguard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/table.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/sse2.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libhashbrown-ae4809890b874568.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/alloc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/bitmask.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/tag.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/hasher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/external_trait_impls/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/scopeguard.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/table.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/sse2.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/alloc.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/bitmask.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/tag.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/hasher.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/raw.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/external_trait_impls/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/scopeguard.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/table.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.17.1/src/control/group/sse2.rs: diff --git a/examples/leptos_axum/target/debug/deps/html_escape-04c58a8291d167e9.d b/examples/leptos_axum/target/debug/deps/html_escape-04c58a8291d167e9.d new file mode 100644 index 0000000..f781bb1 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/html_escape-04c58a8291d167e9.d @@ -0,0 +1,22 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/html_escape-04c58a8291d167e9.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/decode_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/html_entity/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/html_entity/tables.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/encode_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/html_entity/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/html_entity/unquoted_attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/functions.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libhtml_escape-04c58a8291d167e9.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/decode_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/html_entity/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/html_entity/tables.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/encode_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/html_entity/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/html_entity/unquoted_attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/functions.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libhtml_escape-04c58a8291d167e9.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/decode_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/html_entity/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/html_entity/tables.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/encode_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/html_entity/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/html_entity/unquoted_attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/functions.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/decode_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/script.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/style.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/html_entity/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/html_entity/tables.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/encode_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/script.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/style.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/html_entity/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/html_entity/unquoted_attribute.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/functions.rs: diff --git a/examples/leptos_axum/target/debug/deps/html_escape-9ce23e06efb873ad.d b/examples/leptos_axum/target/debug/deps/html_escape-9ce23e06efb873ad.d new file mode 100644 index 0000000..ce8aff2 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/html_escape-9ce23e06efb873ad.d @@ -0,0 +1,20 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/html_escape-9ce23e06efb873ad.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/decode_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/html_entity/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/html_entity/tables.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/encode_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/html_entity/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/html_entity/unquoted_attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/functions.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libhtml_escape-9ce23e06efb873ad.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/decode_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/html_entity/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/html_entity/tables.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/encode_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/html_entity/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/html_entity/unquoted_attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/functions.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/decode_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/script.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/element/style.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/html_entity/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/decode/html_entity/tables.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/encode_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/script.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/element/style.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/html_entity/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/encode/html_entity/unquoted_attribute.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/html-escape-0.2.15/src/functions.rs: diff --git a/examples/leptos_axum/target/debug/deps/http-70f1741eb8ff2b4a.d b/examples/leptos_axum/target/debug/deps/http-70f1741eb8ff2b4a.d new file mode 100644 index 0000000..9340222 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/http-70f1741eb8ff2b4a.d @@ -0,0 +1,24 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/http-70f1741eb8ff2b4a.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/convert.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/method.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/status.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/authority.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/port.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/scheme.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/version.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/byte_str.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/extensions.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libhttp-70f1741eb8ff2b4a.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/convert.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/method.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/status.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/authority.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/port.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/scheme.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/version.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/byte_str.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/extensions.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/convert.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/name.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/header/value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/method.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/request.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/response.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/status.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/authority.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/builder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/path.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/port.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/uri/scheme.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/version.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/byte_str.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/http-1.5.0/src/extensions.rs: diff --git a/examples/leptos_axum/target/debug/deps/hydration_context-4357cb4e6b7a3ce3.d b/examples/leptos_axum/target/debug/deps/hydration_context-4357cb4e6b7a3ce3.d new file mode 100644 index 0000000..40c6fa5 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/hydration_context-4357cb4e6b7a3ce3.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/hydration_context-4357cb4e6b7a3ce3.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hydration_context-0.3.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hydration_context-0.3.1/src/ssr.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libhydration_context-4357cb4e6b7a3ce3.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hydration_context-0.3.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hydration_context-0.3.1/src/ssr.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hydration_context-0.3.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hydration_context-0.3.1/src/ssr.rs: diff --git a/examples/leptos_axum/target/debug/deps/icu_collections-be359238685b9d13.d b/examples/leptos_axum/target/debug/deps/icu_collections-be359238685b9d13.d new file mode 100644 index 0000000..a31c990 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/icu_collections-be359238685b9d13.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/icu_collections-be359238685b9d13.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/cpinvlist.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvliststringlist/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/cptrie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/impl_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/planes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/iterator_utils.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libicu_collections-be359238685b9d13.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/cpinvlist.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvliststringlist/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/cptrie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/impl_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/planes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/iterator_utils.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/char16trie/trie.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/cpinvlist.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvlist/utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointinvliststringlist/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/cptrie.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/impl_const.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/codepointtrie/planes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_collections-2.2.0/src/iterator_utils.rs: diff --git a/examples/leptos_axum/target/debug/deps/icu_locale_core-65f9d7248f190242.d b/examples/leptos_axum/target/debug/deps/icu_locale_core-65f9d7248f190242.d new file mode 100644 index 0000000..7291d45 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/icu_locale_core-65f9d7248f190242.d @@ -0,0 +1,64 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/icu_locale_core-65f9d7248f190242.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/helpers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/langid.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/locale.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/errors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/langid.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/locale.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/litemap.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/other/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/other.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/fields.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attributes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/keywords.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/subdivision.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/language.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/region.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variant.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variants.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/errors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/calendar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/collation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency_format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/emoji.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/first_day.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/hour_cycle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break_word.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_system.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_unit_override.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/numbering_system.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/region_override.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/regional_subdivision.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/sentence_supression.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/timezone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/variant.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/enum_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/struct_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/locale.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/zerovec.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libicu_locale_core-65f9d7248f190242.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/helpers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/langid.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/locale.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/errors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/langid.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/locale.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/litemap.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/other/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/other.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/fields.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attributes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/keywords.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/subdivision.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/language.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/region.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variant.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variants.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/errors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/calendar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/collation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency_format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/emoji.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/first_day.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/hour_cycle.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break_word.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_system.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_unit_override.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/numbering_system.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/region_override.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/regional_subdivision.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/sentence_supression.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/timezone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/variant.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/enum_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/struct_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/locale.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/zerovec.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/helpers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/data.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/langid.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/locale.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/errors.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/langid.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/parser/locale.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/shortvec/litemap.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/other/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/private/other.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/fields.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/key.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/transform/value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attribute.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/attributes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/key.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/keywords.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/subdivision.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/extensions/unicode/value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/language.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/region.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/script.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variant.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/subtags/variants.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/errors.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/calendar.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/collation.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/currency_format.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/emoji.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/first_day.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/hour_cycle.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/line_break_word.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_system.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/measurement_unit_override.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/numbering_system.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/region_override.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/regional_subdivision.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/sentence_supression.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/timezone.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/keywords/variant.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/enum_keyword.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/extensions/unicode/macros/struct_keyword.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/preferences/locale.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_locale_core-2.2.0/src/zerovec.rs: diff --git a/examples/leptos_axum/target/debug/deps/icu_normalizer-83b9c8bf32345378.d b/examples/leptos_axum/target/debug/deps/icu_normalizer-83b9c8bf32345378.d new file mode 100644 index 0000000..159b279 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/icu_normalizer-83b9c8bf32345378.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/icu_normalizer-83b9c8bf32345378.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/properties.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/provider.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/uts46.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libicu_normalizer-83b9c8bf32345378.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/properties.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/provider.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/uts46.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/properties.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/provider.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer-2.2.0/src/uts46.rs: diff --git a/examples/leptos_axum/target/debug/deps/icu_normalizer_data-d587184efb5e1f57.d b/examples/leptos_axum/target/debug/deps/icu_normalizer_data-d587184efb5e1f57.d new file mode 100644 index 0000000..d3a6923 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/icu_normalizer_data-d587184efb5e1f57.d @@ -0,0 +1,13 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/icu_normalizer_data-d587184efb5e1f57.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_tables_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_supplement_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_data_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_tables_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfc_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_data_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_uts46_data_v1.rs.data + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libicu_normalizer_data-d587184efb5e1f57.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_tables_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_supplement_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_data_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_tables_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfc_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_data_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_uts46_data_v1.rs.data + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_tables_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_supplement_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_data_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfkd_tables_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfc_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_nfd_data_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_normalizer_data-2.2.0/src/../data/normalizer_uts46_data_v1.rs.data: diff --git a/examples/leptos_axum/target/debug/deps/icu_properties-5f570ef8bda7b6fe.d b/examples/leptos_axum/target/debug/deps/icu_properties-5f570ef8bda7b6fe.d new file mode 100644 index 0000000..e96390e --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/icu_properties-5f570ef8bda7b6fe.d @@ -0,0 +1,16 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/icu_properties-5f570ef8bda7b6fe.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/emoji.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/names.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/props.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider/names.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/bidi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/trievalue.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libicu_properties-5f570ef8bda7b6fe.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/emoji.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/names.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/props.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider/names.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/bidi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/trievalue.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/code_point_map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/emoji.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/names.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/runtime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/props.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/provider/names.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/script.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/bidi.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties-2.2.0/src/trievalue.rs: diff --git a/examples/leptos_axum/target/debug/deps/icu_properties_data-1d3a2241b6008d88.d b/examples/leptos_axum/target/debug/deps/icu_properties_data-1d3a2241b6008d88.d new file mode 100644 index 0000000..23bee5e --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/icu_properties_data-1d3a2241b6008d88.d @@ -0,0 +1,143 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/icu_properties_data-1d3a2241b6008d88.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_syllabic_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_syntax_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_lowercased_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_trinary_operator_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_regional_indicator_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_uppercased_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casemapped_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_script_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_syllabic_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_binary_operator_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_radical_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extender_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_syllabic_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_component_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_continue_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_dash_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_general_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_grapheme_cluster_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_presentation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_sensitive_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_bidi_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfd_inert_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_graph_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_control_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_hangul_syllable_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_word_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_line_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_white_space_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_unified_ideograph_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_noncharacter_code_point_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_grapheme_cluster_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_syllabic_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_east_asian_width_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_script_with_extensions_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_hangul_syllable_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_line_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_bidi_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_mirrored_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_link_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_script_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_east_asian_width_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_sentence_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alnum_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_general_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_vertical_orientation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casefolded_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_hangul_syllable_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_sentence_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_quotation_mark_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_deprecated_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_start_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_segment_starter_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_numeric_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hyphen_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_variation_selector_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_word_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_east_asian_width_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_sentence_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_modifier_combining_mark_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_group_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_conjunct_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_bidi_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_prepended_concatenation_mark_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_print_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_canonical_combining_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_terminal_punctuation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_vertical_orientation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_cased_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_numeric_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkc_inert_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_continue_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_basic_emoji_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_start_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_uppercase_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_script_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_numeric_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_hangul_syllable_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xdigit_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_full_composition_exclusion_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_vertical_orientation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_nfkc_casefolded_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hex_digit_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_continue_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_soft_dotted_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ideographic_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_canonical_combining_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_word_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_titlecased_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_sentence_terminal_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_conjunct_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_general_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ascii_hex_digit_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_line_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_east_asian_width_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_grapheme_cluster_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_conjunct_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_logical_order_exception_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_ignorable_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_diacritic_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_group_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_extend_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_mirroring_glyph_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_mask_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfc_inert_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_group_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_numeric_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_group_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_conjunct_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_script_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_lowercase_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_base_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_sentence_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_base_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_canonical_combining_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_join_control_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_line_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_unary_operator_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_word_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_math_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_white_space_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkd_inert_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_start_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alphabetic_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_grapheme_cluster_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_blank_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_default_ignorable_code_point_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extended_pictographic_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_vertical_orientation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_canonical_combining_class_v1.rs.data + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libicu_properties_data-1d3a2241b6008d88.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_syllabic_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_syntax_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_lowercased_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_trinary_operator_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_regional_indicator_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_uppercased_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casemapped_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_script_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_syllabic_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_binary_operator_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_radical_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extender_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_syllabic_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_component_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_continue_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_dash_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_general_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_grapheme_cluster_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_presentation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_sensitive_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_bidi_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfd_inert_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_graph_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_control_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_hangul_syllable_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_word_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_line_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_white_space_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_unified_ideograph_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_noncharacter_code_point_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_grapheme_cluster_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_syllabic_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_east_asian_width_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_script_with_extensions_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_hangul_syllable_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_line_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_bidi_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_mirrored_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_link_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_script_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_east_asian_width_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_sentence_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alnum_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_general_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_vertical_orientation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casefolded_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_hangul_syllable_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_sentence_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_quotation_mark_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_deprecated_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_start_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_segment_starter_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_numeric_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hyphen_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_variation_selector_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_word_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_east_asian_width_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_sentence_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_modifier_combining_mark_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_group_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_conjunct_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_bidi_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_prepended_concatenation_mark_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_print_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_canonical_combining_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_terminal_punctuation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_vertical_orientation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_cased_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_numeric_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkc_inert_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_continue_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_basic_emoji_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_start_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_uppercase_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_script_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_numeric_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_hangul_syllable_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xdigit_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_full_composition_exclusion_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_vertical_orientation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_nfkc_casefolded_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hex_digit_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_continue_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_soft_dotted_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ideographic_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_canonical_combining_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_word_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_titlecased_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_sentence_terminal_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_conjunct_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_general_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ascii_hex_digit_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_line_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_east_asian_width_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_grapheme_cluster_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_conjunct_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_logical_order_exception_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_ignorable_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_diacritic_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_group_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_extend_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_mirroring_glyph_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_mask_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfc_inert_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_group_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_numeric_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_group_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_conjunct_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_script_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_lowercase_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_base_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_sentence_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_base_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_canonical_combining_class_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_join_control_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_type_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_line_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_unary_operator_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_word_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_math_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_white_space_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkd_inert_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_start_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alphabetic_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_grapheme_cluster_break_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_blank_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_default_ignorable_code_point_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extended_pictographic_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_vertical_orientation_v1.rs.data /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_canonical_combining_class_v1.rs.data + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_syllabic_category_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_syntax_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_lowercased_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_trinary_operator_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_regional_indicator_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_uppercased_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casemapped_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_script_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_syllabic_category_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_binary_operator_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_radical_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extender_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_syllabic_category_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_component_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_continue_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_dash_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_general_category_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_grapheme_cluster_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_presentation_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_sensitive_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_bidi_class_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfd_inert_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_graph_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_control_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_hangul_syllable_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_word_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_line_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_white_space_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_unified_ideograph_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_noncharacter_code_point_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_grapheme_cluster_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_syllabic_category_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_east_asian_width_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_script_with_extensions_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_hangul_syllable_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_line_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_bidi_class_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_bidi_mirrored_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_link_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_script_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_east_asian_width_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_sentence_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alnum_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_general_category_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_vertical_orientation_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_casefolded_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_hangul_syllable_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_sentence_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_quotation_mark_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_deprecated_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_start_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_segment_starter_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_numeric_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hyphen_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_variation_selector_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_word_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_east_asian_width_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_sentence_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_modifier_combining_mark_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_group_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_indic_conjunct_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_bidi_class_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_prepended_concatenation_mark_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_joining_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_print_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_canonical_combining_class_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_terminal_punctuation_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_vertical_orientation_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_cased_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_numeric_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkc_inert_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_continue_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_basic_emoji_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_start_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_uppercase_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_script_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_numeric_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_hangul_syllable_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xdigit_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_full_composition_exclusion_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_vertical_orientation_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_nfkc_casefolded_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_hex_digit_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_xid_continue_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_soft_dotted_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ideographic_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_canonical_combining_class_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_word_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_changes_when_titlecased_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_class_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_sentence_terminal_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_indic_conjunct_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_general_category_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ascii_hex_digit_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_line_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_east_asian_width_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_grapheme_cluster_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_indic_conjunct_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_logical_order_exception_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_case_ignorable_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_diacritic_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_group_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_extend_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_bidi_mirroring_glyph_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_general_category_mask_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfc_inert_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_joining_group_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_numeric_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_group_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_indic_conjunct_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_script_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_lowercase_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_joining_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_base_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_sentence_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_grapheme_base_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_long_canonical_combining_class_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_emoji_modifier_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_join_control_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_joining_type_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_short_line_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_ids_unary_operator_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_word_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_math_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_pattern_white_space_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_nfkd_inert_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_id_compat_math_start_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_alphabetic_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_enum_grapheme_cluster_break_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_blank_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_default_ignorable_code_point_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_binary_extended_pictographic_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_vertical_orientation_v1.rs.data: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_properties_data-2.2.0/src/../data/property_name_parse_canonical_combining_class_v1.rs.data: diff --git a/examples/leptos_axum/target/debug/deps/icu_provider-197f4ab962bcf7b8.d b/examples/leptos_axum/target/debug/deps/icu_provider-197f4ab962bcf7b8.d new file mode 100644 index 0000000..8c5ed23 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/icu_provider-197f4ab962bcf7b8.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/icu_provider-197f4ab962bcf7b8.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked/zerotrie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/constructors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/dynutil.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/data_provider.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/marker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/varule_traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/fallback.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libicu_provider-197f4ab962bcf7b8.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked/zerotrie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/buf.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/constructors.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/dynutil.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/data_provider.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/marker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/varule_traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/fallback.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/baked/zerotrie.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/buf.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/constructors.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/dynutil.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/data_provider.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/request.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/response.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/marker.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/varule_traits.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/icu_provider-2.2.0/src/fallback.rs: diff --git a/examples/leptos_axum/target/debug/deps/idna-568ea53c005b8f2c.d b/examples/leptos_axum/target/debug/deps/idna-568ea53c005b8f2c.d new file mode 100644 index 0000000..f755d7e --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/idna-568ea53c005b8f2c.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/idna-568ea53c005b8f2c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/deprecated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/punycode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/uts46.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libidna-568ea53c005b8f2c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/deprecated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/punycode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/uts46.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/deprecated.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/punycode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna-1.1.0/src/uts46.rs: diff --git a/examples/leptos_axum/target/debug/deps/idna_adapter-8ea745f72cf16afb.d b/examples/leptos_axum/target/debug/deps/idna_adapter-8ea745f72cf16afb.d new file mode 100644 index 0000000..8eaa0cd --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/idna_adapter-8ea745f72cf16afb.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/idna_adapter-8ea745f72cf16afb.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.2/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libidna_adapter-8ea745f72cf16afb.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.2/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/idna_adapter-1.2.2/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/indexmap-272d48ecb39dfcc8.d b/examples/leptos_axum/target/debug/deps/indexmap-272d48ecb39dfcc8.d new file mode 100644 index 0000000..e376068 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/indexmap-272d48ecb39dfcc8.d @@ -0,0 +1,21 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/indexmap-272d48ecb39dfcc8.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/arbitrary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/extract.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/mutable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/raw_entry_v1.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/mutable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/slice.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libindexmap-272d48ecb39dfcc8.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/arbitrary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/extract.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/mutable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/raw_entry_v1.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/mutable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/slice.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/arbitrary.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/entry.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/extract.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/entry.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/mutable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/slice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/raw_entry_v1.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/mutable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/slice.rs: diff --git a/examples/leptos_axum/target/debug/deps/indexmap-7288faeefca9e398.d b/examples/leptos_axum/target/debug/deps/indexmap-7288faeefca9e398.d new file mode 100644 index 0000000..944595f --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/indexmap-7288faeefca9e398.d @@ -0,0 +1,23 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/indexmap-7288faeefca9e398.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/arbitrary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/extract.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/mutable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/raw_entry_v1.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/mutable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/slice.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libindexmap-7288faeefca9e398.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/arbitrary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/extract.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/mutable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/raw_entry_v1.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/mutable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/slice.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libindexmap-7288faeefca9e398.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/arbitrary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/extract.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/entry.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/mutable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/raw_entry_v1.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/mutable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/slice.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/arbitrary.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/entry.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/inner/extract.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/entry.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/mutable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/slice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/map/raw_entry_v1.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/mutable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.14.0/src/set/slice.rs: diff --git a/examples/leptos_axum/target/debug/deps/interpolator-3f270c6007151882.d b/examples/leptos_axum/target/debug/deps/interpolator-3f270c6007151882.d new file mode 100644 index 0000000..f62569f --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/interpolator-3f270c6007151882.d @@ -0,0 +1,14 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/interpolator-3f270c6007151882.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/fmt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/fmt/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/fmt/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/formattable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/macros.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libinterpolator-3f270c6007151882.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/fmt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/fmt/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/fmt/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/formattable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/macros.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libinterpolator-3f270c6007151882.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/fmt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/fmt/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/fmt/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/formattable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/macros.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/fmt/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/fmt/display.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/fmt/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/formattable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/parser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/interpolator-0.5.0/src/macros.rs: diff --git a/examples/leptos_axum/target/debug/deps/itertools-008f91674e3b4f69.d b/examples/leptos_axum/target/debug/deps/itertools-008f91674e3b4f69.d new file mode 100644 index 0000000..ffd87d3 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/itertools-008f91674e3b4f69.d @@ -0,0 +1,54 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/itertools-008f91674e3b4f69.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/impl_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/coalesce.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/multi_product.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/either_or_both.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/free.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/combinations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/combinations_with_replacement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/concat_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/cons_tuples_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/diff.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/duplicates_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/exactly_one_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/extrema_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/flatten_ok.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/group_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/groupbylazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/grouping_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/intersperse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/iter_index.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/k_smallest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/kmerge_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lazy_buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/merge_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/minmax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/multipeek_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/next_array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/pad_tail.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/peek_nth.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/peeking_take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/permutations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/powerset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/process_results_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/put_back_n_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/rciter_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/repeatn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/sources.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/take_while_inclusive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/tee.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/tuple_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/unique_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/unziptuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/with_position.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/zip_eq_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/zip_longest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/ziptuple.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libitertools-008f91674e3b4f69.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/impl_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/coalesce.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/multi_product.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/either_or_both.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/free.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/combinations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/combinations_with_replacement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/concat_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/cons_tuples_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/diff.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/duplicates_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/exactly_one_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/extrema_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/flatten_ok.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/group_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/groupbylazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/grouping_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/intersperse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/iter_index.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/k_smallest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/kmerge_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lazy_buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/merge_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/minmax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/multipeek_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/next_array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/pad_tail.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/peek_nth.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/peeking_take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/permutations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/powerset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/process_results_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/put_back_n_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/rciter_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/repeatn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/sources.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/take_while_inclusive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/tee.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/tuple_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/unique_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/unziptuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/with_position.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/zip_eq_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/zip_longest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/ziptuple.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/impl_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/coalesce.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/multi_product.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/either_or_both.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/free.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/combinations.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/combinations_with_replacement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/concat_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/cons_tuples_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/diff.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/duplicates_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/exactly_one_err.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/extrema_set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/flatten_ok.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/format.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/group_map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/groupbylazy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/grouping_map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/intersperse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/iter_index.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/k_smallest.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/kmerge_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lazy_buffer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/merge_join.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/minmax.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/multipeek_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/next_array.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/pad_tail.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/peek_nth.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/peeking_take_while.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/permutations.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/powerset.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/process_results_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/put_back_n_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/rciter_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/repeatn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/size_hint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/sources.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/take_while_inclusive.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/tee.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/tuple_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/unique_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/unziptuple.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/with_position.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/zip_eq_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/zip_longest.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/ziptuple.rs: diff --git a/examples/leptos_axum/target/debug/deps/itertools-50c38fa6d921d827.d b/examples/leptos_axum/target/debug/deps/itertools-50c38fa6d921d827.d new file mode 100644 index 0000000..49d895b --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/itertools-50c38fa6d921d827.d @@ -0,0 +1,56 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/itertools-50c38fa6d921d827.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/impl_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/coalesce.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/multi_product.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/either_or_both.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/free.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/combinations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/combinations_with_replacement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/concat_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/cons_tuples_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/diff.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/duplicates_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/exactly_one_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/extrema_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/flatten_ok.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/group_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/groupbylazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/grouping_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/intersperse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/iter_index.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/k_smallest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/kmerge_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lazy_buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/merge_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/minmax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/multipeek_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/next_array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/pad_tail.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/peek_nth.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/peeking_take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/permutations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/powerset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/process_results_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/put_back_n_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/rciter_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/repeatn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/sources.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/take_while_inclusive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/tee.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/tuple_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/unique_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/unziptuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/with_position.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/zip_eq_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/zip_longest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/ziptuple.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libitertools-50c38fa6d921d827.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/impl_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/coalesce.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/multi_product.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/either_or_both.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/free.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/combinations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/combinations_with_replacement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/concat_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/cons_tuples_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/diff.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/duplicates_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/exactly_one_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/extrema_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/flatten_ok.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/group_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/groupbylazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/grouping_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/intersperse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/iter_index.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/k_smallest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/kmerge_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lazy_buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/merge_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/minmax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/multipeek_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/next_array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/pad_tail.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/peek_nth.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/peeking_take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/permutations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/powerset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/process_results_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/put_back_n_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/rciter_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/repeatn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/sources.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/take_while_inclusive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/tee.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/tuple_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/unique_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/unziptuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/with_position.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/zip_eq_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/zip_longest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/ziptuple.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libitertools-50c38fa6d921d827.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/impl_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/coalesce.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/multi_product.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/either_or_both.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/free.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/combinations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/combinations_with_replacement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/concat_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/cons_tuples_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/diff.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/duplicates_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/exactly_one_err.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/extrema_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/flatten_ok.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/group_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/groupbylazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/grouping_map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/intersperse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/iter_index.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/k_smallest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/kmerge_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lazy_buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/merge_join.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/minmax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/multipeek_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/next_array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/pad_tail.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/peek_nth.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/peeking_take_while.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/permutations.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/powerset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/process_results_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/put_back_n_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/rciter_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/repeatn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/sources.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/take_while_inclusive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/tee.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/tuple_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/unique_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/unziptuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/with_position.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/zip_eq_impl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/zip_longest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/ziptuple.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/impl_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/coalesce.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/adaptors/multi_product.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/either_or_both.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/free.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/combinations.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/combinations_with_replacement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/concat_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/cons_tuples_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/diff.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/duplicates_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/exactly_one_err.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/extrema_set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/flatten_ok.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/format.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/group_map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/groupbylazy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/grouping_map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/intersperse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/iter_index.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/k_smallest.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/kmerge_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/lazy_buffer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/merge_join.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/minmax.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/multipeek_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/next_array.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/pad_tail.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/peek_nth.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/peeking_take_while.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/permutations.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/powerset.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/process_results_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/put_back_n_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/rciter_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/repeatn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/size_hint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/sources.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/take_while_inclusive.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/tee.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/tuple_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/unique_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/unziptuple.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/with_position.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/zip_eq_impl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/zip_longest.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.14.0/src/ziptuple.rs: diff --git a/examples/leptos_axum/target/debug/deps/itoa-6ddde9f8d1eacb1c.d b/examples/leptos_axum/target/debug/deps/itoa-6ddde9f8d1eacb1c.d new file mode 100644 index 0000000..87a978d --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/itoa-6ddde9f8d1eacb1c.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/itoa-6ddde9f8d1eacb1c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/u128_ext.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libitoa-6ddde9f8d1eacb1c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/u128_ext.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/u128_ext.rs: diff --git a/examples/leptos_axum/target/debug/deps/js_sys-20ed683147fa37f6.d b/examples/leptos_axum/target/debug/deps/js_sys-20ed683147fa37f6.d new file mode 100644 index 0000000..7ec64eb --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/js_sys-20ed683147fa37f6.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/js_sys-20ed683147fa37f6.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/js-sys-0.3.91/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libjs_sys-20ed683147fa37f6.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/js-sys-0.3.91/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/js-sys-0.3.91/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/konst-36d38e80de94563b.d b/examples/leptos_axum/target/debug/deps/konst-36d38e80de94563b.d new file mode 100644 index 0000000..383ef96 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/konst-36d38e80de94563b.d @@ -0,0 +1,39 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/konst-36d38e80de94563b.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/const_eq_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/const_ord_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/control_flow.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/declare_cmp_fn_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/bytes_fn_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/declare_generic_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/polymorphism_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/impl_cmp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/unwrapping.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/__for_cmp_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/iter/iterator_dsl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/primitive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/result.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/range.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/maybe_uninit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/manually_drop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/nonzero.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/other.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice/slice_const_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice/slice_iter_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string/splitting.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string/split_terminator_items.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/./iter/collect_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/./iter/iter_eval.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libkonst-36d38e80de94563b.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/const_eq_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/const_ord_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/control_flow.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/declare_cmp_fn_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/bytes_fn_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/declare_generic_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/polymorphism_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/impl_cmp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/unwrapping.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/__for_cmp_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/iter/iterator_dsl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/primitive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/result.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/range.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/maybe_uninit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/manually_drop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/nonzero.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/other.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice/slice_const_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice/slice_iter_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string/splitting.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string/split_terminator_items.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/./iter/collect_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/./iter/iter_eval.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libkonst-36d38e80de94563b.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/const_eq_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/const_ord_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/control_flow.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/declare_cmp_fn_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/bytes_fn_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/declare_generic_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/polymorphism_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/impl_cmp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/unwrapping.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/__for_cmp_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/iter/iterator_dsl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/primitive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/result.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/range.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/maybe_uninit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/manually_drop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/nonzero.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/other.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice/slice_const_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice/slice_iter_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string/splitting.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string/split_terminator_items.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/./iter/collect_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/./iter/iter_eval.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/const_eq_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/const_ord_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/control_flow.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/declare_cmp_fn_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/bytes_fn_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/declare_generic_const.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/polymorphism_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/impl_cmp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/unwrapping.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/__for_cmp_impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/array.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/iter/iterator_dsl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/primitive.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/option.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/result.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/range.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/maybe_uninit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/manually_drop.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/nonzero.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/other.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/ptr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice/slice_const_methods.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice/slice_iter_methods.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string/splitting.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string/split_terminator_items.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/./iter/collect_const.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/./iter/iter_eval.rs: diff --git a/examples/leptos_axum/target/debug/deps/konst-53c62a561c35e672.d b/examples/leptos_axum/target/debug/deps/konst-53c62a561c35e672.d new file mode 100644 index 0000000..9005fac --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/konst-53c62a561c35e672.d @@ -0,0 +1,37 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/konst-53c62a561c35e672.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/const_eq_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/const_ord_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/control_flow.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/declare_cmp_fn_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/bytes_fn_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/declare_generic_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/polymorphism_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/impl_cmp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/unwrapping.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/__for_cmp_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/iter/iterator_dsl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/primitive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/result.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/range.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/maybe_uninit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/manually_drop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/nonzero.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/other.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice/slice_const_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice/slice_iter_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string/splitting.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string/split_terminator_items.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/./iter/collect_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/./iter/iter_eval.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libkonst-53c62a561c35e672.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/const_eq_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/const_ord_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/control_flow.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/declare_cmp_fn_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/bytes_fn_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/declare_generic_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/polymorphism_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/impl_cmp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/unwrapping.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/__for_cmp_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/iter/iterator_dsl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/primitive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/result.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/range.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/maybe_uninit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/manually_drop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/nonzero.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/other.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice/slice_const_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice/slice_iter_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string/splitting.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string/split_terminator_items.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/./iter/collect_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/./iter/iter_eval.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/const_eq_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/const_ord_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/control_flow.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/declare_cmp_fn_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/bytes_fn_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/declare_generic_const.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/polymorphism_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/impl_cmp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/macros/unwrapping.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/__for_cmp_impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/array.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/iter/iterator_dsl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/primitive.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/option.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/result.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/range.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/maybe_uninit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/manually_drop.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/nonzero.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/other.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/ptr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice/slice_const_methods.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/slice/slice_iter_methods.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string/splitting.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/string/split_terminator_items.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/./iter/collect_const.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst-0.2.20/src/./iter/iter_eval.rs: diff --git a/examples/leptos_axum/target/debug/deps/konst_macro_rules-1cd1831f9dad901a.d b/examples/leptos_axum/target/debug/deps/konst_macro_rules-1cd1831f9dad901a.d new file mode 100644 index 0000000..91b12f3 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/konst_macro_rules-1cd1831f9dad901a.d @@ -0,0 +1,23 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/konst_macro_rules-1cd1831f9dad901a.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/array_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/internal_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter/range_into_iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter/slice_into_iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter/combinator_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter/iter_eval_macro.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/option_macros_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/result_macros_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/slice_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/type_eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/collect_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/utils_1_56.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libkonst_macro_rules-1cd1831f9dad901a.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/array_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/internal_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter/range_into_iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter/slice_into_iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter/combinator_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter/iter_eval_macro.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/option_macros_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/result_macros_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/slice_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/type_eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/collect_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/utils_1_56.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libkonst_macro_rules-1cd1831f9dad901a.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/array_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/internal_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter/range_into_iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter/slice_into_iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter/combinator_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter/iter_eval_macro.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/option_macros_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/result_macros_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/slice_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/type_eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/collect_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/utils_1_56.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/array_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/internal_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter/range_into_iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter/slice_into_iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter/combinator_methods.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter/iter_eval_macro.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/option_macros_.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/result_macros_.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/slice_.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/string.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/type_eq.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/collect_const.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/utils_1_56.rs: diff --git a/examples/leptos_axum/target/debug/deps/konst_macro_rules-e04dc1e800ae5688.d b/examples/leptos_axum/target/debug/deps/konst_macro_rules-e04dc1e800ae5688.d new file mode 100644 index 0000000..46e527f --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/konst_macro_rules-e04dc1e800ae5688.d @@ -0,0 +1,21 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/konst_macro_rules-e04dc1e800ae5688.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/array_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/internal_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter/range_into_iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter/slice_into_iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter/combinator_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter/iter_eval_macro.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/option_macros_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/result_macros_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/slice_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/type_eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/collect_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/utils_1_56.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libkonst_macro_rules-e04dc1e800ae5688.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/array_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/internal_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter/range_into_iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter/slice_into_iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter/combinator_methods.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter/iter_eval_macro.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/option_macros_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/result_macros_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/slice_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/type_eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/collect_const.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/utils_1_56.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/array_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/internal_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter/range_into_iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/into_iter/slice_into_iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter/combinator_methods.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/iter/iter_eval_macro.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/option_macros_.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/result_macros_.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/slice_.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/string.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/type_eq.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/collect_const.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/konst_macro_rules-0.2.19/src/utils_1_56.rs: diff --git a/examples/leptos_axum/target/debug/deps/leptos-5d198d707864487d.d b/examples/leptos_axum/target/debug/deps/leptos-5d198d707864487d.d new file mode 100644 index 0000000..89d8a52 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/leptos-5d198d707864487d.d @@ -0,0 +1,31 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/leptos-5d198d707864487d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/form.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/children.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/attribute_interceptor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/component.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/error_boundary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/animated_show.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/await_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/for_loop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/show.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/show_let.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/portal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/hydration/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/suspense_component.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/text_prop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/transition.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/into_view.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/provider.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/mount.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/from_form_data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/hydration/reload_script.js /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/hydration/./island_script.js /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/hydration/./hydration_script.js /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/hydration/./islands_routing.js + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libleptos-5d198d707864487d.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/form.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/children.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/attribute_interceptor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/component.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/error_boundary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/animated_show.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/await_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/for_loop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/show.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/show_let.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/portal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/hydration/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/suspense_component.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/text_prop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/transition.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/into_view.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/provider.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/mount.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/from_form_data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/hydration/reload_script.js /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/hydration/./island_script.js /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/hydration/./hydration_script.js /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/hydration/./islands_routing.js + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/form.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/children.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/attribute_interceptor.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/component.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/error_boundary.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/animated_show.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/await_.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/for_loop.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/show.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/show_let.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/portal.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/hydration/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/suspense_component.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/text_prop.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/transition.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/into_view.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/provider.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/mount.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/from_form_data.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/hydration/reload_script.js: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/hydration/./island_script.js: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/hydration/./hydration_script.js: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos-0.8.20/src/hydration/./islands_routing.js: + +# env-dep:LEPTOS_OUTPUT_NAME +# env-dep:LEPTOS_WATCH diff --git a/examples/leptos_axum/target/debug/deps/leptos_axum_chat-73ea73b170728f0c.d b/examples/leptos_axum/target/debug/deps/leptos_axum_chat-73ea73b170728f0c.d new file mode 100644 index 0000000..0a3bbb7 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/leptos_axum_chat-73ea73b170728f0c.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/leptos_axum_chat-73ea73b170728f0c.d: src/lib.rs src/app.rs src/types.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libleptos_axum_chat-73ea73b170728f0c.rmeta: src/lib.rs src/app.rs src/types.rs + +src/lib.rs: +src/app.rs: +src/types.rs: + +# env-dep:CARGO_MANIFEST_DIR=/home/user/antigravity-sdk-rust/examples/leptos_axum diff --git a/examples/leptos_axum/target/debug/deps/leptos_axum_chat-9372dca07d546c6c.d b/examples/leptos_axum/target/debug/deps/leptos_axum_chat-9372dca07d546c6c.d new file mode 100644 index 0000000..d66db0e --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/leptos_axum_chat-9372dca07d546c6c.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/leptos_axum_chat-9372dca07d546c6c.d: src/main.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libleptos_axum_chat-9372dca07d546c6c.rmeta: src/main.rs + +src/main.rs: diff --git a/examples/leptos_axum/target/debug/deps/leptos_axum_chat-b106a71cd6154af5.d b/examples/leptos_axum/target/debug/deps/leptos_axum_chat-b106a71cd6154af5.d new file mode 100644 index 0000000..164ff76 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/leptos_axum_chat-b106a71cd6154af5.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/leptos_axum_chat-b106a71cd6154af5.d: src/lib.rs src/app.rs src/types.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libleptos_axum_chat-b106a71cd6154af5.rmeta: src/lib.rs src/app.rs src/types.rs + +src/lib.rs: +src/app.rs: +src/types.rs: + +# env-dep:CARGO_MANIFEST_DIR=/home/user/antigravity-sdk-rust/examples/leptos_axum diff --git a/examples/leptos_axum/target/debug/deps/leptos_axum_chat-f9fb4f11c0d936a2.d b/examples/leptos_axum/target/debug/deps/leptos_axum_chat-f9fb4f11c0d936a2.d new file mode 100644 index 0000000..c71caa9 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/leptos_axum_chat-f9fb4f11c0d936a2.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/leptos_axum_chat-f9fb4f11c0d936a2.d: src/main.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libleptos_axum_chat-f9fb4f11c0d936a2.rmeta: src/main.rs + +src/main.rs: diff --git a/examples/leptos_axum/target/debug/deps/leptos_config-4ef11b2b988535be.d b/examples/leptos_axum/target/debug/deps/leptos_config-4ef11b2b988535be.d new file mode 100644 index 0000000..9da9568 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/leptos_config-4ef11b2b988535be.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/leptos_config-4ef11b2b988535be.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_config-0.8.10/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_config-0.8.10/src/errors.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libleptos_config-4ef11b2b988535be.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_config-0.8.10/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_config-0.8.10/src/errors.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_config-0.8.10/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_config-0.8.10/src/errors.rs: + +# env-dep:LEPTOS_OUTPUT_NAME diff --git a/examples/leptos_axum/target/debug/deps/leptos_dom-016040fd8e1175b7.d b/examples/leptos_axum/target/debug/deps/leptos_dom-016040fd8e1175b7.d new file mode 100644 index 0000000..9261215 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/leptos_dom-016040fd8e1175b7.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/leptos_dom-016040fd8e1175b7.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_dom-0.8.8/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_dom-0.8.8/src/helpers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_dom-0.8.8/src/macro_helpers/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_dom-0.8.8/src/logging.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libleptos_dom-016040fd8e1175b7.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_dom-0.8.8/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_dom-0.8.8/src/helpers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_dom-0.8.8/src/macro_helpers/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_dom-0.8.8/src/logging.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_dom-0.8.8/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_dom-0.8.8/src/helpers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_dom-0.8.8/src/macro_helpers/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_dom-0.8.8/src/logging.rs: diff --git a/examples/leptos_axum/target/debug/deps/leptos_hot_reload-2bde52d46b1280a7.d b/examples/leptos_axum/target/debug/deps/leptos_hot_reload-2bde52d46b1280a7.d new file mode 100644 index 0000000..a82bcc1 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/leptos_hot_reload-2bde52d46b1280a7.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/leptos_hot_reload-2bde52d46b1280a7.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/diff.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/node.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/parsing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/patch.js + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libleptos_hot_reload-2bde52d46b1280a7.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/diff.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/node.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/parsing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/patch.js + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/diff.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/node.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/parsing.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/patch.js: diff --git a/examples/leptos_axum/target/debug/deps/leptos_hot_reload-c80cb73391fbf586.d b/examples/leptos_axum/target/debug/deps/leptos_hot_reload-c80cb73391fbf586.d new file mode 100644 index 0000000..7c0a732 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/leptos_hot_reload-c80cb73391fbf586.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/leptos_hot_reload-c80cb73391fbf586.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/diff.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/node.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/parsing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/patch.js + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libleptos_hot_reload-c80cb73391fbf586.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/diff.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/node.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/parsing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/patch.js + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libleptos_hot_reload-c80cb73391fbf586.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/diff.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/node.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/parsing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/patch.js + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/diff.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/node.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/parsing.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_hot_reload-0.8.6/src/patch.js: diff --git a/examples/leptos_axum/target/debug/deps/leptos_macro-4cc6e29f4cbfe6d0.d b/examples/leptos_axum/target/debug/deps/leptos_macro-4cc6e29f4cbfe6d0.d new file mode 100644 index 0000000..61f80e6 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/leptos_macro-4cc6e29f4cbfe6d0.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/leptos_macro-4cc6e29f4cbfe6d0.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/params.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/view/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/view/component_builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/view/slot_helper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/view/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/component.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/lazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/memo.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/slot.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libleptos_macro-4cc6e29f4cbfe6d0.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/params.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/view/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/view/component_builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/view/slot_helper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/view/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/component.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/lazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/memo.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/slot.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/params.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/view/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/view/component_builder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/view/slot_helper.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/view/utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/component.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/lazy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/memo.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/slice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_macro-0.8.17/src/slot.rs: + +# env-dep:SERVER_FN_PREFIX diff --git a/examples/leptos_axum/target/debug/deps/leptos_meta-20e8073da55bf818.d b/examples/leptos_axum/target/debug/deps/leptos_meta-20e8073da55bf818.d new file mode 100644 index 0000000..6ffde3f --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/leptos_meta-20e8073da55bf818.d @@ -0,0 +1,13 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/leptos_meta-20e8073da55bf818.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/body.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/html.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/meta_tags.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/stylesheet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/title.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libleptos_meta-20e8073da55bf818.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/body.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/html.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/meta_tags.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/stylesheet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/title.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/body.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/html.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/link.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/meta_tags.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/script.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/style.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/stylesheet.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_meta-0.8.6/src/title.rs: diff --git a/examples/leptos_axum/target/debug/deps/leptos_router-33c7618d09e94916.d b/examples/leptos_axum/target/debug/deps/leptos_router-33c7618d09e94916.d new file mode 100644 index 0000000..6df9e87 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/leptos_router-33c7618d09e94916.d @@ -0,0 +1,34 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/leptos_router-33c7618d09e94916.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/components.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/flat_router.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/form.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/generate_route_list.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/hooks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/location/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/location/history.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/location/server.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/any_choose_view.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/choose_view.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/path_segment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/resolve_path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/horizontal/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/horizontal/param_segments.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/horizontal/static_segment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/horizontal/tuples.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/nested/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/nested/any_nested_match.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/nested/any_nested_route.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/nested/tuples.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/vertical/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/method.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/navigate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/nested_router.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/params.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/ssr_mode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/static_routes.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libleptos_router-33c7618d09e94916.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/components.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/flat_router.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/form.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/generate_route_list.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/hooks.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/location/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/location/history.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/location/server.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/any_choose_view.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/choose_view.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/path_segment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/resolve_path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/horizontal/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/horizontal/param_segments.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/horizontal/static_segment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/horizontal/tuples.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/nested/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/nested/any_nested_match.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/nested/any_nested_route.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/nested/tuples.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/vertical/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/method.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/navigate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/nested_router.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/params.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/ssr_mode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/static_routes.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/components.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/flat_router.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/form.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/generate_route_list.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/hooks.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/link.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/location/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/location/history.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/location/server.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/any_choose_view.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/choose_view.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/path_segment.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/resolve_path.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/horizontal/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/horizontal/param_segments.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/horizontal/static_segment.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/horizontal/tuples.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/nested/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/nested/any_nested_match.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/nested/any_nested_route.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/nested/tuples.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/matching/vertical/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/method.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/navigate.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/nested_router.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/params.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/ssr_mode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router-0.8.15/src/static_routes.rs: diff --git a/examples/leptos_axum/target/debug/deps/leptos_router_macro-638e3e14858e4264.d b/examples/leptos_axum/target/debug/deps/leptos_router_macro-638e3e14858e4264.d new file mode 100644 index 0000000..bc83135 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/leptos_router_macro-638e3e14858e4264.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/leptos_router_macro-638e3e14858e4264.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router_macro-0.8.6/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libleptos_router_macro-638e3e14858e4264.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router_macro-0.8.6/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_router_macro-0.8.6/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/leptos_server-416099c92f75dff8.d b/examples/leptos_axum/target/debug/deps/leptos_server-416099c92f75dff8.d new file mode 100644 index 0000000..38a6d99 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/leptos_server-416099c92f75dff8.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/leptos_server-416099c92f75dff8.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/action.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/local_resource.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/multi_action.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/once_resource.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/resource.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/shared.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libleptos_server-416099c92f75dff8.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/action.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/local_resource.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/multi_action.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/once_resource.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/resource.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/shared.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/action.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/local_resource.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/multi_action.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/once_resource.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/resource.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/leptos_server-0.8.7/src/shared.rs: diff --git a/examples/leptos_axum/target/debug/deps/libaho_corasick-7e7dc3fcb99ca317.rmeta b/examples/leptos_axum/target/debug/deps/libaho_corasick-7e7dc3fcb99ca317.rmeta new file mode 100644 index 0000000..4c3d7c5 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libaho_corasick-7e7dc3fcb99ca317.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libany_spawner-361659875a04860f.rmeta b/examples/leptos_axum/target/debug/deps/libany_spawner-361659875a04860f.rmeta new file mode 100644 index 0000000..726e91f Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libany_spawner-361659875a04860f.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libanyhow-63324738ee307b1e.rlib b/examples/leptos_axum/target/debug/deps/libanyhow-63324738ee307b1e.rlib new file mode 100644 index 0000000..f960203 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libanyhow-63324738ee307b1e.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libanyhow-63324738ee307b1e.rmeta b/examples/leptos_axum/target/debug/deps/libanyhow-63324738ee307b1e.rmeta new file mode 100644 index 0000000..b83fc31 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libanyhow-63324738ee307b1e.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libanyhow-b73a1c715f21f557.rmeta b/examples/leptos_axum/target/debug/deps/libanyhow-b73a1c715f21f557.rmeta new file mode 100644 index 0000000..3c76d95 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libanyhow-b73a1c715f21f557.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libasync_lock-382d81936a3e281a.rmeta b/examples/leptos_axum/target/debug/deps/libasync_lock-382d81936a3e281a.rmeta new file mode 100644 index 0000000..1baab2d Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libasync_lock-382d81936a3e281a.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libasync_once_cell-ec8006818f625de1.rmeta b/examples/leptos_axum/target/debug/deps/libasync_once_cell-ec8006818f625de1.rmeta new file mode 100644 index 0000000..e691aa9 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libasync_once_cell-ec8006818f625de1.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libasync_trait-05006c89df4656d0.so b/examples/leptos_axum/target/debug/deps/libasync_trait-05006c89df4656d0.so new file mode 100755 index 0000000..54b1bb6 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libasync_trait-05006c89df4656d0.so differ diff --git a/examples/leptos_axum/target/debug/deps/libattribute_derive-f62d62e13cdaddf5.rlib b/examples/leptos_axum/target/debug/deps/libattribute_derive-f62d62e13cdaddf5.rlib new file mode 100644 index 0000000..b5ecea4 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libattribute_derive-f62d62e13cdaddf5.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libattribute_derive-f62d62e13cdaddf5.rmeta b/examples/leptos_axum/target/debug/deps/libattribute_derive-f62d62e13cdaddf5.rmeta new file mode 100644 index 0000000..326d7a9 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libattribute_derive-f62d62e13cdaddf5.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libattribute_derive_macro-609872bc0610bf37.so b/examples/leptos_axum/target/debug/deps/libattribute_derive_macro-609872bc0610bf37.so new file mode 100755 index 0000000..9f3152f Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libattribute_derive_macro-609872bc0610bf37.so differ diff --git a/examples/leptos_axum/target/debug/deps/libbase16-2acebe9a84ad400d.rlib b/examples/leptos_axum/target/debug/deps/libbase16-2acebe9a84ad400d.rlib new file mode 100644 index 0000000..407d034 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libbase16-2acebe9a84ad400d.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libbase16-2acebe9a84ad400d.rmeta b/examples/leptos_axum/target/debug/deps/libbase16-2acebe9a84ad400d.rmeta new file mode 100644 index 0000000..69f5955 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libbase16-2acebe9a84ad400d.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libbase64-86c29447d3e7c92b.rmeta b/examples/leptos_axum/target/debug/deps/libbase64-86c29447d3e7c92b.rmeta new file mode 100644 index 0000000..5318fd7 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libbase64-86c29447d3e7c92b.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libbitflags-cff3612a3afc1bc7.rmeta b/examples/leptos_axum/target/debug/deps/libbitflags-cff3612a3afc1bc7.rmeta new file mode 100644 index 0000000..d49d1f0 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libbitflags-cff3612a3afc1bc7.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libblock_buffer-82877868746bd0a3.rlib b/examples/leptos_axum/target/debug/deps/libblock_buffer-82877868746bd0a3.rlib new file mode 100644 index 0000000..0dd4ba9 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libblock_buffer-82877868746bd0a3.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libblock_buffer-82877868746bd0a3.rmeta b/examples/leptos_axum/target/debug/deps/libblock_buffer-82877868746bd0a3.rmeta new file mode 100644 index 0000000..cf023cf Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libblock_buffer-82877868746bd0a3.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libbumpalo-79e9bea688dd5fa8.rlib b/examples/leptos_axum/target/debug/deps/libbumpalo-79e9bea688dd5fa8.rlib new file mode 100644 index 0000000..2c135d4 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libbumpalo-79e9bea688dd5fa8.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libbumpalo-79e9bea688dd5fa8.rmeta b/examples/leptos_axum/target/debug/deps/libbumpalo-79e9bea688dd5fa8.rmeta new file mode 100644 index 0000000..a8283d6 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libbumpalo-79e9bea688dd5fa8.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libbytes-c3394b0af77a15c5.rmeta b/examples/leptos_axum/target/debug/deps/libbytes-c3394b0af77a15c5.rmeta new file mode 100644 index 0000000..a2811e6 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libbytes-c3394b0af77a15c5.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libc-421811f1f81d68b1.d b/examples/leptos_axum/target/debug/deps/libc-421811f1f81d68b1.d new file mode 100644 index 0000000..253b6ca --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/libc-421811f1f81d68b1.d @@ -0,0 +1,55 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libc-421811f1f81d68b1.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/unistd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/bcm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/j1939.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/netlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/futex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_addr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_packet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/keyctl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/membarrier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mount.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/netlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/pidfd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/sctp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/tls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/posix/unistd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/bits/../../x86/nptl/bits/struct_mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/net/route.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux_l4re_shared.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/generic/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/types.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/liblibc-421811f1f81d68b1.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/unistd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/bcm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/j1939.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/netlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/futex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_addr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_packet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/keyctl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/membarrier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mount.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/netlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/pidfd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/sctp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/tls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/posix/unistd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/bits/../../x86/nptl/bits/struct_mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/net/route.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux_l4re_shared.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/generic/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/types.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/liblibc-421811f1f81d68b1.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/unistd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/bcm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/j1939.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/netlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/raw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/futex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_addr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_packet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/keyctl.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/membarrier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mount.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/netlink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/pidfd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/sctp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/tls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/types.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/posix/unistd.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/bits/../../x86/nptl/bits/struct_mutex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/pthread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/net/route.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux_l4re_shared.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/generic/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/types.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/linux_like/pthread.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/pthread.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/common/posix/unistd.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/bcm.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/j1939.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/netlink.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/can/raw.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/futex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_addr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_link.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/if_packet.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/keyctl.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/membarrier.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/mount.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/netlink.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/pidfd.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/sctp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/tls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/linux_uapi/linux/types.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/posix/unistd.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/bits/../../x86/nptl/bits/struct_mutex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/nptl/pthread.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/new/glibc/sysdeps/unix/linux/net/route.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/primitives.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux_l4re_shared.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/unix/linux_like/linux/arch/generic/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.189/src/types.rs: diff --git a/examples/leptos_axum/target/debug/deps/libcamino-66e40624b2ee4131.rlib b/examples/leptos_axum/target/debug/deps/libcamino-66e40624b2ee4131.rlib new file mode 100644 index 0000000..6c8702a Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libcamino-66e40624b2ee4131.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libcamino-66e40624b2ee4131.rmeta b/examples/leptos_axum/target/debug/deps/libcamino-66e40624b2ee4131.rmeta new file mode 100644 index 0000000..8af71a8 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libcamino-66e40624b2ee4131.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libcamino-7ece83f2109c1466.rmeta b/examples/leptos_axum/target/debug/deps/libcamino-7ece83f2109c1466.rmeta new file mode 100644 index 0000000..1f18dc3 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libcamino-7ece83f2109c1466.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libcfg_if-8e014ddcb785b96d.rmeta b/examples/leptos_axum/target/debug/deps/libcfg_if-8e014ddcb785b96d.rmeta new file mode 100644 index 0000000..0af237d Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libcfg_if-8e014ddcb785b96d.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libcfg_if-a5d74e57c5b7e6d1.rlib b/examples/leptos_axum/target/debug/deps/libcfg_if-a5d74e57c5b7e6d1.rlib new file mode 100644 index 0000000..dede227 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libcfg_if-a5d74e57c5b7e6d1.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libcfg_if-a5d74e57c5b7e6d1.rmeta b/examples/leptos_axum/target/debug/deps/libcfg_if-a5d74e57c5b7e6d1.rmeta new file mode 100644 index 0000000..10a41eb Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libcfg_if-a5d74e57c5b7e6d1.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libcodee-52695188789e516c.rmeta b/examples/leptos_axum/target/debug/deps/libcodee-52695188789e516c.rmeta new file mode 100644 index 0000000..04c4b8d Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libcodee-52695188789e516c.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libcollection_literals-4f0a9919e4b05d61.rlib b/examples/leptos_axum/target/debug/deps/libcollection_literals-4f0a9919e4b05d61.rlib new file mode 100644 index 0000000..09fa249 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libcollection_literals-4f0a9919e4b05d61.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libcollection_literals-4f0a9919e4b05d61.rmeta b/examples/leptos_axum/target/debug/deps/libcollection_literals-4f0a9919e4b05d61.rmeta new file mode 100644 index 0000000..8f58b8b Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libcollection_literals-4f0a9919e4b05d61.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libconfig-3c9b85a4af98af1d.rmeta b/examples/leptos_axum/target/debug/deps/libconfig-3c9b85a4af98af1d.rmeta new file mode 100644 index 0000000..67abed5 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libconfig-3c9b85a4af98af1d.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libconsole_error_panic_hook-711a7aa6723a560b.rmeta b/examples/leptos_axum/target/debug/deps/libconsole_error_panic_hook-711a7aa6723a560b.rmeta new file mode 100644 index 0000000..4444706 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libconsole_error_panic_hook-711a7aa6723a560b.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libconst_format-e1fe68a0dc334ca5.rmeta b/examples/leptos_axum/target/debug/deps/libconst_format-e1fe68a0dc334ca5.rmeta new file mode 100644 index 0000000..927bc71 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libconst_format-e1fe68a0dc334ca5.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libconst_format-f314c68d7f0a66dd.rlib b/examples/leptos_axum/target/debug/deps/libconst_format-f314c68d7f0a66dd.rlib new file mode 100644 index 0000000..8214459 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libconst_format-f314c68d7f0a66dd.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libconst_format-f314c68d7f0a66dd.rmeta b/examples/leptos_axum/target/debug/deps/libconst_format-f314c68d7f0a66dd.rmeta new file mode 100644 index 0000000..da264e9 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libconst_format-f314c68d7f0a66dd.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libconst_format_proc_macros-0f337214c362af6d.so b/examples/leptos_axum/target/debug/deps/libconst_format_proc_macros-0f337214c362af6d.so new file mode 100755 index 0000000..2f506ed Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libconst_format_proc_macros-0f337214c362af6d.so differ diff --git a/examples/leptos_axum/target/debug/deps/libconst_str-52f1d0f8e7a003ce.rmeta b/examples/leptos_axum/target/debug/deps/libconst_str-52f1d0f8e7a003ce.rmeta new file mode 100644 index 0000000..5c43439 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libconst_str-52f1d0f8e7a003ce.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libconst_str_slice_concat-82fcb9501360d738.rmeta b/examples/leptos_axum/target/debug/deps/libconst_str_slice_concat-82fcb9501360d738.rmeta new file mode 100644 index 0000000..ec9b1f7 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libconst_str_slice_concat-82fcb9501360d738.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libconvert_case-2628ae2be3deb1b5.rlib b/examples/leptos_axum/target/debug/deps/libconvert_case-2628ae2be3deb1b5.rlib new file mode 100644 index 0000000..2e05368 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libconvert_case-2628ae2be3deb1b5.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libconvert_case-2628ae2be3deb1b5.rmeta b/examples/leptos_axum/target/debug/deps/libconvert_case-2628ae2be3deb1b5.rmeta new file mode 100644 index 0000000..c228f3d Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libconvert_case-2628ae2be3deb1b5.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libconvert_case-7209f6d0f64c0ef2.rmeta b/examples/leptos_axum/target/debug/deps/libconvert_case-7209f6d0f64c0ef2.rmeta new file mode 100644 index 0000000..e23a188 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libconvert_case-7209f6d0f64c0ef2.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libconvert_case_extras-6f78dc8bb04e6ee9.rlib b/examples/leptos_axum/target/debug/deps/libconvert_case_extras-6f78dc8bb04e6ee9.rlib new file mode 100644 index 0000000..95090e8 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libconvert_case_extras-6f78dc8bb04e6ee9.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libconvert_case_extras-6f78dc8bb04e6ee9.rmeta b/examples/leptos_axum/target/debug/deps/libconvert_case_extras-6f78dc8bb04e6ee9.rmeta new file mode 100644 index 0000000..1c9d1c6 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libconvert_case_extras-6f78dc8bb04e6ee9.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libcpufeatures-13cf37fdce80f82f.rlib b/examples/leptos_axum/target/debug/deps/libcpufeatures-13cf37fdce80f82f.rlib new file mode 100644 index 0000000..cb5cff4 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libcpufeatures-13cf37fdce80f82f.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libcpufeatures-13cf37fdce80f82f.rmeta b/examples/leptos_axum/target/debug/deps/libcpufeatures-13cf37fdce80f82f.rmeta new file mode 100644 index 0000000..e131b68 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libcpufeatures-13cf37fdce80f82f.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libcrypto_common-c0edffe7f96ddd28.rlib b/examples/leptos_axum/target/debug/deps/libcrypto_common-c0edffe7f96ddd28.rlib new file mode 100644 index 0000000..2740c0c Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libcrypto_common-c0edffe7f96ddd28.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libcrypto_common-c0edffe7f96ddd28.rmeta b/examples/leptos_axum/target/debug/deps/libcrypto_common-c0edffe7f96ddd28.rmeta new file mode 100644 index 0000000..1e8c159 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libcrypto_common-c0edffe7f96ddd28.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libderive_where-8f93f40d0a741f91.so b/examples/leptos_axum/target/debug/deps/libderive_where-8f93f40d0a741f91.so new file mode 100755 index 0000000..48dd788 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libderive_where-8f93f40d0a741f91.so differ diff --git a/examples/leptos_axum/target/debug/deps/libdigest-229773c461897454.rlib b/examples/leptos_axum/target/debug/deps/libdigest-229773c461897454.rlib new file mode 100644 index 0000000..5a3bf28 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libdigest-229773c461897454.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libdigest-229773c461897454.rmeta b/examples/leptos_axum/target/debug/deps/libdigest-229773c461897454.rmeta new file mode 100644 index 0000000..414af3d Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libdigest-229773c461897454.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libdisplaydoc-39890585602376ad.so b/examples/leptos_axum/target/debug/deps/libdisplaydoc-39890585602376ad.so new file mode 100755 index 0000000..483abc6 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libdisplaydoc-39890585602376ad.so differ diff --git a/examples/leptos_axum/target/debug/deps/libdrain_filter_polyfill-cfdd89c70b92254c.rmeta b/examples/leptos_axum/target/debug/deps/libdrain_filter_polyfill-cfdd89c70b92254c.rmeta new file mode 100644 index 0000000..8a77b24 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libdrain_filter_polyfill-cfdd89c70b92254c.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libeither-4df26a1332d7081b.rlib b/examples/leptos_axum/target/debug/deps/libeither-4df26a1332d7081b.rlib new file mode 100644 index 0000000..92dfd01 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libeither-4df26a1332d7081b.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libeither-4df26a1332d7081b.rmeta b/examples/leptos_axum/target/debug/deps/libeither-4df26a1332d7081b.rmeta new file mode 100644 index 0000000..9c58204 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libeither-4df26a1332d7081b.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libeither-9f0a89081c0ca233.rmeta b/examples/leptos_axum/target/debug/deps/libeither-9f0a89081c0ca233.rmeta new file mode 100644 index 0000000..dea40a1 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libeither-9f0a89081c0ca233.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libeither_of-bfce8fd63a10cb69.rmeta b/examples/leptos_axum/target/debug/deps/libeither_of-bfce8fd63a10cb69.rmeta new file mode 100644 index 0000000..fc2306c Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libeither_of-bfce8fd63a10cb69.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libequivalent-0aada0f55b2e54f9.rlib b/examples/leptos_axum/target/debug/deps/libequivalent-0aada0f55b2e54f9.rlib new file mode 100644 index 0000000..81a1e81 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libequivalent-0aada0f55b2e54f9.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libequivalent-0aada0f55b2e54f9.rmeta b/examples/leptos_axum/target/debug/deps/libequivalent-0aada0f55b2e54f9.rmeta new file mode 100644 index 0000000..99a948d Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libequivalent-0aada0f55b2e54f9.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libequivalent-c8922812beabd051.rmeta b/examples/leptos_axum/target/debug/deps/libequivalent-c8922812beabd051.rmeta new file mode 100644 index 0000000..6d7b3ac Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libequivalent-c8922812beabd051.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/liberased-68f74a5e08c5e561.rmeta b/examples/leptos_axum/target/debug/deps/liberased-68f74a5e08c5e561.rmeta new file mode 100644 index 0000000..2ee4490 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/liberased-68f74a5e08c5e561.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libevent_listener-1f42df9c57044c2d.rmeta b/examples/leptos_axum/target/debug/deps/libevent_listener-1f42df9c57044c2d.rmeta new file mode 100644 index 0000000..68888e9 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libevent_listener-1f42df9c57044c2d.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libevent_listener_strategy-d390ec938f25d728.rmeta b/examples/leptos_axum/target/debug/deps/libevent_listener_strategy-d390ec938f25d728.rmeta new file mode 100644 index 0000000..f86492c Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libevent_listener_strategy-d390ec938f25d728.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libform_urlencoded-53df02ed96661281.rmeta b/examples/leptos_axum/target/debug/deps/libform_urlencoded-53df02ed96661281.rmeta new file mode 100644 index 0000000..3036678 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libform_urlencoded-53df02ed96661281.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libfutures-32f26cd5af3706ad.rmeta b/examples/leptos_axum/target/debug/deps/libfutures-32f26cd5af3706ad.rmeta new file mode 100644 index 0000000..e64698a Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libfutures-32f26cd5af3706ad.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libfutures_channel-0ac15f8efb8db236.rmeta b/examples/leptos_axum/target/debug/deps/libfutures_channel-0ac15f8efb8db236.rmeta new file mode 100644 index 0000000..70908f2 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libfutures_channel-0ac15f8efb8db236.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libfutures_core-77c8ed53374c713b.rmeta b/examples/leptos_axum/target/debug/deps/libfutures_core-77c8ed53374c713b.rmeta new file mode 100644 index 0000000..1261060 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libfutures_core-77c8ed53374c713b.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libfutures_executor-1dc509e8279fc434.rmeta b/examples/leptos_axum/target/debug/deps/libfutures_executor-1dc509e8279fc434.rmeta new file mode 100644 index 0000000..888bea5 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libfutures_executor-1dc509e8279fc434.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libfutures_io-39c08f9e9c63bb7d.rmeta b/examples/leptos_axum/target/debug/deps/libfutures_io-39c08f9e9c63bb7d.rmeta new file mode 100644 index 0000000..356437f Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libfutures_io-39c08f9e9c63bb7d.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libfutures_macro-fcd27692e72fee92.so b/examples/leptos_axum/target/debug/deps/libfutures_macro-fcd27692e72fee92.so new file mode 100755 index 0000000..8117078 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libfutures_macro-fcd27692e72fee92.so differ diff --git a/examples/leptos_axum/target/debug/deps/libfutures_sink-288f8e7b06f8dcbc.rmeta b/examples/leptos_axum/target/debug/deps/libfutures_sink-288f8e7b06f8dcbc.rmeta new file mode 100644 index 0000000..7cebb1b Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libfutures_sink-288f8e7b06f8dcbc.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libfutures_task-b2cf2b99319e9c19.rmeta b/examples/leptos_axum/target/debug/deps/libfutures_task-b2cf2b99319e9c19.rmeta new file mode 100644 index 0000000..7f6635c Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libfutures_task-b2cf2b99319e9c19.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libfutures_util-b9ea746dd82c65c2.rmeta b/examples/leptos_axum/target/debug/deps/libfutures_util-b9ea746dd82c65c2.rmeta new file mode 100644 index 0000000..c81554b Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libfutures_util-b9ea746dd82c65c2.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libgeneric_array-5902fc5acf9fb48e.rlib b/examples/leptos_axum/target/debug/deps/libgeneric_array-5902fc5acf9fb48e.rlib new file mode 100644 index 0000000..dcd606f Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libgeneric_array-5902fc5acf9fb48e.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libgeneric_array-5902fc5acf9fb48e.rmeta b/examples/leptos_axum/target/debug/deps/libgeneric_array-5902fc5acf9fb48e.rmeta new file mode 100644 index 0000000..878bed3 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libgeneric_array-5902fc5acf9fb48e.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libgetrandom-eade8d24da07ca42.rlib b/examples/leptos_axum/target/debug/deps/libgetrandom-eade8d24da07ca42.rlib new file mode 100644 index 0000000..4956499 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libgetrandom-eade8d24da07ca42.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libgetrandom-eade8d24da07ca42.rmeta b/examples/leptos_axum/target/debug/deps/libgetrandom-eade8d24da07ca42.rmeta new file mode 100644 index 0000000..f14a9ce Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libgetrandom-eade8d24da07ca42.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libgloo_net-c2ae71330efea551.rmeta b/examples/leptos_axum/target/debug/deps/libgloo_net-c2ae71330efea551.rmeta new file mode 100644 index 0000000..ad592d2 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libgloo_net-c2ae71330efea551.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libgloo_utils-d06d67fc27b6bc59.rmeta b/examples/leptos_axum/target/debug/deps/libgloo_utils-d06d67fc27b6bc59.rmeta new file mode 100644 index 0000000..26a5bc2 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libgloo_utils-d06d67fc27b6bc59.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libguardian-6410e32068359079.rmeta b/examples/leptos_axum/target/debug/deps/libguardian-6410e32068359079.rmeta new file mode 100644 index 0000000..347043c Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libguardian-6410e32068359079.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libhashbrown-5cfb98346d9bdeab.rmeta b/examples/leptos_axum/target/debug/deps/libhashbrown-5cfb98346d9bdeab.rmeta new file mode 100644 index 0000000..5a4920d Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libhashbrown-5cfb98346d9bdeab.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libhashbrown-ae4809890b874568.rlib b/examples/leptos_axum/target/debug/deps/libhashbrown-ae4809890b874568.rlib new file mode 100644 index 0000000..541cfb0 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libhashbrown-ae4809890b874568.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libhashbrown-ae4809890b874568.rmeta b/examples/leptos_axum/target/debug/deps/libhashbrown-ae4809890b874568.rmeta new file mode 100644 index 0000000..7bdd33e Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libhashbrown-ae4809890b874568.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libhtml_escape-04c58a8291d167e9.rlib b/examples/leptos_axum/target/debug/deps/libhtml_escape-04c58a8291d167e9.rlib new file mode 100644 index 0000000..6c7ca95 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libhtml_escape-04c58a8291d167e9.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libhtml_escape-04c58a8291d167e9.rmeta b/examples/leptos_axum/target/debug/deps/libhtml_escape-04c58a8291d167e9.rmeta new file mode 100644 index 0000000..3ef37c8 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libhtml_escape-04c58a8291d167e9.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libhtml_escape-9ce23e06efb873ad.rmeta b/examples/leptos_axum/target/debug/deps/libhtml_escape-9ce23e06efb873ad.rmeta new file mode 100644 index 0000000..62336da Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libhtml_escape-9ce23e06efb873ad.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libhttp-70f1741eb8ff2b4a.rmeta b/examples/leptos_axum/target/debug/deps/libhttp-70f1741eb8ff2b4a.rmeta new file mode 100644 index 0000000..5be7604 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libhttp-70f1741eb8ff2b4a.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libhydration_context-4357cb4e6b7a3ce3.rmeta b/examples/leptos_axum/target/debug/deps/libhydration_context-4357cb4e6b7a3ce3.rmeta new file mode 100644 index 0000000..fe24954 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libhydration_context-4357cb4e6b7a3ce3.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libicu_collections-be359238685b9d13.rmeta b/examples/leptos_axum/target/debug/deps/libicu_collections-be359238685b9d13.rmeta new file mode 100644 index 0000000..1a95b87 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libicu_collections-be359238685b9d13.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libicu_locale_core-65f9d7248f190242.rmeta b/examples/leptos_axum/target/debug/deps/libicu_locale_core-65f9d7248f190242.rmeta new file mode 100644 index 0000000..f95fe86 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libicu_locale_core-65f9d7248f190242.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libicu_normalizer-83b9c8bf32345378.rmeta b/examples/leptos_axum/target/debug/deps/libicu_normalizer-83b9c8bf32345378.rmeta new file mode 100644 index 0000000..8fa8e3a Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libicu_normalizer-83b9c8bf32345378.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libicu_normalizer_data-d587184efb5e1f57.rmeta b/examples/leptos_axum/target/debug/deps/libicu_normalizer_data-d587184efb5e1f57.rmeta new file mode 100644 index 0000000..273cacf Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libicu_normalizer_data-d587184efb5e1f57.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libicu_properties-5f570ef8bda7b6fe.rmeta b/examples/leptos_axum/target/debug/deps/libicu_properties-5f570ef8bda7b6fe.rmeta new file mode 100644 index 0000000..73ab642 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libicu_properties-5f570ef8bda7b6fe.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libicu_properties_data-1d3a2241b6008d88.rmeta b/examples/leptos_axum/target/debug/deps/libicu_properties_data-1d3a2241b6008d88.rmeta new file mode 100644 index 0000000..c459181 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libicu_properties_data-1d3a2241b6008d88.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libicu_provider-197f4ab962bcf7b8.rmeta b/examples/leptos_axum/target/debug/deps/libicu_provider-197f4ab962bcf7b8.rmeta new file mode 100644 index 0000000..ed8b086 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libicu_provider-197f4ab962bcf7b8.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libidna-568ea53c005b8f2c.rmeta b/examples/leptos_axum/target/debug/deps/libidna-568ea53c005b8f2c.rmeta new file mode 100644 index 0000000..95a27b7 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libidna-568ea53c005b8f2c.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libidna_adapter-8ea745f72cf16afb.rmeta b/examples/leptos_axum/target/debug/deps/libidna_adapter-8ea745f72cf16afb.rmeta new file mode 100644 index 0000000..1d16aea Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libidna_adapter-8ea745f72cf16afb.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libindexmap-272d48ecb39dfcc8.rmeta b/examples/leptos_axum/target/debug/deps/libindexmap-272d48ecb39dfcc8.rmeta new file mode 100644 index 0000000..49ba7d9 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libindexmap-272d48ecb39dfcc8.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libindexmap-7288faeefca9e398.rlib b/examples/leptos_axum/target/debug/deps/libindexmap-7288faeefca9e398.rlib new file mode 100644 index 0000000..34d819e Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libindexmap-7288faeefca9e398.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libindexmap-7288faeefca9e398.rmeta b/examples/leptos_axum/target/debug/deps/libindexmap-7288faeefca9e398.rmeta new file mode 100644 index 0000000..a090232 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libindexmap-7288faeefca9e398.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libinterpolator-3f270c6007151882.rlib b/examples/leptos_axum/target/debug/deps/libinterpolator-3f270c6007151882.rlib new file mode 100644 index 0000000..c6ee401 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libinterpolator-3f270c6007151882.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libinterpolator-3f270c6007151882.rmeta b/examples/leptos_axum/target/debug/deps/libinterpolator-3f270c6007151882.rmeta new file mode 100644 index 0000000..24c95fc Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libinterpolator-3f270c6007151882.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libitertools-008f91674e3b4f69.rmeta b/examples/leptos_axum/target/debug/deps/libitertools-008f91674e3b4f69.rmeta new file mode 100644 index 0000000..610eca6 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libitertools-008f91674e3b4f69.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libitertools-50c38fa6d921d827.rlib b/examples/leptos_axum/target/debug/deps/libitertools-50c38fa6d921d827.rlib new file mode 100644 index 0000000..105e2be Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libitertools-50c38fa6d921d827.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libitertools-50c38fa6d921d827.rmeta b/examples/leptos_axum/target/debug/deps/libitertools-50c38fa6d921d827.rmeta new file mode 100644 index 0000000..e945b44 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libitertools-50c38fa6d921d827.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libitoa-6ddde9f8d1eacb1c.rmeta b/examples/leptos_axum/target/debug/deps/libitoa-6ddde9f8d1eacb1c.rmeta new file mode 100644 index 0000000..28a9d90 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libitoa-6ddde9f8d1eacb1c.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libjs_sys-20ed683147fa37f6.rmeta b/examples/leptos_axum/target/debug/deps/libjs_sys-20ed683147fa37f6.rmeta new file mode 100644 index 0000000..fbc2382 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libjs_sys-20ed683147fa37f6.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libkonst-36d38e80de94563b.rlib b/examples/leptos_axum/target/debug/deps/libkonst-36d38e80de94563b.rlib new file mode 100644 index 0000000..330a054 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libkonst-36d38e80de94563b.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libkonst-36d38e80de94563b.rmeta b/examples/leptos_axum/target/debug/deps/libkonst-36d38e80de94563b.rmeta new file mode 100644 index 0000000..88a934b Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libkonst-36d38e80de94563b.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libkonst-53c62a561c35e672.rmeta b/examples/leptos_axum/target/debug/deps/libkonst-53c62a561c35e672.rmeta new file mode 100644 index 0000000..3dafc53 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libkonst-53c62a561c35e672.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libkonst_macro_rules-1cd1831f9dad901a.rlib b/examples/leptos_axum/target/debug/deps/libkonst_macro_rules-1cd1831f9dad901a.rlib new file mode 100644 index 0000000..bc6fc54 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libkonst_macro_rules-1cd1831f9dad901a.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libkonst_macro_rules-1cd1831f9dad901a.rmeta b/examples/leptos_axum/target/debug/deps/libkonst_macro_rules-1cd1831f9dad901a.rmeta new file mode 100644 index 0000000..131e790 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libkonst_macro_rules-1cd1831f9dad901a.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libkonst_macro_rules-e04dc1e800ae5688.rmeta b/examples/leptos_axum/target/debug/deps/libkonst_macro_rules-e04dc1e800ae5688.rmeta new file mode 100644 index 0000000..19555f0 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libkonst_macro_rules-e04dc1e800ae5688.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libleptos-5d198d707864487d.rmeta b/examples/leptos_axum/target/debug/deps/libleptos-5d198d707864487d.rmeta new file mode 100644 index 0000000..4ebfe0b Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libleptos-5d198d707864487d.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libleptos_axum_chat-73ea73b170728f0c.rmeta b/examples/leptos_axum/target/debug/deps/libleptos_axum_chat-73ea73b170728f0c.rmeta new file mode 100644 index 0000000..12959fd Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libleptos_axum_chat-73ea73b170728f0c.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libleptos_axum_chat-9372dca07d546c6c.rmeta b/examples/leptos_axum/target/debug/deps/libleptos_axum_chat-9372dca07d546c6c.rmeta new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/deps/libleptos_axum_chat-b106a71cd6154af5.rmeta b/examples/leptos_axum/target/debug/deps/libleptos_axum_chat-b106a71cd6154af5.rmeta new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/deps/libleptos_axum_chat-f9fb4f11c0d936a2.rmeta b/examples/leptos_axum/target/debug/deps/libleptos_axum_chat-f9fb4f11c0d936a2.rmeta new file mode 100644 index 0000000..e69de29 diff --git a/examples/leptos_axum/target/debug/deps/libleptos_config-4ef11b2b988535be.rmeta b/examples/leptos_axum/target/debug/deps/libleptos_config-4ef11b2b988535be.rmeta new file mode 100644 index 0000000..413438b Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libleptos_config-4ef11b2b988535be.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libleptos_dom-016040fd8e1175b7.rmeta b/examples/leptos_axum/target/debug/deps/libleptos_dom-016040fd8e1175b7.rmeta new file mode 100644 index 0000000..4f378c9 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libleptos_dom-016040fd8e1175b7.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libleptos_hot_reload-2bde52d46b1280a7.rmeta b/examples/leptos_axum/target/debug/deps/libleptos_hot_reload-2bde52d46b1280a7.rmeta new file mode 100644 index 0000000..749d04c Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libleptos_hot_reload-2bde52d46b1280a7.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libleptos_hot_reload-c80cb73391fbf586.rlib b/examples/leptos_axum/target/debug/deps/libleptos_hot_reload-c80cb73391fbf586.rlib new file mode 100644 index 0000000..c0e3fee Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libleptos_hot_reload-c80cb73391fbf586.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libleptos_hot_reload-c80cb73391fbf586.rmeta b/examples/leptos_axum/target/debug/deps/libleptos_hot_reload-c80cb73391fbf586.rmeta new file mode 100644 index 0000000..8a95926 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libleptos_hot_reload-c80cb73391fbf586.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libleptos_macro-4cc6e29f4cbfe6d0.so b/examples/leptos_axum/target/debug/deps/libleptos_macro-4cc6e29f4cbfe6d0.so new file mode 100755 index 0000000..695e059 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libleptos_macro-4cc6e29f4cbfe6d0.so differ diff --git a/examples/leptos_axum/target/debug/deps/libleptos_meta-20e8073da55bf818.rmeta b/examples/leptos_axum/target/debug/deps/libleptos_meta-20e8073da55bf818.rmeta new file mode 100644 index 0000000..59e996b Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libleptos_meta-20e8073da55bf818.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libleptos_router-33c7618d09e94916.rmeta b/examples/leptos_axum/target/debug/deps/libleptos_router-33c7618d09e94916.rmeta new file mode 100644 index 0000000..3b2b9ec Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libleptos_router-33c7618d09e94916.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libleptos_router_macro-638e3e14858e4264.so b/examples/leptos_axum/target/debug/deps/libleptos_router_macro-638e3e14858e4264.so new file mode 100755 index 0000000..c75f0eb Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libleptos_router_macro-638e3e14858e4264.so differ diff --git a/examples/leptos_axum/target/debug/deps/libleptos_server-416099c92f75dff8.rmeta b/examples/leptos_axum/target/debug/deps/libleptos_server-416099c92f75dff8.rmeta new file mode 100644 index 0000000..0c8b0e6 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libleptos_server-416099c92f75dff8.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/liblibc-421811f1f81d68b1.rlib b/examples/leptos_axum/target/debug/deps/liblibc-421811f1f81d68b1.rlib new file mode 100644 index 0000000..5b408ce Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/liblibc-421811f1f81d68b1.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/liblibc-421811f1f81d68b1.rmeta b/examples/leptos_axum/target/debug/deps/liblibc-421811f1f81d68b1.rmeta new file mode 100644 index 0000000..022e4ce Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/liblibc-421811f1f81d68b1.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/liblitemap-29b9b43b848af24e.rmeta b/examples/leptos_axum/target/debug/deps/liblitemap-29b9b43b848af24e.rmeta new file mode 100644 index 0000000..bb0ae9f Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/liblitemap-29b9b43b848af24e.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libmanyhow-82e4e7f43303c1a6.rlib b/examples/leptos_axum/target/debug/deps/libmanyhow-82e4e7f43303c1a6.rlib new file mode 100644 index 0000000..87902ce Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libmanyhow-82e4e7f43303c1a6.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libmanyhow-82e4e7f43303c1a6.rmeta b/examples/leptos_axum/target/debug/deps/libmanyhow-82e4e7f43303c1a6.rmeta new file mode 100644 index 0000000..023e5e4 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libmanyhow-82e4e7f43303c1a6.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libmanyhow_macros-5ad4455a860de2df.so b/examples/leptos_axum/target/debug/deps/libmanyhow_macros-5ad4455a860de2df.so new file mode 100755 index 0000000..232b898 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libmanyhow_macros-5ad4455a860de2df.so differ diff --git a/examples/leptos_axum/target/debug/deps/libmemchr-a34ee5341fb0ce7e.rmeta b/examples/leptos_axum/target/debug/deps/libmemchr-a34ee5341fb0ce7e.rmeta new file mode 100644 index 0000000..2bf07ec Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libmemchr-a34ee5341fb0ce7e.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libnext_tuple-f71f28dcebae7eb3.rmeta b/examples/leptos_axum/target/debug/deps/libnext_tuple-f71f28dcebae7eb3.rmeta new file mode 100644 index 0000000..f7f4f41 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libnext_tuple-f71f28dcebae7eb3.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/liboco_ref-80d0d41f009c456c.rmeta b/examples/leptos_axum/target/debug/deps/liboco_ref-80d0d41f009c456c.rmeta new file mode 100644 index 0000000..a5c5bf5 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/liboco_ref-80d0d41f009c456c.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libonce_cell-e21d0fc8c5ea8c72.rmeta b/examples/leptos_axum/target/debug/deps/libonce_cell-e21d0fc8c5ea8c72.rmeta new file mode 100644 index 0000000..b736141 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libonce_cell-e21d0fc8c5ea8c72.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libor_poisoned-59a0b95671bc341c.rmeta b/examples/leptos_axum/target/debug/deps/libor_poisoned-59a0b95671bc341c.rmeta new file mode 100644 index 0000000..d1026d5 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libor_poisoned-59a0b95671bc341c.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libor_poisoned-aa8498de2e6ec10a.rlib b/examples/leptos_axum/target/debug/deps/libor_poisoned-aa8498de2e6ec10a.rlib new file mode 100644 index 0000000..ea7c00d Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libor_poisoned-aa8498de2e6ec10a.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libor_poisoned-aa8498de2e6ec10a.rmeta b/examples/leptos_axum/target/debug/deps/libor_poisoned-aa8498de2e6ec10a.rmeta new file mode 100644 index 0000000..7a15704 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libor_poisoned-aa8498de2e6ec10a.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libparking-a40adc58bb78b1ed.rmeta b/examples/leptos_axum/target/debug/deps/libparking-a40adc58bb78b1ed.rmeta new file mode 100644 index 0000000..6171409 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libparking-a40adc58bb78b1ed.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libpaste-a03d36d0470502fc.so b/examples/leptos_axum/target/debug/deps/libpaste-a03d36d0470502fc.so new file mode 100755 index 0000000..adf67d6 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libpaste-a03d36d0470502fc.so differ diff --git a/examples/leptos_axum/target/debug/deps/libpathdiff-0450d8a12634d549.rmeta b/examples/leptos_axum/target/debug/deps/libpathdiff-0450d8a12634d549.rmeta new file mode 100644 index 0000000..99c28ae Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libpathdiff-0450d8a12634d549.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libpercent_encoding-fdfc253f68ee3774.rmeta b/examples/leptos_axum/target/debug/deps/libpercent_encoding-fdfc253f68ee3774.rmeta new file mode 100644 index 0000000..bcc4b81 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libpercent_encoding-fdfc253f68ee3774.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libpin_project-066a22f9f454b2d1.rmeta b/examples/leptos_axum/target/debug/deps/libpin_project-066a22f9f454b2d1.rmeta new file mode 100644 index 0000000..a1bfd31 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libpin_project-066a22f9f454b2d1.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libpin_project_internal-1aab316fb5a08cbd.so b/examples/leptos_axum/target/debug/deps/libpin_project_internal-1aab316fb5a08cbd.so new file mode 100755 index 0000000..a9f99c5 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libpin_project_internal-1aab316fb5a08cbd.so differ diff --git a/examples/leptos_axum/target/debug/deps/libpin_project_lite-e9d4ca73b9a6a34c.rmeta b/examples/leptos_axum/target/debug/deps/libpin_project_lite-e9d4ca73b9a6a34c.rmeta new file mode 100644 index 0000000..4462213 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libpin_project_lite-e9d4ca73b9a6a34c.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libpotential_utf-d52d6a81c5b4e055.rmeta b/examples/leptos_axum/target/debug/deps/libpotential_utf-d52d6a81c5b4e055.rmeta new file mode 100644 index 0000000..5674023 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libpotential_utf-d52d6a81c5b4e055.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libprettyplease-5739b8da4b325404.rlib b/examples/leptos_axum/target/debug/deps/libprettyplease-5739b8da4b325404.rlib new file mode 100644 index 0000000..4b08c6f Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libprettyplease-5739b8da4b325404.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libprettyplease-5739b8da4b325404.rmeta b/examples/leptos_axum/target/debug/deps/libprettyplease-5739b8da4b325404.rmeta new file mode 100644 index 0000000..26dd2db Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libprettyplease-5739b8da4b325404.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libproc_macro2-79e912e14b1f6010.rlib b/examples/leptos_axum/target/debug/deps/libproc_macro2-79e912e14b1f6010.rlib new file mode 100644 index 0000000..97f6505 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libproc_macro2-79e912e14b1f6010.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libproc_macro2-79e912e14b1f6010.rmeta b/examples/leptos_axum/target/debug/deps/libproc_macro2-79e912e14b1f6010.rmeta new file mode 100644 index 0000000..d07b68a Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libproc_macro2-79e912e14b1f6010.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libproc_macro2-e3b6262e565428ce.rmeta b/examples/leptos_axum/target/debug/deps/libproc_macro2-e3b6262e565428ce.rmeta new file mode 100644 index 0000000..04b9949 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libproc_macro2-e3b6262e565428ce.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libproc_macro2_diagnostics-a886e7c0b05f5ffa.rlib b/examples/leptos_axum/target/debug/deps/libproc_macro2_diagnostics-a886e7c0b05f5ffa.rlib new file mode 100644 index 0000000..473b6ad Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libproc_macro2_diagnostics-a886e7c0b05f5ffa.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libproc_macro2_diagnostics-a886e7c0b05f5ffa.rmeta b/examples/leptos_axum/target/debug/deps/libproc_macro2_diagnostics-a886e7c0b05f5ffa.rmeta new file mode 100644 index 0000000..29ac1e3 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libproc_macro2_diagnostics-a886e7c0b05f5ffa.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libproc_macro2_diagnostics-ffc40497011c51f6.rmeta b/examples/leptos_axum/target/debug/deps/libproc_macro2_diagnostics-ffc40497011c51f6.rmeta new file mode 100644 index 0000000..df6bcde Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libproc_macro2_diagnostics-ffc40497011c51f6.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libproc_macro_error2-75623c9efb82d0bb.rlib b/examples/leptos_axum/target/debug/deps/libproc_macro_error2-75623c9efb82d0bb.rlib new file mode 100644 index 0000000..5867e8c Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libproc_macro_error2-75623c9efb82d0bb.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libproc_macro_error2-75623c9efb82d0bb.rmeta b/examples/leptos_axum/target/debug/deps/libproc_macro_error2-75623c9efb82d0bb.rmeta new file mode 100644 index 0000000..ee04bb2 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libproc_macro_error2-75623c9efb82d0bb.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libproc_macro_error_attr2-e44351d03ab071cf.so b/examples/leptos_axum/target/debug/deps/libproc_macro_error_attr2-e44351d03ab071cf.so new file mode 100755 index 0000000..592204a Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libproc_macro_error_attr2-e44351d03ab071cf.so differ diff --git a/examples/leptos_axum/target/debug/deps/libproc_macro_utils-a986edbc0857ad6e.rlib b/examples/leptos_axum/target/debug/deps/libproc_macro_utils-a986edbc0857ad6e.rlib new file mode 100644 index 0000000..9432fed Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libproc_macro_utils-a986edbc0857ad6e.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libproc_macro_utils-a986edbc0857ad6e.rmeta b/examples/leptos_axum/target/debug/deps/libproc_macro_utils-a986edbc0857ad6e.rmeta new file mode 100644 index 0000000..d455d89 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libproc_macro_utils-a986edbc0857ad6e.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libpulldown_cmark-ec91219f5ced9d48.rmeta b/examples/leptos_axum/target/debug/deps/libpulldown_cmark-ec91219f5ced9d48.rmeta new file mode 100644 index 0000000..c133171 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libpulldown_cmark-ec91219f5ced9d48.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libpulldown_cmark_escape-34c9859aada7cd72.rmeta b/examples/leptos_axum/target/debug/deps/libpulldown_cmark_escape-34c9859aada7cd72.rmeta new file mode 100644 index 0000000..c46c492 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libpulldown_cmark_escape-34c9859aada7cd72.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libquote-415476b3bd7e2291.rlib b/examples/leptos_axum/target/debug/deps/libquote-415476b3bd7e2291.rlib new file mode 100644 index 0000000..ba3f178 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libquote-415476b3bd7e2291.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libquote-415476b3bd7e2291.rmeta b/examples/leptos_axum/target/debug/deps/libquote-415476b3bd7e2291.rmeta new file mode 100644 index 0000000..7031075 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libquote-415476b3bd7e2291.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libquote-4d9766c089a67192.rmeta b/examples/leptos_axum/target/debug/deps/libquote-4d9766c089a67192.rmeta new file mode 100644 index 0000000..626ddb2 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libquote-4d9766c089a67192.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libquote_use-3daf6b0ad607ce87.rlib b/examples/leptos_axum/target/debug/deps/libquote_use-3daf6b0ad607ce87.rlib new file mode 100644 index 0000000..05f4dfd Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libquote_use-3daf6b0ad607ce87.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libquote_use-3daf6b0ad607ce87.rmeta b/examples/leptos_axum/target/debug/deps/libquote_use-3daf6b0ad607ce87.rmeta new file mode 100644 index 0000000..7c116bf Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libquote_use-3daf6b0ad607ce87.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libquote_use_macros-cb61ff89967612f9.so b/examples/leptos_axum/target/debug/deps/libquote_use_macros-cb61ff89967612f9.so new file mode 100755 index 0000000..80349da Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libquote_use_macros-cb61ff89967612f9.so differ diff --git a/examples/leptos_axum/target/debug/deps/libreactive_graph-0251d5e0bdcb3545.rmeta b/examples/leptos_axum/target/debug/deps/libreactive_graph-0251d5e0bdcb3545.rmeta new file mode 100644 index 0000000..5a80029 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libreactive_graph-0251d5e0bdcb3545.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libreactive_stores-0ea30f40a25a9707.rmeta b/examples/leptos_axum/target/debug/deps/libreactive_stores-0ea30f40a25a9707.rmeta new file mode 100644 index 0000000..4770ba2 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libreactive_stores-0ea30f40a25a9707.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libreactive_stores_macro-a7aec4699ad4e2e5.so b/examples/leptos_axum/target/debug/deps/libreactive_stores_macro-a7aec4699ad4e2e5.so new file mode 100755 index 0000000..3fbaa9b Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libreactive_stores_macro-a7aec4699ad4e2e5.so differ diff --git a/examples/leptos_axum/target/debug/deps/libregex-fb6df73c4dd5bc61.rmeta b/examples/leptos_axum/target/debug/deps/libregex-fb6df73c4dd5bc61.rmeta new file mode 100644 index 0000000..66f712a Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libregex-fb6df73c4dd5bc61.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libregex_automata-0b184fe899a532d8.rmeta b/examples/leptos_axum/target/debug/deps/libregex_automata-0b184fe899a532d8.rmeta new file mode 100644 index 0000000..e408a4d Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libregex_automata-0b184fe899a532d8.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libregex_syntax-adce5f78d8a76588.rmeta b/examples/leptos_axum/target/debug/deps/libregex_syntax-adce5f78d8a76588.rmeta new file mode 100644 index 0000000..8372e6c Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libregex_syntax-adce5f78d8a76588.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/librstml-65a0d14437a81434.rlib b/examples/leptos_axum/target/debug/deps/librstml-65a0d14437a81434.rlib new file mode 100644 index 0000000..66d26e9 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/librstml-65a0d14437a81434.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/librstml-65a0d14437a81434.rmeta b/examples/leptos_axum/target/debug/deps/librstml-65a0d14437a81434.rmeta new file mode 100644 index 0000000..c70c1e4 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/librstml-65a0d14437a81434.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/librstml-e3b1e4ea0fef1ba1.rmeta b/examples/leptos_axum/target/debug/deps/librstml-e3b1e4ea0fef1ba1.rmeta new file mode 100644 index 0000000..e8c7693 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/librstml-e3b1e4ea0fef1ba1.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/librustc_hash-f07fb1533a14f5b3.rmeta b/examples/leptos_axum/target/debug/deps/librustc_hash-f07fb1533a14f5b3.rmeta new file mode 100644 index 0000000..7347527 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/librustc_hash-f07fb1533a14f5b3.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/librustc_version-723d3e5f09fa73a4.rlib b/examples/leptos_axum/target/debug/deps/librustc_version-723d3e5f09fa73a4.rlib new file mode 100644 index 0000000..f832c4b Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/librustc_version-723d3e5f09fa73a4.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/librustc_version-723d3e5f09fa73a4.rmeta b/examples/leptos_axum/target/debug/deps/librustc_version-723d3e5f09fa73a4.rmeta new file mode 100644 index 0000000..1712e29 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/librustc_version-723d3e5f09fa73a4.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/librustversion-d7df6ce16ce770b8.so b/examples/leptos_axum/target/debug/deps/librustversion-d7df6ce16ce770b8.so new file mode 100755 index 0000000..5b7ef1e Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/librustversion-d7df6ce16ce770b8.so differ diff --git a/examples/leptos_axum/target/debug/deps/libsame_file-34186455c5787638.rmeta b/examples/leptos_axum/target/debug/deps/libsame_file-34186455c5787638.rmeta new file mode 100644 index 0000000..fb32a98 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsame_file-34186455c5787638.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libsame_file-9be869ba4fbf1608.rlib b/examples/leptos_axum/target/debug/deps/libsame_file-9be869ba4fbf1608.rlib new file mode 100644 index 0000000..fab3796 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsame_file-9be869ba4fbf1608.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libsame_file-9be869ba4fbf1608.rmeta b/examples/leptos_axum/target/debug/deps/libsame_file-9be869ba4fbf1608.rmeta new file mode 100644 index 0000000..227e05d Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsame_file-9be869ba4fbf1608.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libsemver-de5fcdb836bb7c55.rlib b/examples/leptos_axum/target/debug/deps/libsemver-de5fcdb836bb7c55.rlib new file mode 100644 index 0000000..bcda932 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsemver-de5fcdb836bb7c55.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libsemver-de5fcdb836bb7c55.rmeta b/examples/leptos_axum/target/debug/deps/libsemver-de5fcdb836bb7c55.rmeta new file mode 100644 index 0000000..43ee624 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsemver-de5fcdb836bb7c55.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libsend_wrapper-8047a4ca9c49e346.rmeta b/examples/leptos_axum/target/debug/deps/libsend_wrapper-8047a4ca9c49e346.rmeta new file mode 100644 index 0000000..f8d283d Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsend_wrapper-8047a4ca9c49e346.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libserde-6a3863188a9f9a41.rlib b/examples/leptos_axum/target/debug/deps/libserde-6a3863188a9f9a41.rlib new file mode 100644 index 0000000..d3d7b3d Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libserde-6a3863188a9f9a41.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libserde-6a3863188a9f9a41.rmeta b/examples/leptos_axum/target/debug/deps/libserde-6a3863188a9f9a41.rmeta new file mode 100644 index 0000000..df25d7c Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libserde-6a3863188a9f9a41.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libserde-ccb6b0576c8ee876.rmeta b/examples/leptos_axum/target/debug/deps/libserde-ccb6b0576c8ee876.rmeta new file mode 100644 index 0000000..755d064 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libserde-ccb6b0576c8ee876.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libserde_core-557806e23fe5ad30.rmeta b/examples/leptos_axum/target/debug/deps/libserde_core-557806e23fe5ad30.rmeta new file mode 100644 index 0000000..06963cd Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libserde_core-557806e23fe5ad30.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libserde_core-c1d5c6fac1998173.rlib b/examples/leptos_axum/target/debug/deps/libserde_core-c1d5c6fac1998173.rlib new file mode 100644 index 0000000..e6c2adc Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libserde_core-c1d5c6fac1998173.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libserde_core-c1d5c6fac1998173.rmeta b/examples/leptos_axum/target/debug/deps/libserde_core-c1d5c6fac1998173.rmeta new file mode 100644 index 0000000..1b27dfb Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libserde_core-c1d5c6fac1998173.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libserde_derive-b2e6dbfaa2f4e984.so b/examples/leptos_axum/target/debug/deps/libserde_derive-b2e6dbfaa2f4e984.so new file mode 100755 index 0000000..01e0774 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libserde_derive-b2e6dbfaa2f4e984.so differ diff --git a/examples/leptos_axum/target/debug/deps/libserde_json-87aaaa0780a68507.rmeta b/examples/leptos_axum/target/debug/deps/libserde_json-87aaaa0780a68507.rmeta new file mode 100644 index 0000000..f4db92c Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libserde_json-87aaaa0780a68507.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libserde_qs-39dd419477d9c823.rmeta b/examples/leptos_axum/target/debug/deps/libserde_qs-39dd419477d9c823.rmeta new file mode 100644 index 0000000..e9e9f2b Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libserde_qs-39dd419477d9c823.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libserde_spanned-603cfcb9b82145f3.rmeta b/examples/leptos_axum/target/debug/deps/libserde_spanned-603cfcb9b82145f3.rmeta new file mode 100644 index 0000000..1057782 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libserde_spanned-603cfcb9b82145f3.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libserver_fn-4c4d5ac1bcc4d43c.rmeta b/examples/leptos_axum/target/debug/deps/libserver_fn-4c4d5ac1bcc4d43c.rmeta new file mode 100644 index 0000000..30a3ca7 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libserver_fn-4c4d5ac1bcc4d43c.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libserver_fn_macro-6f25d9de66578ee1.rlib b/examples/leptos_axum/target/debug/deps/libserver_fn_macro-6f25d9de66578ee1.rlib new file mode 100644 index 0000000..1b2dfe7 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libserver_fn_macro-6f25d9de66578ee1.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libserver_fn_macro-6f25d9de66578ee1.rmeta b/examples/leptos_axum/target/debug/deps/libserver_fn_macro-6f25d9de66578ee1.rmeta new file mode 100644 index 0000000..6948fbf Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libserver_fn_macro-6f25d9de66578ee1.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libserver_fn_macro_default-38c732b2495e1c7a.so b/examples/leptos_axum/target/debug/deps/libserver_fn_macro_default-38c732b2495e1c7a.so new file mode 100755 index 0000000..adcb745 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libserver_fn_macro_default-38c732b2495e1c7a.so differ diff --git a/examples/leptos_axum/target/debug/deps/libsha2-37e5ff72d8ba56ca.rlib b/examples/leptos_axum/target/debug/deps/libsha2-37e5ff72d8ba56ca.rlib new file mode 100644 index 0000000..cdbf6ff Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsha2-37e5ff72d8ba56ca.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libsha2-37e5ff72d8ba56ca.rmeta b/examples/leptos_axum/target/debug/deps/libsha2-37e5ff72d8ba56ca.rmeta new file mode 100644 index 0000000..3dc31a4 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsha2-37e5ff72d8ba56ca.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libslab-5ad27fdb4344ece1.rmeta b/examples/leptos_axum/target/debug/deps/libslab-5ad27fdb4344ece1.rmeta new file mode 100644 index 0000000..447d9e6 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libslab-5ad27fdb4344ece1.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libslotmap-aec30b9d2403345c.rmeta b/examples/leptos_axum/target/debug/deps/libslotmap-aec30b9d2403345c.rmeta new file mode 100644 index 0000000..272342e Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libslotmap-aec30b9d2403345c.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libsmallvec-23b98a0cef41d0b0.rlib b/examples/leptos_axum/target/debug/deps/libsmallvec-23b98a0cef41d0b0.rlib new file mode 100644 index 0000000..9e163b9 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsmallvec-23b98a0cef41d0b0.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libsmallvec-23b98a0cef41d0b0.rmeta b/examples/leptos_axum/target/debug/deps/libsmallvec-23b98a0cef41d0b0.rmeta new file mode 100644 index 0000000..190a382 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsmallvec-23b98a0cef41d0b0.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libsmallvec-c4d256b0884ef0dd.rmeta b/examples/leptos_axum/target/debug/deps/libsmallvec-c4d256b0884ef0dd.rmeta new file mode 100644 index 0000000..ece8838 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsmallvec-c4d256b0884ef0dd.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libstable_deref_trait-22158042bda71a4d.rmeta b/examples/leptos_axum/target/debug/deps/libstable_deref_trait-22158042bda71a4d.rmeta new file mode 100644 index 0000000..ec8561e Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libstable_deref_trait-22158042bda71a4d.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libsyn-80a515ee1227163e.rlib b/examples/leptos_axum/target/debug/deps/libsyn-80a515ee1227163e.rlib new file mode 100644 index 0000000..c7934bf Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsyn-80a515ee1227163e.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libsyn-80a515ee1227163e.rmeta b/examples/leptos_axum/target/debug/deps/libsyn-80a515ee1227163e.rmeta new file mode 100644 index 0000000..2e66756 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsyn-80a515ee1227163e.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libsyn-9788acc1f0629519.rmeta b/examples/leptos_axum/target/debug/deps/libsyn-9788acc1f0629519.rmeta new file mode 100644 index 0000000..a11ce15 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsyn-9788acc1f0629519.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libsyn-bc17c880c2dab633.rlib b/examples/leptos_axum/target/debug/deps/libsyn-bc17c880c2dab633.rlib new file mode 100644 index 0000000..52a5734 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsyn-bc17c880c2dab633.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libsyn-bc17c880c2dab633.rmeta b/examples/leptos_axum/target/debug/deps/libsyn-bc17c880c2dab633.rmeta new file mode 100644 index 0000000..e8885e9 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsyn-bc17c880c2dab633.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libsyn_derive-d95d09ab57dc1dce.so b/examples/leptos_axum/target/debug/deps/libsyn_derive-d95d09ab57dc1dce.so new file mode 100755 index 0000000..eeecede Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsyn_derive-d95d09ab57dc1dce.so differ diff --git a/examples/leptos_axum/target/debug/deps/libsynstructure-9936603f6e2083cc.rlib b/examples/leptos_axum/target/debug/deps/libsynstructure-9936603f6e2083cc.rlib new file mode 100644 index 0000000..13f7e5f Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsynstructure-9936603f6e2083cc.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libsynstructure-9936603f6e2083cc.rmeta b/examples/leptos_axum/target/debug/deps/libsynstructure-9936603f6e2083cc.rmeta new file mode 100644 index 0000000..3108c04 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libsynstructure-9936603f6e2083cc.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libtachys-f88c2c44c4bd69e8.rmeta b/examples/leptos_axum/target/debug/deps/libtachys-f88c2c44c4bd69e8.rmeta new file mode 100644 index 0000000..f2eba6f Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libtachys-f88c2c44c4bd69e8.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libthiserror-66a678865a8647f5.rlib b/examples/leptos_axum/target/debug/deps/libthiserror-66a678865a8647f5.rlib new file mode 100644 index 0000000..d5db2f1 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libthiserror-66a678865a8647f5.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libthiserror-66a678865a8647f5.rmeta b/examples/leptos_axum/target/debug/deps/libthiserror-66a678865a8647f5.rmeta new file mode 100644 index 0000000..a13f843 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libthiserror-66a678865a8647f5.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libthiserror-80aafabced16082d.rmeta b/examples/leptos_axum/target/debug/deps/libthiserror-80aafabced16082d.rmeta new file mode 100644 index 0000000..a679727 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libthiserror-80aafabced16082d.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libthiserror-cba291f4019b0e25.rmeta b/examples/leptos_axum/target/debug/deps/libthiserror-cba291f4019b0e25.rmeta new file mode 100644 index 0000000..f317fd7 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libthiserror-cba291f4019b0e25.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libthiserror_impl-dbd6ea0bbaf0a8bd.so b/examples/leptos_axum/target/debug/deps/libthiserror_impl-dbd6ea0bbaf0a8bd.so new file mode 100755 index 0000000..fb07274 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libthiserror_impl-dbd6ea0bbaf0a8bd.so differ diff --git a/examples/leptos_axum/target/debug/deps/libthiserror_impl-df72f8777f2acb58.so b/examples/leptos_axum/target/debug/deps/libthiserror_impl-df72f8777f2acb58.so new file mode 100755 index 0000000..7b13090 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libthiserror_impl-df72f8777f2acb58.so differ diff --git a/examples/leptos_axum/target/debug/deps/libthrow_error-156ad5a38fc20f91.rmeta b/examples/leptos_axum/target/debug/deps/libthrow_error-156ad5a38fc20f91.rmeta new file mode 100644 index 0000000..40b6e15 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libthrow_error-156ad5a38fc20f91.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libtinystr-6fb5cc0d7402e501.rmeta b/examples/leptos_axum/target/debug/deps/libtinystr-6fb5cc0d7402e501.rmeta new file mode 100644 index 0000000..7823f65 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libtinystr-6fb5cc0d7402e501.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libtoml-e18abd53e8e51c41.rmeta b/examples/leptos_axum/target/debug/deps/libtoml-e18abd53e8e51c41.rmeta new file mode 100644 index 0000000..d60e806 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libtoml-e18abd53e8e51c41.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libtoml_datetime-80b76006e1528987.rmeta b/examples/leptos_axum/target/debug/deps/libtoml_datetime-80b76006e1528987.rmeta new file mode 100644 index 0000000..f641f28 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libtoml_datetime-80b76006e1528987.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libtoml_parser-ea9a852d31ef2200.rmeta b/examples/leptos_axum/target/debug/deps/libtoml_parser-ea9a852d31ef2200.rmeta new file mode 100644 index 0000000..bc09fce Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libtoml_parser-ea9a852d31ef2200.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libtyped_builder-28eca260de123b07.rmeta b/examples/leptos_axum/target/debug/deps/libtyped_builder-28eca260de123b07.rmeta new file mode 100644 index 0000000..e778199 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libtyped_builder-28eca260de123b07.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libtyped_builder_macro-553e68c3f7b01b3d.so b/examples/leptos_axum/target/debug/deps/libtyped_builder_macro-553e68c3f7b01b3d.so new file mode 100755 index 0000000..2335382 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libtyped_builder_macro-553e68c3f7b01b3d.so differ diff --git a/examples/leptos_axum/target/debug/deps/libtypenum-8f9fc0ce1066aff3.rlib b/examples/leptos_axum/target/debug/deps/libtypenum-8f9fc0ce1066aff3.rlib new file mode 100644 index 0000000..b93df57 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libtypenum-8f9fc0ce1066aff3.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libtypenum-8f9fc0ce1066aff3.rmeta b/examples/leptos_axum/target/debug/deps/libtypenum-8f9fc0ce1066aff3.rmeta new file mode 100644 index 0000000..2486d5a Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libtypenum-8f9fc0ce1066aff3.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libunicase-9084c5036a2e7c45.rmeta b/examples/leptos_axum/target/debug/deps/libunicase-9084c5036a2e7c45.rmeta new file mode 100644 index 0000000..490fd47 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libunicase-9084c5036a2e7c45.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libunicode_ident-300df1e961038cf8.rmeta b/examples/leptos_axum/target/debug/deps/libunicode_ident-300df1e961038cf8.rmeta new file mode 100644 index 0000000..b580e68 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libunicode_ident-300df1e961038cf8.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libunicode_ident-8443eb632a3fbe4c.rlib b/examples/leptos_axum/target/debug/deps/libunicode_ident-8443eb632a3fbe4c.rlib new file mode 100644 index 0000000..78a135e Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libunicode_ident-8443eb632a3fbe4c.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libunicode_ident-8443eb632a3fbe4c.rmeta b/examples/leptos_axum/target/debug/deps/libunicode_ident-8443eb632a3fbe4c.rmeta new file mode 100644 index 0000000..a0cdb42 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libunicode_ident-8443eb632a3fbe4c.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libunicode_segmentation-4133875fc7e1be33.rmeta b/examples/leptos_axum/target/debug/deps/libunicode_segmentation-4133875fc7e1be33.rmeta new file mode 100644 index 0000000..6ec170c Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libunicode_segmentation-4133875fc7e1be33.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libunicode_segmentation-bf39eddce8a5c245.rlib b/examples/leptos_axum/target/debug/deps/libunicode_segmentation-bf39eddce8a5c245.rlib new file mode 100644 index 0000000..28f23f0 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libunicode_segmentation-bf39eddce8a5c245.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libunicode_segmentation-bf39eddce8a5c245.rmeta b/examples/leptos_axum/target/debug/deps/libunicode_segmentation-bf39eddce8a5c245.rmeta new file mode 100644 index 0000000..3651b9e Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libunicode_segmentation-bf39eddce8a5c245.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libunicode_xid-6892f59d7e9d82fe.rlib b/examples/leptos_axum/target/debug/deps/libunicode_xid-6892f59d7e9d82fe.rlib new file mode 100644 index 0000000..3df1093 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libunicode_xid-6892f59d7e9d82fe.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libunicode_xid-6892f59d7e9d82fe.rmeta b/examples/leptos_axum/target/debug/deps/libunicode_xid-6892f59d7e9d82fe.rmeta new file mode 100644 index 0000000..4b57adc Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libunicode_xid-6892f59d7e9d82fe.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/liburl-158e7336be2744b8.rmeta b/examples/leptos_axum/target/debug/deps/liburl-158e7336be2744b8.rmeta new file mode 100644 index 0000000..58260c9 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/liburl-158e7336be2744b8.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libutf8_iter-7da21bedc099d769.rmeta b/examples/leptos_axum/target/debug/deps/libutf8_iter-7da21bedc099d769.rmeta new file mode 100644 index 0000000..a8c2d3a Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libutf8_iter-7da21bedc099d769.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libuuid-57bea931e89fc769.rlib b/examples/leptos_axum/target/debug/deps/libuuid-57bea931e89fc769.rlib new file mode 100644 index 0000000..c012200 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libuuid-57bea931e89fc769.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libuuid-57bea931e89fc769.rmeta b/examples/leptos_axum/target/debug/deps/libuuid-57bea931e89fc769.rmeta new file mode 100644 index 0000000..7b977fd Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libuuid-57bea931e89fc769.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libversion_check-48d66f356588878b.rlib b/examples/leptos_axum/target/debug/deps/libversion_check-48d66f356588878b.rlib new file mode 100644 index 0000000..85d92ee Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libversion_check-48d66f356588878b.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libversion_check-48d66f356588878b.rmeta b/examples/leptos_axum/target/debug/deps/libversion_check-48d66f356588878b.rmeta new file mode 100644 index 0000000..2566e96 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libversion_check-48d66f356588878b.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libwalkdir-7b34b40d78a41234.rlib b/examples/leptos_axum/target/debug/deps/libwalkdir-7b34b40d78a41234.rlib new file mode 100644 index 0000000..77d81fa Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libwalkdir-7b34b40d78a41234.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libwalkdir-7b34b40d78a41234.rmeta b/examples/leptos_axum/target/debug/deps/libwalkdir-7b34b40d78a41234.rmeta new file mode 100644 index 0000000..381da45 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libwalkdir-7b34b40d78a41234.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libwalkdir-b759508d8692fe17.rmeta b/examples/leptos_axum/target/debug/deps/libwalkdir-b759508d8692fe17.rmeta new file mode 100644 index 0000000..6d72cac Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libwalkdir-b759508d8692fe17.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libwasm_bindgen-f35dddcd295c2a4d.rmeta b/examples/leptos_axum/target/debug/deps/libwasm_bindgen-f35dddcd295c2a4d.rmeta new file mode 100644 index 0000000..1a3c110 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libwasm_bindgen-f35dddcd295c2a4d.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libwasm_bindgen_futures-1f435aab6a947724.rmeta b/examples/leptos_axum/target/debug/deps/libwasm_bindgen_futures-1f435aab6a947724.rmeta new file mode 100644 index 0000000..5bb293a Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libwasm_bindgen_futures-1f435aab6a947724.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libwasm_bindgen_macro-3e7e6a4728be67cc.so b/examples/leptos_axum/target/debug/deps/libwasm_bindgen_macro-3e7e6a4728be67cc.so new file mode 100755 index 0000000..dba13a7 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libwasm_bindgen_macro-3e7e6a4728be67cc.so differ diff --git a/examples/leptos_axum/target/debug/deps/libwasm_bindgen_macro_support-c8225b8a62df0abc.rlib b/examples/leptos_axum/target/debug/deps/libwasm_bindgen_macro_support-c8225b8a62df0abc.rlib new file mode 100644 index 0000000..f15bab0 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libwasm_bindgen_macro_support-c8225b8a62df0abc.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libwasm_bindgen_macro_support-c8225b8a62df0abc.rmeta b/examples/leptos_axum/target/debug/deps/libwasm_bindgen_macro_support-c8225b8a62df0abc.rmeta new file mode 100644 index 0000000..8e1047a Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libwasm_bindgen_macro_support-c8225b8a62df0abc.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libwasm_bindgen_shared-018fb7392c9481db.rmeta b/examples/leptos_axum/target/debug/deps/libwasm_bindgen_shared-018fb7392c9481db.rmeta new file mode 100644 index 0000000..753c00a Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libwasm_bindgen_shared-018fb7392c9481db.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libwasm_bindgen_shared-3197ad17e33d4bd1.rlib b/examples/leptos_axum/target/debug/deps/libwasm_bindgen_shared-3197ad17e33d4bd1.rlib new file mode 100644 index 0000000..15d8d83 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libwasm_bindgen_shared-3197ad17e33d4bd1.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libwasm_bindgen_shared-3197ad17e33d4bd1.rmeta b/examples/leptos_axum/target/debug/deps/libwasm_bindgen_shared-3197ad17e33d4bd1.rmeta new file mode 100644 index 0000000..9bebc12 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libwasm_bindgen_shared-3197ad17e33d4bd1.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libwasm_split_helpers-ab938193bf33c8b4.rmeta b/examples/leptos_axum/target/debug/deps/libwasm_split_helpers-ab938193bf33c8b4.rmeta new file mode 100644 index 0000000..581860c Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libwasm_split_helpers-ab938193bf33c8b4.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libwasm_split_macros-ae9bbb03c78f6a02.so b/examples/leptos_axum/target/debug/deps/libwasm_split_macros-ae9bbb03c78f6a02.so new file mode 100755 index 0000000..3232fd4 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libwasm_split_macros-ae9bbb03c78f6a02.so differ diff --git a/examples/leptos_axum/target/debug/deps/libwasm_streams-bb559302f70eca6a.rmeta b/examples/leptos_axum/target/debug/deps/libwasm_streams-bb559302f70eca6a.rmeta new file mode 100644 index 0000000..efda618 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libwasm_streams-bb559302f70eca6a.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libweb_sys-bc9f0b4e6ee60692.rmeta b/examples/leptos_axum/target/debug/deps/libweb_sys-bc9f0b4e6ee60692.rmeta new file mode 100644 index 0000000..df9bc21 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libweb_sys-bc9f0b4e6ee60692.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libwinnow-ef9faab41c699399.rmeta b/examples/leptos_axum/target/debug/deps/libwinnow-ef9faab41c699399.rmeta new file mode 100644 index 0000000..576b0a8 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libwinnow-ef9faab41c699399.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libwriteable-d27a59526004cf7e.rmeta b/examples/leptos_axum/target/debug/deps/libwriteable-d27a59526004cf7e.rmeta new file mode 100644 index 0000000..ce04126 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libwriteable-d27a59526004cf7e.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libxxhash_rust-7c7bdf068f7d340a.rmeta b/examples/leptos_axum/target/debug/deps/libxxhash_rust-7c7bdf068f7d340a.rmeta new file mode 100644 index 0000000..cb903d3 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libxxhash_rust-7c7bdf068f7d340a.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libxxhash_rust-c7c0988ded3db730.rlib b/examples/leptos_axum/target/debug/deps/libxxhash_rust-c7c0988ded3db730.rlib new file mode 100644 index 0000000..321c2c8 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libxxhash_rust-c7c0988ded3db730.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libxxhash_rust-c7c0988ded3db730.rmeta b/examples/leptos_axum/target/debug/deps/libxxhash_rust-c7c0988ded3db730.rmeta new file mode 100644 index 0000000..40ca45f Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libxxhash_rust-c7c0988ded3db730.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libyansi-c70c0f24defc00dc.rlib b/examples/leptos_axum/target/debug/deps/libyansi-c70c0f24defc00dc.rlib new file mode 100644 index 0000000..ad819d2 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libyansi-c70c0f24defc00dc.rlib differ diff --git a/examples/leptos_axum/target/debug/deps/libyansi-c70c0f24defc00dc.rmeta b/examples/leptos_axum/target/debug/deps/libyansi-c70c0f24defc00dc.rmeta new file mode 100644 index 0000000..a147bb8 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libyansi-c70c0f24defc00dc.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libyansi-c7e72d49211f840a.rmeta b/examples/leptos_axum/target/debug/deps/libyansi-c7e72d49211f840a.rmeta new file mode 100644 index 0000000..283a695 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libyansi-c7e72d49211f840a.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libyoke-6eff7b2f0fceec96.rmeta b/examples/leptos_axum/target/debug/deps/libyoke-6eff7b2f0fceec96.rmeta new file mode 100644 index 0000000..756ac8f Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libyoke-6eff7b2f0fceec96.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libyoke_derive-b97dc8353690e6bb.so b/examples/leptos_axum/target/debug/deps/libyoke_derive-b97dc8353690e6bb.so new file mode 100755 index 0000000..de0af29 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libyoke_derive-b97dc8353690e6bb.so differ diff --git a/examples/leptos_axum/target/debug/deps/libzerofrom-b7fd213306bba939.rmeta b/examples/leptos_axum/target/debug/deps/libzerofrom-b7fd213306bba939.rmeta new file mode 100644 index 0000000..83e61a0 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libzerofrom-b7fd213306bba939.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libzerofrom_derive-12c4527cdceeb8fd.so b/examples/leptos_axum/target/debug/deps/libzerofrom_derive-12c4527cdceeb8fd.so new file mode 100755 index 0000000..3a91c5c Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libzerofrom_derive-12c4527cdceeb8fd.so differ diff --git a/examples/leptos_axum/target/debug/deps/libzerotrie-f6b223adad647016.rmeta b/examples/leptos_axum/target/debug/deps/libzerotrie-f6b223adad647016.rmeta new file mode 100644 index 0000000..15bfc02 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libzerotrie-f6b223adad647016.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libzerovec-6a02e0511e8f8728.rmeta b/examples/leptos_axum/target/debug/deps/libzerovec-6a02e0511e8f8728.rmeta new file mode 100644 index 0000000..e14c2ac Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libzerovec-6a02e0511e8f8728.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/libzerovec_derive-596a74a191e24ba0.so b/examples/leptos_axum/target/debug/deps/libzerovec_derive-596a74a191e24ba0.so new file mode 100755 index 0000000..4a7a475 Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libzerovec_derive-596a74a191e24ba0.so differ diff --git a/examples/leptos_axum/target/debug/deps/libzmij-09764c09118bc5c9.rmeta b/examples/leptos_axum/target/debug/deps/libzmij-09764c09118bc5c9.rmeta new file mode 100644 index 0000000..1ea559a Binary files /dev/null and b/examples/leptos_axum/target/debug/deps/libzmij-09764c09118bc5c9.rmeta differ diff --git a/examples/leptos_axum/target/debug/deps/litemap-29b9b43b848af24e.d b/examples/leptos_axum/target/debug/deps/litemap-29b9b43b848af24e.d new file mode 100644 index 0000000..bd8f762 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/litemap-29b9b43b848af24e.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/litemap-29b9b43b848af24e.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/slice_impl.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/liblitemap-29b9b43b848af24e.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/slice_impl.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/litemap-0.8.2/src/store/slice_impl.rs: diff --git a/examples/leptos_axum/target/debug/deps/manyhow-82e4e7f43303c1a6.d b/examples/leptos_axum/target/debug/deps/manyhow-82e4e7f43303c1a6.d new file mode 100644 index 0000000..550531d --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/manyhow-82e4e7f43303c1a6.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/manyhow-82e4e7f43303c1a6.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/span_ranged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/macro_rules.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/parse_to_tokens.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libmanyhow-82e4e7f43303c1a6.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/span_ranged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/macro_rules.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/parse_to_tokens.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libmanyhow-82e4e7f43303c1a6.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/span_ranged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/macro_rules.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/parse_to_tokens.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/span_ranged.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/macro_rules.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-0.11.4/src/parse_to_tokens.rs: diff --git a/examples/leptos_axum/target/debug/deps/manyhow_macros-5ad4455a860de2df.d b/examples/leptos_axum/target/debug/deps/manyhow_macros-5ad4455a860de2df.d new file mode 100644 index 0000000..9005188 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/manyhow_macros-5ad4455a860de2df.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/manyhow_macros-5ad4455a860de2df.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-macros-0.11.4/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libmanyhow_macros-5ad4455a860de2df.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-macros-0.11.4/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/manyhow-macros-0.11.4/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/memchr-a34ee5341fb0ce7e.d b/examples/leptos_axum/target/debug/deps/memchr-a34ee5341fb0ce7e.d new file mode 100644 index 0000000..4e15914 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/memchr-a34ee5341fb0ce7e.d @@ -0,0 +1,31 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/memchr-a34ee5341fb0ce7e.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/packedpair/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/packedpair/default_rank.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/rabinkarp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/shiftor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/twoway.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/packedpair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/packedpair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/packedpair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/cow.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memmem/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memmem/searcher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/vector.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libmemchr-a34ee5341fb0ce7e.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/packedpair/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/packedpair/default_rank.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/rabinkarp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/shiftor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/twoway.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/packedpair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/packedpair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/packedpair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/cow.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memmem/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memmem/searcher.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/vector.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/packedpair/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/packedpair/default_rank.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/rabinkarp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/shiftor.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/all/twoway.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/generic/packedpair.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/avx2/packedpair.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/sse2/packedpair.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/arch/x86_64/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/cow.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memmem/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/memmem/searcher.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.3/src/vector.rs: diff --git a/examples/leptos_axum/target/debug/deps/next_tuple-f71f28dcebae7eb3.d b/examples/leptos_axum/target/debug/deps/next_tuple-f71f28dcebae7eb3.d new file mode 100644 index 0000000..555efbe --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/next_tuple-f71f28dcebae7eb3.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/next_tuple-f71f28dcebae7eb3.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/next_tuple-0.1.0/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libnext_tuple-f71f28dcebae7eb3.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/next_tuple-0.1.0/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/next_tuple-0.1.0/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/oco_ref-80d0d41f009c456c.d b/examples/leptos_axum/target/debug/deps/oco_ref-80d0d41f009c456c.d new file mode 100644 index 0000000..5d84e6e --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/oco_ref-80d0d41f009c456c.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/oco_ref-80d0d41f009c456c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/oco_ref-0.2.1/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/liboco_ref-80d0d41f009c456c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/oco_ref-0.2.1/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/oco_ref-0.2.1/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/once_cell-e21d0fc8c5ea8c72.d b/examples/leptos_axum/target/debug/deps/once_cell-e21d0fc8c5ea8c72.d new file mode 100644 index 0000000..291510d --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/once_cell-e21d0fc8c5ea8c72.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/once_cell-e21d0fc8c5ea8c72.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libonce_cell-e21d0fc8c5ea8c72.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/or_poisoned-59a0b95671bc341c.d b/examples/leptos_axum/target/debug/deps/or_poisoned-59a0b95671bc341c.d new file mode 100644 index 0000000..b66ccda --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/or_poisoned-59a0b95671bc341c.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/or_poisoned-59a0b95671bc341c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/or_poisoned-0.1.0/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libor_poisoned-59a0b95671bc341c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/or_poisoned-0.1.0/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/or_poisoned-0.1.0/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/or_poisoned-aa8498de2e6ec10a.d b/examples/leptos_axum/target/debug/deps/or_poisoned-aa8498de2e6ec10a.d new file mode 100644 index 0000000..02d547e --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/or_poisoned-aa8498de2e6ec10a.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/or_poisoned-aa8498de2e6ec10a.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/or_poisoned-0.1.0/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libor_poisoned-aa8498de2e6ec10a.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/or_poisoned-0.1.0/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libor_poisoned-aa8498de2e6ec10a.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/or_poisoned-0.1.0/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/or_poisoned-0.1.0/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/parking-a40adc58bb78b1ed.d b/examples/leptos_axum/target/debug/deps/parking-a40adc58bb78b1ed.d new file mode 100644 index 0000000..c8d3104 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/parking-a40adc58bb78b1ed.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/parking-a40adc58bb78b1ed.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking-2.2.1/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libparking-a40adc58bb78b1ed.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking-2.2.1/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking-2.2.1/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/paste-a03d36d0470502fc.d b/examples/leptos_axum/target/debug/deps/paste-a03d36d0470502fc.d new file mode 100644 index 0000000..48508fe --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/paste-a03d36d0470502fc.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/paste-a03d36d0470502fc.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/src/segment.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libpaste-a03d36d0470502fc.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/src/segment.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/src/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/paste-1.0.15/src/segment.rs: diff --git a/examples/leptos_axum/target/debug/deps/pathdiff-0450d8a12634d549.d b/examples/leptos_axum/target/debug/deps/pathdiff-0450d8a12634d549.d new file mode 100644 index 0000000..617d26e --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/pathdiff-0450d8a12634d549.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/pathdiff-0450d8a12634d549.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathdiff-0.2.3/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libpathdiff-0450d8a12634d549.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathdiff-0.2.3/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pathdiff-0.2.3/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/percent_encoding-fdfc253f68ee3774.d b/examples/leptos_axum/target/debug/deps/percent_encoding-fdfc253f68ee3774.d new file mode 100644 index 0000000..1ac20ce --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/percent_encoding-fdfc253f68ee3774.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/percent_encoding-fdfc253f68ee3774.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/ascii_set.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libpercent_encoding-fdfc253f68ee3774.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/ascii_set.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/percent-encoding-2.3.2/src/ascii_set.rs: diff --git a/examples/leptos_axum/target/debug/deps/pin_project-066a22f9f454b2d1.d b/examples/leptos_axum/target/debug/deps/pin_project-066a22f9f454b2d1.d new file mode 100644 index 0000000..c441a02 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/pin_project-066a22f9f454b2d1.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/pin_project-066a22f9f454b2d1.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.13/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libpin_project-066a22f9f454b2d1.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.13/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-1.1.13/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/pin_project_internal-1aab316fb5a08cbd.d b/examples/leptos_axum/target/debug/deps/pin_project_internal-1aab316fb5a08cbd.d new file mode 100644 index 0000000..2fa6b3e --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/pin_project_internal-1aab316fb5a08cbd.d @@ -0,0 +1,12 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/pin_project_internal-1aab316fb5a08cbd.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/pin_project/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/pin_project/args.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/pin_project/attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/pin_project/derive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/pinned_drop.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libpin_project_internal-1aab316fb5a08cbd.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/pin_project/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/pin_project/args.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/pin_project/attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/pin_project/derive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/pinned_drop.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/pin_project/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/pin_project/args.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/pin_project/attribute.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/pin_project/derive.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-internal-1.1.13/src/pinned_drop.rs: diff --git a/examples/leptos_axum/target/debug/deps/pin_project_lite-e9d4ca73b9a6a34c.d b/examples/leptos_axum/target/debug/deps/pin_project_lite-e9d4ca73b9a6a34c.d new file mode 100644 index 0000000..32ff7f3 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/pin_project_lite-e9d4ca73b9a6a34c.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/pin_project_lite-e9d4ca73b9a6a34c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.17/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libpin_project_lite-e9d4ca73b9a6a34c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.17/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pin-project-lite-0.2.17/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/potential_utf-d52d6a81c5b4e055.d b/examples/leptos_axum/target/debug/deps/potential_utf-d52d6a81c5b4e055.d new file mode 100644 index 0000000..f5399fa --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/potential_utf-d52d6a81c5b4e055.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/potential_utf-d52d6a81c5b4e055.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/uchar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/ustr.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libpotential_utf-d52d6a81c5b4e055.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/uchar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/ustr.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/uchar.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/potential_utf-0.1.5/src/ustr.rs: diff --git a/examples/leptos_axum/target/debug/deps/prettyplease-5739b8da4b325404.d b/examples/leptos_axum/target/debug/deps/prettyplease-5739b8da4b325404.d new file mode 100644 index 0000000..27c7739 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/prettyplease-5739b8da4b325404.d @@ -0,0 +1,28 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/prettyplease-5739b8da4b325404.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/algorithm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/convenience.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/ring.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/ty.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libprettyplease-5739b8da4b325404.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/algorithm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/convenience.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/ring.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/ty.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libprettyplease-5739b8da4b325404.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/algorithm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/convenience.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/ring.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/ty.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/algorithm.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/classify.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/convenience.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/data.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/expr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/file.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/fixup.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/generics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/item.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lifetime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/lit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/mac.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/pat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/path.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/precedence.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/ring.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/stmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/token.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/prettyplease-0.2.37/src/ty.rs: diff --git a/examples/leptos_axum/target/debug/deps/proc_macro2-79e912e14b1f6010.d b/examples/leptos_axum/target/debug/deps/proc_macro2-79e912e14b1f6010.d new file mode 100644 index 0000000..909e1af --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/proc_macro2-79e912e14b1f6010.d @@ -0,0 +1,18 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/proc_macro2-79e912e14b1f6010.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/marker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_location.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/rcvec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/detection.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/extra.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/wrapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/location.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libproc_macro2-79e912e14b1f6010.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/marker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_location.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/rcvec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/detection.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/extra.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/wrapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/location.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libproc_macro2-79e912e14b1f6010.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/marker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_location.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/rcvec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/detection.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/extra.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/wrapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/location.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/marker.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_file.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_location.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/rcvec.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/detection.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/fallback.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/extra.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/wrapper.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/location.rs: diff --git a/examples/leptos_axum/target/debug/deps/proc_macro2-e3b6262e565428ce.d b/examples/leptos_axum/target/debug/deps/proc_macro2-e3b6262e565428ce.d new file mode 100644 index 0000000..f4c704e --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/proc_macro2-e3b6262e565428ce.d @@ -0,0 +1,16 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/proc_macro2-e3b6262e565428ce.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/marker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_location.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/rcvec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/detection.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/extra.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/wrapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/location.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libproc_macro2-e3b6262e565428ce.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/marker.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_location.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/rcvec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/detection.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/extra.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/wrapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/location.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/marker.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_file.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/probe/proc_macro_span_location.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/rcvec.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/detection.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/fallback.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/extra.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/wrapper.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.107/src/location.rs: diff --git a/examples/leptos_axum/target/debug/deps/proc_macro2_diagnostics-a886e7c0b05f5ffa.d b/examples/leptos_axum/target/debug/deps/proc_macro2_diagnostics-a886e7c0b05f5ffa.d new file mode 100644 index 0000000..ee8b36d --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/proc_macro2_diagnostics-a886e7c0b05f5ffa.d @@ -0,0 +1,10 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/proc_macro2_diagnostics-a886e7c0b05f5ffa.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/diagnostic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/line.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libproc_macro2_diagnostics-a886e7c0b05f5ffa.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/diagnostic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/line.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libproc_macro2_diagnostics-a886e7c0b05f5ffa.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/diagnostic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/line.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/diagnostic.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/line.rs: diff --git a/examples/leptos_axum/target/debug/deps/proc_macro2_diagnostics-ffc40497011c51f6.d b/examples/leptos_axum/target/debug/deps/proc_macro2_diagnostics-ffc40497011c51f6.d new file mode 100644 index 0000000..2789a1b --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/proc_macro2_diagnostics-ffc40497011c51f6.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/proc_macro2_diagnostics-ffc40497011c51f6.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/diagnostic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/line.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libproc_macro2_diagnostics-ffc40497011c51f6.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/diagnostic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/line.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/diagnostic.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-diagnostics-0.10.1/src/line.rs: diff --git a/examples/leptos_axum/target/debug/deps/proc_macro_error2-75623c9efb82d0bb.d b/examples/leptos_axum/target/debug/deps/proc_macro_error2-75623c9efb82d0bb.d new file mode 100644 index 0000000..c3a56ba --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/proc_macro_error2-75623c9efb82d0bb.d @@ -0,0 +1,12 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/proc_macro_error2-75623c9efb82d0bb.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/dummy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/diagnostic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/sealed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/imp/fallback.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libproc_macro_error2-75623c9efb82d0bb.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/dummy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/diagnostic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/sealed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/imp/fallback.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libproc_macro_error2-75623c9efb82d0bb.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/dummy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/diagnostic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/sealed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/imp/fallback.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/dummy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/diagnostic.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/sealed.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error2-2.0.1/src/imp/fallback.rs: diff --git a/examples/leptos_axum/target/debug/deps/proc_macro_error_attr2-e44351d03ab071cf.d b/examples/leptos_axum/target/debug/deps/proc_macro_error_attr2-e44351d03ab071cf.d new file mode 100644 index 0000000..5ad37f3 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/proc_macro_error_attr2-e44351d03ab071cf.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/proc_macro_error_attr2-e44351d03ab071cf.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/settings.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libproc_macro_error_attr2-e44351d03ab071cf.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/settings.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-error-attr2-2.0.0/src/settings.rs: diff --git a/examples/leptos_axum/target/debug/deps/proc_macro_utils-a986edbc0857ad6e.d b/examples/leptos_axum/target/debug/deps/proc_macro_utils-a986edbc0857ad6e.d new file mode 100644 index 0000000..a395e0e --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/proc_macro_utils-a986edbc0857ad6e.d @@ -0,0 +1,10 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/proc_macro_utils-a986edbc0857ad6e.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-utils-0.10.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-utils-0.10.0/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-utils-0.10.0/src/assert.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-utils-0.10.0/src/__private.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libproc_macro_utils-a986edbc0857ad6e.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-utils-0.10.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-utils-0.10.0/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-utils-0.10.0/src/assert.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-utils-0.10.0/src/__private.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libproc_macro_utils-a986edbc0857ad6e.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-utils-0.10.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-utils-0.10.0/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-utils-0.10.0/src/assert.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-utils-0.10.0/src/__private.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-utils-0.10.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-utils-0.10.0/src/parser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-utils-0.10.0/src/assert.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro-utils-0.10.0/src/__private.rs: diff --git a/examples/leptos_axum/target/debug/deps/pulldown_cmark-ec91219f5ced9d48.d b/examples/leptos_axum/target/debug/deps/pulldown_cmark-ec91219f5ced9d48.d new file mode 100644 index 0000000..d0e0be1 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/pulldown_cmark-ec91219f5ced9d48.d @@ -0,0 +1,15 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/pulldown_cmark-ec91219f5ced9d48.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/html.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/entities.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/firstpass.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/linklabel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/puncttable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/scanners.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/strings.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/tree.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libpulldown_cmark-ec91219f5ced9d48.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/html.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/entities.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/firstpass.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/linklabel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/puncttable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/scanners.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/strings.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/tree.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/html.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/entities.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/firstpass.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/linklabel.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/puncttable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/scanners.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/strings.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-0.12.2/src/tree.rs: diff --git a/examples/leptos_axum/target/debug/deps/pulldown_cmark_escape-34c9859aada7cd72.d b/examples/leptos_axum/target/debug/deps/pulldown_cmark_escape-34c9859aada7cd72.d new file mode 100644 index 0000000..cbf6dbe --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/pulldown_cmark_escape-34c9859aada7cd72.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/pulldown_cmark_escape-34c9859aada7cd72.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-escape-0.11.0/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libpulldown_cmark_escape-34c9859aada7cd72.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-escape-0.11.0/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/pulldown-cmark-escape-0.11.0/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/quote-415476b3bd7e2291.d b/examples/leptos_axum/target/debug/deps/quote-415476b3bd7e2291.d new file mode 100644 index 0000000..a0675b6 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/quote-415476b3bd7e2291.d @@ -0,0 +1,13 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/quote-415476b3bd7e2291.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ident_fragment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/to_tokens.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/spanned.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libquote-415476b3bd7e2291.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ident_fragment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/to_tokens.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/spanned.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libquote-415476b3bd7e2291.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ident_fragment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/to_tokens.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/spanned.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/format.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ident_fragment.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/to_tokens.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/runtime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/spanned.rs: diff --git a/examples/leptos_axum/target/debug/deps/quote-4d9766c089a67192.d b/examples/leptos_axum/target/debug/deps/quote-4d9766c089a67192.d new file mode 100644 index 0000000..40ecc29 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/quote-4d9766c089a67192.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/quote-4d9766c089a67192.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ident_fragment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/to_tokens.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/spanned.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libquote-4d9766c089a67192.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ident_fragment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/to_tokens.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/runtime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/spanned.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/format.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/ident_fragment.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/to_tokens.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/runtime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.47/src/spanned.rs: diff --git a/examples/leptos_axum/target/debug/deps/quote_use-3daf6b0ad607ce87.d b/examples/leptos_axum/target/debug/deps/quote_use-3daf6b0ad607ce87.d new file mode 100644 index 0000000..1ba9741 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/quote_use-3daf6b0ad607ce87.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/quote_use-3daf6b0ad607ce87.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-0.8.4/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libquote_use-3daf6b0ad607ce87.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-0.8.4/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libquote_use-3daf6b0ad607ce87.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-0.8.4/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-0.8.4/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/quote_use_macros-cb61ff89967612f9.d b/examples/leptos_axum/target/debug/deps/quote_use_macros-cb61ff89967612f9.d new file mode 100644 index 0000000..bff8a0a --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/quote_use_macros-cb61ff89967612f9.d @@ -0,0 +1,10 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/quote_use_macros-cb61ff89967612f9.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/prelude.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/use_parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/prelude/core.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/prelude/std.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/prelude/2021.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libquote_use_macros-cb61ff89967612f9.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/prelude.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/use_parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/prelude/core.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/prelude/std.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/prelude/2021.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/prelude.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/use_parser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/prelude/core.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/prelude/std.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-use-macros-0.8.4/src/prelude/2021.rs: diff --git a/examples/leptos_axum/target/debug/deps/reactive_graph-0251d5e0bdcb3545.d b/examples/leptos_axum/target/debug/deps/reactive_graph-0251d5e0bdcb3545.d new file mode 100644 index 0000000..0d821ac --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/reactive_graph-0251d5e0bdcb3545.d @@ -0,0 +1,58 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/reactive_graph-0251d5e0bdcb3545.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/actions/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/actions/action.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/actions/multi_action.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/channel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/arc_memo.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/async_derived/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/async_derived/arc_async_derived.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/async_derived/async_derived.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/async_derived/future_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/async_derived/inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/memo.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/selector.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/diagnostics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect/effect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect/effect_function.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect/immediate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect/inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect/render_effect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/graph.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/graph/node.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/graph/sets.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/graph/source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/graph/subscriber.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/arc_stored_value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/arena.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/arena_item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/context.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/storage.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/stored_value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/send_wrapper_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/serde.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/arc_read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/arc_rw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/arc_trigger.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/arc_write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/guards.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/mapped.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/rw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/subscriber_traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/trigger.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/trait_options.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/transition.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/wrappers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/into_reactive_value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/callback.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libreactive_graph-0251d5e0bdcb3545.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/actions/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/actions/action.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/actions/multi_action.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/channel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/arc_memo.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/async_derived/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/async_derived/arc_async_derived.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/async_derived/async_derived.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/async_derived/future_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/async_derived/inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/memo.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/selector.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/diagnostics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect/effect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect/effect_function.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect/immediate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect/inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect/render_effect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/graph.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/graph/node.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/graph/sets.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/graph/source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/graph/subscriber.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/arc_stored_value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/arena.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/arena_item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/context.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/storage.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/stored_value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/send_wrapper_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/serde.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/arc_read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/arc_rw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/arc_trigger.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/arc_write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/guards.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/mapped.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/rw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/subscriber_traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/trigger.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/trait_options.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/transition.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/wrappers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/into_reactive_value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/callback.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/actions/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/actions/action.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/actions/multi_action.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/channel.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/arc_memo.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/async_derived/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/async_derived/arc_async_derived.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/async_derived/async_derived.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/async_derived/future_impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/async_derived/inner.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/inner.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/memo.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/computed/selector.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/diagnostics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect/effect.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect/effect_function.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect/immediate.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect/inner.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/effect/render_effect.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/graph.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/graph/node.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/graph/sets.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/graph/source.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/graph/subscriber.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/arc_stored_value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/arena.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/arena_item.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/context.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/storage.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/owner/stored_value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/send_wrapper_ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/serde.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/arc_read.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/arc_rw.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/arc_trigger.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/arc_write.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/guards.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/mapped.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/read.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/rw.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/subscriber_traits.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/trigger.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/signal/write.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/trait_options.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/traits.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/transition.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/wrappers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/into_reactive_value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_graph-0.2.14/src/callback.rs: diff --git a/examples/leptos_axum/target/debug/deps/reactive_stores-0ea30f40a25a9707.d b/examples/leptos_axum/target/debug/deps/reactive_stores-0ea30f40a25a9707.d new file mode 100644 index 0000000..bdd4dbf --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/reactive_stores-0ea30f40a25a9707.d @@ -0,0 +1,16 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/reactive_stores-0ea30f40a25a9707.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/arc_field.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/deref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/field.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/keyed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/len.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/patch.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/store_field.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/subfield.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libreactive_stores-0ea30f40a25a9707.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/arc_field.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/deref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/field.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/keyed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/len.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/patch.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/store_field.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/subfield.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/arc_field.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/deref.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/field.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/keyed.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/len.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/option.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/patch.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/path.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/store_field.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores-0.4.3/src/subfield.rs: diff --git a/examples/leptos_axum/target/debug/deps/reactive_stores_macro-a7aec4699ad4e2e5.d b/examples/leptos_axum/target/debug/deps/reactive_stores_macro-a7aec4699ad4e2e5.d new file mode 100644 index 0000000..5af68b9 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/reactive_stores_macro-a7aec4699ad4e2e5.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/reactive_stores_macro-a7aec4699ad4e2e5.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores_macro-0.4.3/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libreactive_stores_macro-a7aec4699ad4e2e5.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores_macro-0.4.3/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/reactive_stores_macro-0.4.3/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/regex-fb6df73c4dd5bc61.d b/examples/leptos_axum/target/debug/deps/regex-fb6df73c4dd5bc61.d new file mode 100644 index 0000000..119edcc --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/regex-fb6df73c4dd5bc61.d @@ -0,0 +1,15 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/regex-fb6df73c4dd5bc61.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/builders.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/find_byte.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/string.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libregex-fb6df73c4dd5bc61.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/builders.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/find_byte.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/string.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/builders.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/bytes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/find_byte.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/bytes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regex/string.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/bytes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.13.1/src/regexset/string.rs: diff --git a/examples/leptos_axum/target/debug/deps/regex_automata-0b184fe899a532d8.d b/examples/leptos_axum/target/debug/deps/regex_automata-0b184fe899a532d8.d new file mode 100644 index 0000000..5df865c --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/regex_automata-0b184fe899a532d8.d @@ -0,0 +1,65 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/regex_automata-0b184fe899a532d8.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/onepass.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/remapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/dfa.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/id.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/regex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/search.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/limited.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/literal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/prefix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/regex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/reverse_inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/reverse_suffix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/stopat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/strategy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/wrappers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/backtrack.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/compiler.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/literal_trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/nfa.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/pikevm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/range_trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/alphabet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/captures.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/escape.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/interpolate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/lazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/look.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/pool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/aho_corasick.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/byteset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memmem.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/teddy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/start.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/syntax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/wire.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/determinize/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/determinize/state.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/empty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/search.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/sparse_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/unicode_data/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/utf8.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libregex_automata-0b184fe899a532d8.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/onepass.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/remapper.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/dfa.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/id.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/regex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/search.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/limited.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/literal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/prefix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/regex.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/reverse_inner.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/reverse_suffix.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/stopat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/strategy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/wrappers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/backtrack.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/compiler.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/literal_trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/nfa.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/pikevm.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/range_trie.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/alphabet.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/captures.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/escape.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/interpolate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/lazy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/look.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/pool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/aho_corasick.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/byteset.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memmem.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/teddy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/start.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/syntax.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/wire.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/determinize/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/determinize/state.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/empty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/memchr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/search.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/sparse_set.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/unicode_data/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/utf8.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/onepass.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/dfa/remapper.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/dfa.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/id.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/regex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/hybrid/search.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/limited.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/literal.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/prefix.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/regex.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/reverse_inner.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/reverse_suffix.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/stopat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/strategy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/meta/wrappers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/backtrack.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/builder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/compiler.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/literal_trie.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/nfa.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/pikevm.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/nfa/thompson/range_trie.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/alphabet.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/captures.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/escape.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/interpolate.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/lazy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/look.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/pool.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/aho_corasick.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/byteset.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/memmem.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/prefilter/teddy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/primitives.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/start.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/syntax.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/wire.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/determinize/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/determinize/state.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/empty.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/int.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/memchr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/search.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/sparse_set.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/unicode_data/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.16/src/util/utf8.rs: diff --git a/examples/leptos_axum/target/debug/deps/regex_syntax-adce5f78d8a76588.d b/examples/leptos_axum/target/debug/deps/regex_syntax-adce5f78d8a76588.d new file mode 100644 index 0000000..7d5b6e0 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/regex_syntax-adce5f78d8a76588.d @@ -0,0 +1,35 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/regex_syntax-adce5f78d8a76588.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/visitor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/interval.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/literal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/translate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/visitor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/rank.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/age.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/case_folding_simple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/general_category.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/grapheme_cluster_break.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/perl_word.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_bool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_names.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_values.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/script_extension.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/sentence_break.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/word_break.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/utf8.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libregex_syntax-adce5f78d8a76588.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/visitor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/interval.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/literal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/translate.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/visitor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/rank.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/age.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/case_folding_simple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/general_category.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/grapheme_cluster_break.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/perl_word.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_bool.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_names.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_values.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/script.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/script_extension.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/sentence_break.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/word_break.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/utf8.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/print.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/ast/visitor.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/debug.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/either.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/interval.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/literal.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/print.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/translate.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/hir/visitor.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/parser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/rank.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/age.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/case_folding_simple.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/general_category.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/grapheme_cluster_break.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/perl_word.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_bool.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_names.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/property_values.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/script.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/script_extension.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/sentence_break.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/unicode_tables/word_break.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.11/src/utf8.rs: diff --git a/examples/leptos_axum/target/debug/deps/rstml-65a0d14437a81434.d b/examples/leptos_axum/target/debug/deps/rstml-65a0d14437a81434.d new file mode 100644 index 0000000..ec051ea --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/rstml-65a0d14437a81434.d @@ -0,0 +1,20 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/rstml-65a0d14437a81434.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/config.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/atoms.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/node_name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/node_value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/parser_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/raw_text.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/parser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/parser/recoverable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/visitor.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/librstml-65a0d14437a81434.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/config.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/atoms.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/node_name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/node_value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/parser_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/raw_text.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/parser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/parser/recoverable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/visitor.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/librstml-65a0d14437a81434.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/config.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/atoms.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/node_name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/node_value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/parser_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/raw_text.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/parser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/parser/recoverable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/visitor.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/config.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/atoms.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/attribute.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/node_name.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/node_value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/parser_ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/raw_text.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/parser/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/parser/recoverable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/visitor.rs: diff --git a/examples/leptos_axum/target/debug/deps/rstml-e3b1e4ea0fef1ba1.d b/examples/leptos_axum/target/debug/deps/rstml-e3b1e4ea0fef1ba1.d new file mode 100644 index 0000000..a44f458 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/rstml-e3b1e4ea0fef1ba1.d @@ -0,0 +1,18 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/rstml-e3b1e4ea0fef1ba1.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/config.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/atoms.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/node_name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/node_value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/parser_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/raw_text.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/parser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/parser/recoverable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/visitor.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/librstml-e3b1e4ea0fef1ba1.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/config.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/atoms.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/node_name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/node_value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/parser_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/raw_text.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/parser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/parser/recoverable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/visitor.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/config.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/atoms.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/attribute.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/node_name.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/node_value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/parser_ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/node/raw_text.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/parser/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/parser/recoverable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rstml-0.12.1/src/visitor.rs: diff --git a/examples/leptos_axum/target/debug/deps/rustc_hash-f07fb1533a14f5b3.d b/examples/leptos_axum/target/debug/deps/rustc_hash-f07fb1533a14f5b3.d new file mode 100644 index 0000000..a178d5f --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/rustc_hash-f07fb1533a14f5b3.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/rustc_hash-f07fb1533a14f5b3.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-2.1.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-2.1.3/src/seeded_state.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/librustc_hash-f07fb1533a14f5b3.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-2.1.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-2.1.3/src/seeded_state.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-2.1.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc-hash-2.1.3/src/seeded_state.rs: diff --git a/examples/leptos_axum/target/debug/deps/rustc_version-723d3e5f09fa73a4.d b/examples/leptos_axum/target/debug/deps/rustc_version-723d3e5f09fa73a4.d new file mode 100644 index 0000000..cf623d3 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/rustc_version-723d3e5f09fa73a4.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/rustc_version-723d3e5f09fa73a4.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/librustc_version-723d3e5f09fa73a4.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/librustc_version-723d3e5f09fa73a4.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustc_version-0.4.1/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/rustversion-d7df6ce16ce770b8.d b/examples/leptos_axum/target/debug/deps/rustversion-d7df6ce16ce770b8.d new file mode 100644 index 0000000..bc663a1 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/rustversion-d7df6ce16ce770b8.d @@ -0,0 +1,20 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/rustversion-d7df6ce16ce770b8.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/bound.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/constfn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/date.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/expand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/release.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/time.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/version.rs /home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/out/version.expr + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/librustversion-d7df6ce16ce770b8.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/bound.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/constfn.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/date.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/expand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/release.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/time.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/version.rs /home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/out/version.expr + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/bound.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/constfn.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/date.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/expand.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/expr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/release.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/time.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/token.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rustversion-1.0.23/src/version.rs: +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/out/version.expr: + +# env-dep:OUT_DIR=/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/rustversion-313fded5362961f8/out diff --git a/examples/leptos_axum/target/debug/deps/same_file-34186455c5787638.d b/examples/leptos_axum/target/debug/deps/same_file-34186455c5787638.d new file mode 100644 index 0000000..5c78fef --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/same_file-34186455c5787638.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/same_file-34186455c5787638.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/unix.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsame_file-34186455c5787638.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/unix.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/unix.rs: diff --git a/examples/leptos_axum/target/debug/deps/same_file-9be869ba4fbf1608.d b/examples/leptos_axum/target/debug/deps/same_file-9be869ba4fbf1608.d new file mode 100644 index 0000000..765f2db --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/same_file-9be869ba4fbf1608.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/same_file-9be869ba4fbf1608.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/unix.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsame_file-9be869ba4fbf1608.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/unix.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsame_file-9be869ba4fbf1608.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/unix.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/unix.rs: diff --git a/examples/leptos_axum/target/debug/deps/semver-de5fcdb836bb7c55.d b/examples/leptos_axum/target/debug/deps/semver-de5fcdb836bb7c55.d new file mode 100644 index 0000000..2b66416 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/semver-de5fcdb836bb7c55.d @@ -0,0 +1,13 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/semver-de5fcdb836bb7c55.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/eval.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/identifier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/parse.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsemver-de5fcdb836bb7c55.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/eval.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/identifier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/parse.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsemver-de5fcdb836bb7c55.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/eval.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/identifier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/parse.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/display.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/eval.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/identifier.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/semver-1.0.28/src/parse.rs: diff --git a/examples/leptos_axum/target/debug/deps/send_wrapper-8047a4ca9c49e346.d b/examples/leptos_axum/target/debug/deps/send_wrapper-8047a4ca9c49e346.d new file mode 100644 index 0000000..c3dff19 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/send_wrapper-8047a4ca9c49e346.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/send_wrapper-8047a4ca9c49e346.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/send_wrapper-0.6.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/send_wrapper-0.6.0/src/futures.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsend_wrapper-8047a4ca9c49e346.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/send_wrapper-0.6.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/send_wrapper-0.6.0/src/futures.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/send_wrapper-0.6.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/send_wrapper-0.6.0/src/futures.rs: diff --git a/examples/leptos_axum/target/debug/deps/serde-6a3863188a9f9a41.d b/examples/leptos_axum/target/debug/deps/serde-6a3863188a9f9a41.d new file mode 100644 index 0000000..515864b --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/serde-6a3863188a9f9a41.d @@ -0,0 +1,14 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/serde-6a3863188a9f9a41.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/integer128.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/ser.rs /home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde-36b596088804c786/out/private.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libserde-6a3863188a9f9a41.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/integer128.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/ser.rs /home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde-36b596088804c786/out/private.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libserde-6a3863188a9f9a41.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/integer128.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/ser.rs /home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde-36b596088804c786/out/private.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/integer128.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/de.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/ser.rs: +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde-36b596088804c786/out/private.rs: + +# env-dep:OUT_DIR=/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde-36b596088804c786/out diff --git a/examples/leptos_axum/target/debug/deps/serde-ccb6b0576c8ee876.d b/examples/leptos_axum/target/debug/deps/serde-ccb6b0576c8ee876.d new file mode 100644 index 0000000..44cb4da --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/serde-ccb6b0576c8ee876.d @@ -0,0 +1,12 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/serde-ccb6b0576c8ee876.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/integer128.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/ser.rs /home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/out/private.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libserde-ccb6b0576c8ee876.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/integer128.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/ser.rs /home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/out/private.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/integer128.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/de.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.229/src/private/ser.rs: +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/out/private.rs: + +# env-dep:OUT_DIR=/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde-4c0952895b4988f3/out diff --git a/examples/leptos_axum/target/debug/deps/serde_core-557806e23fe5ad30.d b/examples/leptos_axum/target/debug/deps/serde_core-557806e23fe5ad30.d new file mode 100644 index 0000000..6d79b40 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/serde_core-557806e23fe5ad30.d @@ -0,0 +1,25 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/serde_core-557806e23fe5ad30.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/crate_root.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/ignored_any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impossible.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/content.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/seed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/doc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/string.rs /home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/out/private.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libserde_core-557806e23fe5ad30.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/crate_root.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/ignored_any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impossible.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/content.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/seed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/doc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/string.rs /home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/out/private.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/crate_root.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/ignored_any.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/fmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impossible.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/format.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/content.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/seed.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/doc.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/size_hint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/string.rs: +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/out/private.rs: + +# env-dep:OUT_DIR=/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_core-8c939b8b4c20c180/out diff --git a/examples/leptos_axum/target/debug/deps/serde_core-c1d5c6fac1998173.d b/examples/leptos_axum/target/debug/deps/serde_core-c1d5c6fac1998173.d new file mode 100644 index 0000000..5e5d1c6 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/serde_core-c1d5c6fac1998173.d @@ -0,0 +1,27 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/serde_core-c1d5c6fac1998173.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/crate_root.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/ignored_any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impossible.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/content.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/seed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/doc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/string.rs /home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/out/private.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libserde_core-c1d5c6fac1998173.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/crate_root.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/ignored_any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impossible.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/content.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/seed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/doc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/string.rs /home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/out/private.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libserde_core-c1d5c6fac1998173.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/crate_root.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/ignored_any.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impossible.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/format.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/content.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/seed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/doc.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/size_hint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/string.rs /home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/out/private.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/crate_root.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/ignored_any.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/de/impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/fmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/ser/impossible.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/format.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/content.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/seed.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/doc.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/size_hint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.229/src/private/string.rs: +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/out/private.rs: + +# env-dep:OUT_DIR=/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/serde_core-45b426a29b3b822a/out diff --git a/examples/leptos_axum/target/debug/deps/serde_derive-b2e6dbfaa2f4e984.d b/examples/leptos_axum/target/debug/deps/serde_derive-b2e6dbfaa2f4e984.d new file mode 100644 index 0000000..ebe3ec6 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/serde_derive-b2e6dbfaa2f4e984.d @@ -0,0 +1,34 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/serde_derive-b2e6dbfaa2f4e984.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/check.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/ctxt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/receiver.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/respan.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/symbol.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/bound.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/fragment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_adjacently.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_externally.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_internally.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_untagged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/identifier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/struct_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/tuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/unit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/deprecated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/dummy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/pretend.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/this.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libserde_derive-b2e6dbfaa2f4e984.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/name.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/case.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/check.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/ctxt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/receiver.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/respan.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/symbol.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/bound.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/fragment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_adjacently.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_externally.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_internally.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_untagged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/identifier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/struct_.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/tuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/unit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/deprecated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/dummy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/pretend.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/this.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/ast.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/name.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/case.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/check.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/ctxt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/receiver.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/respan.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/internals/symbol.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/bound.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/fragment.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_adjacently.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_externally.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_internally.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/enum_untagged.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/identifier.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/struct_.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/tuple.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/de/unit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/deprecated.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/dummy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/pretend.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/ser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.229/src/this.rs: + +# env-dep:CARGO_PKG_VERSION_PATCH=229 diff --git a/examples/leptos_axum/target/debug/deps/serde_json-87aaaa0780a68507.d b/examples/leptos_axum/target/debug/deps/serde_json-87aaaa0780a68507.d new file mode 100644 index 0000000..699f400 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/serde_json-87aaaa0780a68507.d @@ -0,0 +1,20 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/serde_json-87aaaa0780a68507.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/from.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/index.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/partial_eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/number.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/read.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libserde_json-87aaaa0780a68507.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/from.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/index.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/partial_eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/io/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/iter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/number.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/read.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/de.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/ser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/de.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/from.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/index.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/partial_eq.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/value/ser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/io/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/iter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/number.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.151/src/read.rs: diff --git a/examples/leptos_axum/target/debug/deps/serde_qs-39dd419477d9c823.d b/examples/leptos_axum/target/debug/deps/serde_qs-39dd419477d9c823.d new file mode 100644 index 0000000..d80a4d1 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/serde_qs-39dd419477d9c823.d @@ -0,0 +1,10 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/serde_qs-39dd419477d9c823.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/de/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/de/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/utils.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libserde_qs-39dd419477d9c823.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/de/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/de/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/ser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/utils.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/de/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/de/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/ser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_qs-0.15.0/src/utils.rs: diff --git a/examples/leptos_axum/target/debug/deps/serde_spanned-603cfcb9b82145f3.d b/examples/leptos_axum/target/debug/deps/serde_spanned-603cfcb9b82145f3.d new file mode 100644 index 0000000..16be131 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/serde_spanned-603cfcb9b82145f3.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/serde_spanned-603cfcb9b82145f3.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-1.1.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-1.1.1/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-1.1.1/src/de.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libserde_spanned-603cfcb9b82145f3.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-1.1.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-1.1.1/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-1.1.1/src/de.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-1.1.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-1.1.1/src/spanned.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_spanned-1.1.1/src/de.rs: diff --git a/examples/leptos_axum/target/debug/deps/server_fn-4c4d5ac1bcc4d43c.d b/examples/leptos_axum/target/debug/deps/server_fn-4c4d5ac1bcc4d43c.d new file mode 100644 index 0000000..440968e --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/server_fn-4c4d5ac1bcc4d43c.d @@ -0,0 +1,21 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/server_fn-4c4d5ac1bcc4d43c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/client.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/server.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/json.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/url.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/patch.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/post.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/put.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/middleware/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/redirect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/request/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/request/browser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/response/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/response/browser.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libserver_fn-4c4d5ac1bcc4d43c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/client.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/server.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/json.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/url.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/patch.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/post.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/put.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/middleware/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/redirect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/request/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/request/browser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/response/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/response/browser.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/client.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/server.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/json.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/url.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/patch.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/post.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/put.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/codec/stream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/middleware/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/redirect.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/request/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/request/browser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/response/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn-0.8.13/src/response/browser.rs: diff --git a/examples/leptos_axum/target/debug/deps/server_fn_macro-6f25d9de66578ee1.d b/examples/leptos_axum/target/debug/deps/server_fn_macro-6f25d9de66578ee1.d new file mode 100644 index 0000000..03d1db7 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/server_fn_macro-6f25d9de66578ee1.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/server_fn_macro-6f25d9de66578ee1.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn_macro-0.8.10/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libserver_fn_macro-6f25d9de66578ee1.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn_macro-0.8.10/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libserver_fn_macro-6f25d9de66578ee1.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn_macro-0.8.10/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn_macro-0.8.10/src/lib.rs: + +# env-dep:DISABLE_SERVER_FN_HASH +# env-dep:SERVER_FN_MOD_PATH +# env-dep:SERVER_FN_OVERRIDE_KEY diff --git a/examples/leptos_axum/target/debug/deps/server_fn_macro_default-38c732b2495e1c7a.d b/examples/leptos_axum/target/debug/deps/server_fn_macro_default-38c732b2495e1c7a.d new file mode 100644 index 0000000..39bfed6 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/server_fn_macro_default-38c732b2495e1c7a.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/server_fn_macro_default-38c732b2495e1c7a.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn_macro_default-0.8.5/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libserver_fn_macro_default-38c732b2495e1c7a.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn_macro_default-0.8.5/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/server_fn_macro_default-0.8.5/src/lib.rs: + +# env-dep:SERVER_FN_PREFIX diff --git a/examples/leptos_axum/target/debug/deps/sha2-37e5ff72d8ba56ca.d b/examples/leptos_axum/target/debug/deps/sha2-37e5ff72d8ba56ca.d new file mode 100644 index 0000000..ea5da29 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/sha2-37e5ff72d8ba56ca.d @@ -0,0 +1,15 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/sha2-37e5ff72d8ba56ca.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/core_api.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha256.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha512.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/consts.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha256/soft.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha256/x86.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha512/soft.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha512/x86.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsha2-37e5ff72d8ba56ca.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/core_api.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha256.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha512.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/consts.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha256/soft.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha256/x86.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha512/soft.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha512/x86.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsha2-37e5ff72d8ba56ca.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/core_api.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha256.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha512.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/consts.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha256/soft.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha256/x86.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha512/soft.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha512/x86.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/core_api.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha256.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha512.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/consts.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha256/soft.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha256/x86.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha512/soft.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/sha2-0.10.9/src/sha512/x86.rs: diff --git a/examples/leptos_axum/target/debug/deps/slab-5ad27fdb4344ece1.d b/examples/leptos_axum/target/debug/deps/slab-5ad27fdb4344ece1.d new file mode 100644 index 0000000..4f6e30d --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/slab-5ad27fdb4344ece1.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/slab-5ad27fdb4344ece1.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/builder.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libslab-5ad27fdb4344ece1.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/builder.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slab-0.4.12/src/builder.rs: diff --git a/examples/leptos_axum/target/debug/deps/slotmap-aec30b9d2403345c.d b/examples/leptos_axum/target/debug/deps/slotmap-aec30b9d2403345c.d new file mode 100644 index 0000000..c9a861b --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/slotmap-aec30b9d2403345c.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/slotmap-aec30b9d2403345c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/basic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/dense.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/hop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/secondary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/sparse_secondary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/util.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libslotmap-aec30b9d2403345c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/basic.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/dense.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/hop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/secondary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/sparse_secondary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/util.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/basic.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/dense.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/hop.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/secondary.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/sparse_secondary.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/slotmap-1.1.1/src/util.rs: diff --git a/examples/leptos_axum/target/debug/deps/smallvec-23b98a0cef41d0b0.d b/examples/leptos_axum/target/debug/deps/smallvec-23b98a0cef41d0b0.d new file mode 100644 index 0000000..7bbf7c8 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/smallvec-23b98a0cef41d0b0.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/smallvec-23b98a0cef41d0b0.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.2/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsmallvec-23b98a0cef41d0b0.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.2/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsmallvec-23b98a0cef41d0b0.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.2/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.2/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/smallvec-c4d256b0884ef0dd.d b/examples/leptos_axum/target/debug/deps/smallvec-c4d256b0884ef0dd.d new file mode 100644 index 0000000..6e11f81 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/smallvec-c4d256b0884ef0dd.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/smallvec-c4d256b0884ef0dd.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.2/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsmallvec-c4d256b0884ef0dd.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.2/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.2/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/stable_deref_trait-22158042bda71a4d.d b/examples/leptos_axum/target/debug/deps/stable_deref_trait-22158042bda71a4d.d new file mode 100644 index 0000000..e2bfe87 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/stable_deref_trait-22158042bda71a4d.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/stable_deref_trait-22158042bda71a4d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libstable_deref_trait-22158042bda71a4d.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/stable_deref_trait-1.2.1/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/syn-80a515ee1227163e.d b/examples/leptos_axum/target/debug/deps/syn-80a515ee1227163e.d new file mode 100644 index 0000000..c6c5331 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/syn-80a515ee1227163e.d @@ -0,0 +1,54 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/syn-80a515ee1227163e.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/group.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/bigint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/custom_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/custom_punctuation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/derive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/drops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ident.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lookahead.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/discouraged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse_macro_input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse_quote.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/punctuated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/restriction.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/sealed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/verbatim.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/whitespace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/export.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/gen/visit_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/gen/clone.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsyn-80a515ee1227163e.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/group.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/bigint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/custom_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/custom_punctuation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/derive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/drops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ident.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lookahead.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/discouraged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse_macro_input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse_quote.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/punctuated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/restriction.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/sealed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/verbatim.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/whitespace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/export.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/gen/visit_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/gen/clone.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsyn-80a515ee1227163e.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/group.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/bigint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/custom_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/custom_punctuation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/derive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/drops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ident.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lookahead.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/discouraged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse_macro_input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse_quote.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/punctuated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/restriction.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/sealed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/verbatim.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/whitespace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/export.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/gen/visit_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/gen/clone.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/group.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/token.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/bigint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/buffer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/classify.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/custom_keyword.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/custom_punctuation.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/data.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/derive.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/drops.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/expr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/file.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/fixup.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/generics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ident.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/item.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lifetime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/lookahead.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/mac.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/meta.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/op.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/discouraged.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse_macro_input.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/parse_quote.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/pat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/path.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/precedence.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/print.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/punctuated.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/restriction.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/sealed.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/span.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/spanned.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/stmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/thread.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/ty.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/verbatim.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/whitespace.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/export.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/gen/visit_mut.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-3.0.3/src/gen/clone.rs: diff --git a/examples/leptos_axum/target/debug/deps/syn-9788acc1f0629519.d b/examples/leptos_axum/target/debug/deps/syn-9788acc1f0629519.d new file mode 100644 index 0000000..3834658 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/syn-9788acc1f0629519.d @@ -0,0 +1,57 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/syn-9788acc1f0629519.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/group.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/bigint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_punctuation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/derive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/drops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ident.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lookahead.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/discouraged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_macro_input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_quote.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/punctuated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/restriction.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/sealed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/tt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/verbatim.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/whitespace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/export.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/clone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/hash.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsyn-9788acc1f0629519.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/group.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/bigint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_punctuation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/derive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/drops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ident.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lookahead.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/discouraged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_macro_input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_quote.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/punctuated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/restriction.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/sealed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/tt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/verbatim.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/whitespace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/export.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/clone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/hash.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/group.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/token.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/bigint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/buffer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/classify.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_keyword.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_punctuation.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/data.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/derive.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/drops.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/expr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/file.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/fixup.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/generics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ident.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/item.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lifetime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lookahead.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/mac.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/meta.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/op.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/discouraged.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_macro_input.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_quote.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/pat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/path.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/precedence.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/print.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/punctuated.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/restriction.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/sealed.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/span.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/spanned.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/stmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/thread.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/tt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ty.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/verbatim.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/whitespace.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/export.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit_mut.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/clone.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/debug.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/eq.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/hash.rs: diff --git a/examples/leptos_axum/target/debug/deps/syn-bc17c880c2dab633.d b/examples/leptos_axum/target/debug/deps/syn-bc17c880c2dab633.d new file mode 100644 index 0000000..fd46575 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/syn-bc17c880c2dab633.d @@ -0,0 +1,60 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/syn-bc17c880c2dab633.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/group.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/bigint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_punctuation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/derive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/drops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ident.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lookahead.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/discouraged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_macro_input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_quote.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/punctuated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/restriction.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/sealed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/tt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/verbatim.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/whitespace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/export.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/fold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/clone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/hash.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsyn-bc17c880c2dab633.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/group.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/bigint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_punctuation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/derive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/drops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ident.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lookahead.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/discouraged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_macro_input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_quote.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/punctuated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/restriction.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/sealed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/tt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/verbatim.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/whitespace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/export.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/fold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/clone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/hash.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsyn-bc17c880c2dab633.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/group.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/bigint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/buffer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/classify.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_keyword.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_punctuation.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/data.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/derive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/drops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/file.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/fixup.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ident.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/item.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lifetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lookahead.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/mac.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/discouraged.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_macro_input.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_quote.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/pat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/path.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/precedence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/print.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/punctuated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/restriction.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/sealed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/spanned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/stmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/thread.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/tt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ty.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/verbatim.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/whitespace.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/export.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/fold.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit_mut.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/clone.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/debug.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/eq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/hash.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/group.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/token.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/bigint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/buffer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/classify.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_keyword.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/custom_punctuation.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/data.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/derive.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/drops.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/expr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/file.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/fixup.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/generics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ident.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/item.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lifetime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/lookahead.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/mac.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/meta.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/op.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/discouraged.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_macro_input.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/parse_quote.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/pat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/path.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/precedence.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/print.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/punctuated.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/restriction.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/sealed.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/span.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/spanned.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/stmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/thread.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/tt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/ty.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/verbatim.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/whitespace.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/export.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/fold.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/visit_mut.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/clone.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/debug.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/eq.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.119/src/gen/hash.rs: diff --git a/examples/leptos_axum/target/debug/deps/syn_derive-d95d09ab57dc1dce.d b/examples/leptos_axum/target/debug/deps/syn_derive-d95d09ab57dc1dce.d new file mode 100644 index 0000000..03f42ef --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/syn_derive-d95d09ab57dc1dce.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/syn_derive-d95d09ab57dc1dce.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn_derive-0.2.0/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsyn_derive-d95d09ab57dc1dce.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn_derive-0.2.0/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn_derive-0.2.0/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/synstructure-9936603f6e2083cc.d b/examples/leptos_axum/target/debug/deps/synstructure-9936603f6e2083cc.d new file mode 100644 index 0000000..79a26c3 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/synstructure-9936603f6e2083cc.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/synstructure-9936603f6e2083cc.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/macros.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsynstructure-9936603f6e2083cc.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/macros.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libsynstructure-9936603f6e2083cc.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/macros.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/synstructure-0.13.2/src/macros.rs: diff --git a/examples/leptos_axum/target/debug/deps/tachys-f88c2c44c4bd69e8.d b/examples/leptos_axum/target/debug/deps/tachys-f88c2c44c4bd69e8.d new file mode 100644 index 0000000..3ec7db7 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/tachys-f88c2c44c4bd69e8.d @@ -0,0 +1,56 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/tachys-f88c2c44c4bd69e8.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/dom.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/any_attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/aria.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/custom.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/global.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/maybe_next_attr_erasure_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/class.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/directive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/element/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/element/custom.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/element/element_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/element/elements.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/element/inner_html.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/event.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/islands.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/node_ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/property.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/hydration.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/mathml/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/renderer/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/renderer/dom.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/ssr/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/svg/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/add_attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/any_view.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/error_boundary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/fragment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/iterators.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/keyed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/strings.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/template.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/tuples.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/oco.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/bind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/class.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/inner_html.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/node_ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/owned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/property.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/suspense.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/erased.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libtachys-f88c2c44c4bd69e8.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/dom.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/any_attribute.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/aria.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/custom.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/global.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/maybe_next_attr_erasure_macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/class.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/directive.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/element/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/element/custom.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/element/element_ext.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/element/elements.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/element/inner_html.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/event.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/islands.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/node_ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/property.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/hydration.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/mathml/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/renderer/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/renderer/dom.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/ssr/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/svg/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/add_attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/any_view.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/error_boundary.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/fragment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/iterators.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/keyed.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/primitives.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/strings.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/template.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/tuples.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/oco.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/bind.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/class.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/inner_html.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/node_ref.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/owned.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/property.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/suspense.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/erased.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/dom.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/any_attribute.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/aria.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/custom.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/global.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/key.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/maybe_next_attr_erasure_macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/attribute/value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/class.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/directive.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/element/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/element/custom.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/element/element_ext.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/element/elements.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/element/inner_html.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/event.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/islands.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/node_ref.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/property.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/html/style.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/hydration.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/mathml/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/renderer/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/renderer/dom.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/ssr/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/svg/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/add_attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/any_view.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/either.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/error_boundary.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/fragment.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/iterators.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/keyed.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/primitives.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/strings.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/template.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/view/tuples.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/oco.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/bind.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/class.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/inner_html.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/node_ref.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/owned.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/property.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/style.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/reactive_graph/suspense.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tachys-0.2.18/src/erased.rs: diff --git a/examples/leptos_axum/target/debug/deps/thiserror-66a678865a8647f5.d b/examples/leptos_axum/target/debug/deps/thiserror-66a678865a8647f5.d new file mode 100644 index 0000000..333c287 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/thiserror-66a678865a8647f5.d @@ -0,0 +1,14 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/thiserror-66a678865a8647f5.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/aserror.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/var.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/private.rs /home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/out/private.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libthiserror-66a678865a8647f5.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/aserror.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/var.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/private.rs /home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/out/private.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libthiserror-66a678865a8647f5.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/aserror.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/var.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/private.rs /home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/out/private.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/aserror.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/display.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/var.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/private.rs: +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/out/private.rs: + +# env-dep:OUT_DIR=/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/out diff --git a/examples/leptos_axum/target/debug/deps/thiserror-80aafabced16082d.d b/examples/leptos_axum/target/debug/deps/thiserror-80aafabced16082d.d new file mode 100644 index 0000000..64d9301 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/thiserror-80aafabced16082d.d @@ -0,0 +1,12 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/thiserror-80aafabced16082d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/aserror.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/var.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/private.rs /home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/out/private.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libthiserror-80aafabced16082d.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/aserror.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/display.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/var.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/private.rs /home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/out/private.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/aserror.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/display.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/var.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-2.0.19/src/private.rs: +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/out/private.rs: + +# env-dep:OUT_DIR=/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/build/thiserror-065d38539fa57520/out diff --git a/examples/leptos_axum/target/debug/deps/thiserror-cba291f4019b0e25.d b/examples/leptos_axum/target/debug/deps/thiserror-cba291f4019b0e25.d new file mode 100644 index 0000000..c647098 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/thiserror-cba291f4019b0e25.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/thiserror-cba291f4019b0e25.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libthiserror-cba291f4019b0e25.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs: diff --git a/examples/leptos_axum/target/debug/deps/thiserror_impl-dbd6ea0bbaf0a8bd.d b/examples/leptos_axum/target/debug/deps/thiserror_impl-dbd6ea0bbaf0a8bd.d new file mode 100644 index 0000000..2a6a312 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/thiserror_impl-dbd6ea0bbaf0a8bd.d @@ -0,0 +1,14 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/thiserror_impl-dbd6ea0bbaf0a8bd.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libthiserror_impl-dbd6ea0bbaf0a8bd.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs: diff --git a/examples/leptos_axum/target/debug/deps/thiserror_impl-df72f8777f2acb58.d b/examples/leptos_axum/target/debug/deps/thiserror_impl-df72f8777f2acb58.d new file mode 100644 index 0000000..f745bae --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/thiserror_impl-df72f8777f2acb58.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/thiserror_impl-df72f8777f2acb58.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/expand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/prop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/scan_expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/unraw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/valid.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libthiserror_impl-df72f8777f2acb58.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/expand.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/fallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/prop.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/scan_expr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/unraw.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/valid.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/ast.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/expand.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/fallback.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/fmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/generics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/prop.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/scan_expr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/unraw.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-2.0.19/src/valid.rs: + +# env-dep:CARGO_PKG_VERSION_PATCH=19 diff --git a/examples/leptos_axum/target/debug/deps/throw_error-156ad5a38fc20f91.d b/examples/leptos_axum/target/debug/deps/throw_error-156ad5a38fc20f91.d new file mode 100644 index 0000000..226c403 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/throw_error-156ad5a38fc20f91.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/throw_error-156ad5a38fc20f91.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/throw_error-0.3.1/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libthrow_error-156ad5a38fc20f91.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/throw_error-0.3.1/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/throw_error-0.3.1/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/tinystr-6fb5cc0d7402e501.d b/examples/leptos_axum/target/debug/deps/tinystr-6fb5cc0d7402e501.d new file mode 100644 index 0000000..c71b925 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/tinystr-6fb5cc0d7402e501.d @@ -0,0 +1,12 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/tinystr-6fb5cc0d7402e501.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ascii.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/asciibyte.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/int_ops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/unvalidated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ule.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libtinystr-6fb5cc0d7402e501.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ascii.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/asciibyte.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/int_ops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/unvalidated.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ule.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ascii.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/asciibyte.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/int_ops.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/unvalidated.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinystr-0.8.3/src/ule.rs: diff --git a/examples/leptos_axum/target/debug/deps/toml-e18abd53e8e51c41.d b/examples/leptos_axum/target/debug/deps/toml-e18abd53e8e51c41.d new file mode 100644 index 0000000..c78fcee --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/toml-e18abd53e8e51c41.d @@ -0,0 +1,28 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/toml-e18abd53e8e51c41.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/table.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/table_enum.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/dearray.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/detable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/devalue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/document.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/inline_table.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/ser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/ser/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/table.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libtoml-e18abd53e8e51c41.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/map.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/table.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/table_enum.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/dearray.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/detable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/devalue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/document.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/inline_table.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/key.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/value.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/ser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/ser/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/table.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/map.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/array.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/key.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/table.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/table_enum.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/deserializer/value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/array.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/dearray.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/detable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/devalue.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/document.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/inline_table.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/key.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/de/parser/value.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/ser/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/ser/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml-1.1.4+spec-1.1.0/src/table.rs: diff --git a/examples/leptos_axum/target/debug/deps/toml_datetime-80b76006e1528987.d b/examples/leptos_axum/target/debug/deps/toml_datetime-80b76006e1528987.d new file mode 100644 index 0000000..e83b400 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/toml_datetime-80b76006e1528987.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/toml_datetime-80b76006e1528987.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-1.1.1+spec-1.1.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-1.1.1+spec-1.1.0/src/datetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-1.1.1+spec-1.1.0/src/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-1.1.1+spec-1.1.0/src/ser.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libtoml_datetime-80b76006e1528987.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-1.1.1+spec-1.1.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-1.1.1+spec-1.1.0/src/datetime.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-1.1.1+spec-1.1.0/src/de.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-1.1.1+spec-1.1.0/src/ser.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-1.1.1+spec-1.1.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-1.1.1+spec-1.1.0/src/datetime.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-1.1.1+spec-1.1.0/src/de.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_datetime-1.1.1+spec-1.1.0/src/ser.rs: diff --git a/examples/leptos_axum/target/debug/deps/toml_parser-ea9a852d31ef2200.d b/examples/leptos_axum/target/debug/deps/toml_parser-ea9a852d31ef2200.d new file mode 100644 index 0000000..37d6797 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/toml_parser-ea9a852d31ef2200.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/toml_parser-ea9a852d31ef2200.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/decoder/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/decoder/scalar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/decoder/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/decoder/ws.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/lexer/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/lexer/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/parser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/parser/document.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/parser/event.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libtoml_parser-ea9a852d31ef2200.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/decoder/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/decoder/scalar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/decoder/string.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/decoder/ws.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/lexer/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/lexer/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/parser/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/parser/document.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/parser/event.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/source.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/decoder/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/decoder/scalar.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/decoder/string.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/decoder/ws.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/lexer/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/lexer/token.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/parser/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/parser/document.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/toml_parser-1.1.3+spec-1.1.0/src/parser/event.rs: diff --git a/examples/leptos_axum/target/debug/deps/typed_builder-28eca260de123b07.d b/examples/leptos_axum/target/debug/deps/typed_builder-28eca260de123b07.d new file mode 100644 index 0000000..9712ad3 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/typed_builder-28eca260de123b07.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/typed_builder-28eca260de123b07.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-0.23.2/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libtyped_builder-28eca260de123b07.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-0.23.2/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-0.23.2/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/typed_builder_macro-553e68c3f7b01b3d.d b/examples/leptos_axum/target/debug/deps/typed_builder_macro-553e68c3f7b01b3d.d new file mode 100644 index 0000000..6a41c56 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/typed_builder_macro-553e68c3f7b01b3d.d @@ -0,0 +1,10 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/typed_builder_macro-553e68c3f7b01b3d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/builder_attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/field_info.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/mutator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/struct_info.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/util.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libtyped_builder_macro-553e68c3f7b01b3d.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/builder_attr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/field_info.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/mutator.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/struct_info.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/util.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/builder_attr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/field_info.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/mutator.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/struct_info.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typed-builder-macro-0.23.2/src/util.rs: diff --git a/examples/leptos_axum/target/debug/deps/typenum-8f9fc0ce1066aff3.d b/examples/leptos_axum/target/debug/deps/typenum-8f9fc0ce1066aff3.d new file mode 100644 index 0000000..d9ce067 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/typenum-8f9fc0ce1066aff3.d @@ -0,0 +1,19 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/typenum-8f9fc0ce1066aff3.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/bit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen/consts.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/marker_traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/operator_aliases.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/private.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/type_operators.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/uint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/tuple.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libtypenum-8f9fc0ce1066aff3.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/bit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen/consts.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/marker_traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/operator_aliases.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/private.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/type_operators.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/uint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/tuple.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libtypenum-8f9fc0ce1066aff3.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/bit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen/consts.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen/op.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/int.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/marker_traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/operator_aliases.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/private.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/type_operators.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/uint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/array.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/tuple.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/bit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen/consts.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/gen/op.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/int.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/marker_traits.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/operator_aliases.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/private.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/type_operators.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/uint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/array.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/typenum-1.20.1/src/tuple.rs: diff --git a/examples/leptos_axum/target/debug/deps/unicase-9084c5036a2e7c45.d b/examples/leptos_axum/target/debug/deps/unicase-9084c5036a2e7c45.d new file mode 100644 index 0000000..42fd417 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/unicase-9084c5036a2e7c45.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/unicase-9084c5036a2e7c45.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/ascii.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/map.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libunicase-9084c5036a2e7c45.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/ascii.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/map.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/ascii.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicase-2.9.0/src/unicode/map.rs: diff --git a/examples/leptos_axum/target/debug/deps/unicode_ident-300df1e961038cf8.d b/examples/leptos_axum/target/debug/deps/unicode_ident-300df1e961038cf8.d new file mode 100644 index 0000000..aecfc24 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/unicode_ident-300df1e961038cf8.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/unicode_ident-300df1e961038cf8.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libunicode_ident-300df1e961038cf8.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs: diff --git a/examples/leptos_axum/target/debug/deps/unicode_ident-8443eb632a3fbe4c.d b/examples/leptos_axum/target/debug/deps/unicode_ident-8443eb632a3fbe4c.d new file mode 100644 index 0000000..813628a --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/unicode_ident-8443eb632a3fbe4c.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/unicode_ident-8443eb632a3fbe4c.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libunicode_ident-8443eb632a3fbe4c.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libunicode_ident-8443eb632a3fbe4c.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs: diff --git a/examples/leptos_axum/target/debug/deps/unicode_segmentation-4133875fc7e1be33.d b/examples/leptos_axum/target/debug/deps/unicode_segmentation-4133875fc7e1be33.d new file mode 100644 index 0000000..f66c084 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/unicode_segmentation-4133875fc7e1be33.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/unicode_segmentation-4133875fc7e1be33.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/grapheme.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/sentence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/word.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/tables.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libunicode_segmentation-4133875fc7e1be33.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/grapheme.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/sentence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/word.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/tables.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/grapheme.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/sentence.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/word.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/tables.rs: diff --git a/examples/leptos_axum/target/debug/deps/unicode_segmentation-bf39eddce8a5c245.d b/examples/leptos_axum/target/debug/deps/unicode_segmentation-bf39eddce8a5c245.d new file mode 100644 index 0000000..7aea35d --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/unicode_segmentation-bf39eddce8a5c245.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/unicode_segmentation-bf39eddce8a5c245.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/grapheme.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/sentence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/word.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/tables.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libunicode_segmentation-bf39eddce8a5c245.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/grapheme.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/sentence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/word.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/tables.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libunicode_segmentation-bf39eddce8a5c245.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/grapheme.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/sentence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/word.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/tables.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/grapheme.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/sentence.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/word.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-segmentation-1.13.3/src/tables.rs: diff --git a/examples/leptos_axum/target/debug/deps/unicode_xid-6892f59d7e9d82fe.d b/examples/leptos_axum/target/debug/deps/unicode_xid-6892f59d7e9d82fe.d new file mode 100644 index 0000000..08088b7 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/unicode_xid-6892f59d7e9d82fe.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/unicode_xid-6892f59d7e9d82fe.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/tables.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libunicode_xid-6892f59d7e9d82fe.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/tables.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libunicode_xid-6892f59d7e9d82fe.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/tables.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-xid-0.2.6/src/tables.rs: diff --git a/examples/leptos_axum/target/debug/deps/url-158e7336be2744b8.d b/examples/leptos_axum/target/debug/deps/url-158e7336be2744b8.d new file mode 100644 index 0000000..c1eeecc --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/url-158e7336be2744b8.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/url-158e7336be2744b8.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/host.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/origin.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/path_segments.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/slicing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/quirks.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/liburl-158e7336be2744b8.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/host.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/origin.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/path_segments.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/slicing.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/quirks.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/host.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/origin.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/parser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/path_segments.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/slicing.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/url-2.5.8/src/quirks.rs: diff --git a/examples/leptos_axum/target/debug/deps/utf8_iter-7da21bedc099d769.d b/examples/leptos_axum/target/debug/deps/utf8_iter-7da21bedc099d769.d new file mode 100644 index 0000000..17e1b7b --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/utf8_iter-7da21bedc099d769.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/utf8_iter-7da21bedc099d769.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/indices.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/report.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libutf8_iter-7da21bedc099d769.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/indices.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/report.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/indices.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/utf8_iter-1.0.4/src/report.rs: diff --git a/examples/leptos_axum/target/debug/deps/uuid-57bea931e89fc769.d b/examples/leptos_axum/target/debug/deps/uuid-57bea931e89fc769.d new file mode 100644 index 0000000..5ba7af6 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/uuid-57bea931e89fc769.d @@ -0,0 +1,17 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/uuid-57bea931e89fc769.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/non_nil.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/timestamp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/v4.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/rng.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/external.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libuuid-57bea931e89fc769.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/non_nil.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/timestamp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/v4.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/rng.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/external.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libuuid-57bea931e89fc769.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/non_nil.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/fmt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/timestamp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/v4.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/rng.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/external.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/builder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/non_nil.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/parser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/fmt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/timestamp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/v4.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/rng.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/uuid-1.24.0/src/external.rs: diff --git a/examples/leptos_axum/target/debug/deps/version_check-48d66f356588878b.d b/examples/leptos_axum/target/debug/deps/version_check-48d66f356588878b.d new file mode 100644 index 0000000..99021cd --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/version_check-48d66f356588878b.d @@ -0,0 +1,10 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/version_check-48d66f356588878b.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libversion_check-48d66f356588878b.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libversion_check-48d66f356588878b.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/version.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/channel.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/version_check-0.9.5/src/date.rs: diff --git a/examples/leptos_axum/target/debug/deps/walkdir-7b34b40d78a41234.d b/examples/leptos_axum/target/debug/deps/walkdir-7b34b40d78a41234.d new file mode 100644 index 0000000..d27b6ba --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/walkdir-7b34b40d78a41234.d @@ -0,0 +1,10 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/walkdir-7b34b40d78a41234.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/dent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/util.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libwalkdir-7b34b40d78a41234.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/dent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/util.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libwalkdir-7b34b40d78a41234.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/dent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/util.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/dent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/util.rs: diff --git a/examples/leptos_axum/target/debug/deps/walkdir-b759508d8692fe17.d b/examples/leptos_axum/target/debug/deps/walkdir-b759508d8692fe17.d new file mode 100644 index 0000000..4c2a0cb --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/walkdir-b759508d8692fe17.d @@ -0,0 +1,8 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/walkdir-b759508d8692fe17.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/dent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/util.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libwalkdir-b759508d8692fe17.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/dent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/util.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/dent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/util.rs: diff --git a/examples/leptos_axum/target/debug/deps/wasm_bindgen-f35dddcd295c2a4d.d b/examples/leptos_axum/target/debug/deps/wasm_bindgen-f35dddcd295c2a4d.d new file mode 100644 index 0000000..6b34627 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/wasm_bindgen-f35dddcd295c2a4d.d @@ -0,0 +1,19 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/wasm_bindgen-f35dddcd295c2a4d.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/closure.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/convert/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/convert/closures.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/convert/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/convert/slices.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/convert/traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/describe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/sys.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/cast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/cache/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/cache/intern.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/rt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/rt/marker.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libwasm_bindgen-f35dddcd295c2a4d.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/closure.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/convert/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/convert/closures.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/convert/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/convert/slices.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/convert/traits.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/describe.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/link.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/sys.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/cast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/cache/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/cache/intern.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/rt/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/rt/marker.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/closure.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/convert/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/convert/closures.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/convert/impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/convert/slices.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/convert/traits.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/describe.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/link.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/sys.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/cast.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/cache/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/cache/intern.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/rt/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-0.2.114/src/rt/marker.rs: diff --git a/examples/leptos_axum/target/debug/deps/wasm_bindgen_futures-1f435aab6a947724.d b/examples/leptos_axum/target/debug/deps/wasm_bindgen_futures-1f435aab6a947724.d new file mode 100644 index 0000000..09a8601 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/wasm_bindgen_futures-1f435aab6a947724.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/wasm_bindgen_futures-1f435aab6a947724.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-futures-0.4.64/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-futures-0.4.64/src/queue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-futures-0.4.64/src/task/singlethread.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libwasm_bindgen_futures-1f435aab6a947724.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-futures-0.4.64/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-futures-0.4.64/src/queue.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-futures-0.4.64/src/task/singlethread.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-futures-0.4.64/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-futures-0.4.64/src/queue.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-futures-0.4.64/src/task/singlethread.rs: diff --git a/examples/leptos_axum/target/debug/deps/wasm_bindgen_macro-3e7e6a4728be67cc.d b/examples/leptos_axum/target/debug/deps/wasm_bindgen_macro-3e7e6a4728be67cc.d new file mode 100644 index 0000000..b0f5b6e --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/wasm_bindgen_macro-3e7e6a4728be67cc.d @@ -0,0 +1,5 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/wasm_bindgen_macro-3e7e6a4728be67cc.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-0.2.114/src/lib.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libwasm_bindgen_macro-3e7e6a4728be67cc.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-0.2.114/src/lib.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-0.2.114/src/lib.rs: diff --git a/examples/leptos_axum/target/debug/deps/wasm_bindgen_macro_support-c8225b8a62df0abc.d b/examples/leptos_axum/target/debug/deps/wasm_bindgen_macro_support-c8225b8a62df0abc.d new file mode 100644 index 0000000..8c29832 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/wasm_bindgen_macro_support-c8225b8a62df0abc.d @@ -0,0 +1,14 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/wasm_bindgen_macro_support-c8225b8a62df0abc.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/codegen.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/encode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/hash.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/parser.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libwasm_bindgen_macro_support-c8225b8a62df0abc.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/codegen.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/encode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/hash.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/parser.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libwasm_bindgen_macro_support-c8225b8a62df0abc.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/ast.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/codegen.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/encode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/generics.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/hash.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/parser.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/ast.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/codegen.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/encode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/generics.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/hash.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-macro-support-0.2.114/src/parser.rs: diff --git a/examples/leptos_axum/target/debug/deps/wasm_bindgen_shared-018fb7392c9481db.d b/examples/leptos_axum/target/debug/deps/wasm_bindgen_shared-018fb7392c9481db.d new file mode 100644 index 0000000..440da7d --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/wasm_bindgen_shared-018fb7392c9481db.d @@ -0,0 +1,10 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/wasm_bindgen_shared-018fb7392c9481db.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/identifier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/tys.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libwasm_bindgen_shared-018fb7392c9481db.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/identifier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/tys.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/identifier.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/tys.rs: + +# env-dep:CARGO_PKG_VERSION=0.2.114 +# env-dep:WBG_VERSION diff --git a/examples/leptos_axum/target/debug/deps/wasm_bindgen_shared-3197ad17e33d4bd1.d b/examples/leptos_axum/target/debug/deps/wasm_bindgen_shared-3197ad17e33d4bd1.d new file mode 100644 index 0000000..fed60c6 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/wasm_bindgen_shared-3197ad17e33d4bd1.d @@ -0,0 +1,12 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/wasm_bindgen_shared-3197ad17e33d4bd1.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/identifier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/tys.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libwasm_bindgen_shared-3197ad17e33d4bd1.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/identifier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/tys.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libwasm_bindgen_shared-3197ad17e33d4bd1.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/identifier.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/tys.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/identifier.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-bindgen-shared-0.2.114/src/tys.rs: + +# env-dep:CARGO_PKG_VERSION=0.2.114 +# env-dep:WBG_VERSION diff --git a/examples/leptos_axum/target/debug/deps/wasm_split_helpers-ab938193bf33c8b4.d b/examples/leptos_axum/target/debug/deps/wasm_split_helpers-ab938193bf33c8b4.d new file mode 100644 index 0000000..495e0c1 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/wasm_split_helpers-ab938193bf33c8b4.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/wasm_split_helpers-ab938193bf33c8b4.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm_split_helpers-0.2.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm_split_helpers-0.2.3/src/rt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm_split_helpers-0.2.3/src/marker.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libwasm_split_helpers-ab938193bf33c8b4.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm_split_helpers-0.2.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm_split_helpers-0.2.3/src/rt.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm_split_helpers-0.2.3/src/marker.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm_split_helpers-0.2.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm_split_helpers-0.2.3/src/rt.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm_split_helpers-0.2.3/src/marker.rs: diff --git a/examples/leptos_axum/target/debug/deps/wasm_split_macros-ae9bbb03c78f6a02.d b/examples/leptos_axum/target/debug/deps/wasm_split_macros-ae9bbb03c78f6a02.d new file mode 100644 index 0000000..81d68a4 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/wasm_split_macros-ae9bbb03c78f6a02.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/wasm_split_macros-ae9bbb03c78f6a02.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm_split_macros-0.2.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm_split_macros-0.2.2/src/magic_constants.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libwasm_split_macros-ae9bbb03c78f6a02.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm_split_macros-0.2.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm_split_macros-0.2.2/src/magic_constants.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm_split_macros-0.2.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm_split_macros-0.2.2/src/magic_constants.rs: diff --git a/examples/leptos_axum/target/debug/deps/wasm_streams-bb559302f70eca6a.d b/examples/leptos_axum/target/debug/deps/wasm_streams-bb559302f70eca6a.d new file mode 100644 index 0000000..f2a16ad --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/wasm_streams-bb559302f70eca6a.d @@ -0,0 +1,25 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/wasm_streams-bb559302f70eca6a.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/queuing_strategy/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/queuing_strategy/sys.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/byob_reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/default_reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/into_async_read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/into_stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/into_underlying_byte_source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/into_underlying_source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/pipe_options.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/sys.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/transform/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/transform/sys.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/default_writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/into_async_write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/into_sink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/into_underlying_sink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/sys.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libwasm_streams-bb559302f70eca6a.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/queuing_strategy/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/queuing_strategy/sys.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/byob_reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/default_reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/into_async_read.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/into_stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/into_underlying_byte_source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/into_underlying_source.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/pipe_options.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/sys.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/transform/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/transform/sys.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/util.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/default_writer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/into_async_write.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/into_sink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/into_underlying_sink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/sys.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/queuing_strategy/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/queuing_strategy/sys.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/byob_reader.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/default_reader.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/into_async_read.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/into_stream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/into_underlying_byte_source.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/into_underlying_source.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/pipe_options.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/readable/sys.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/transform/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/transform/sys.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/util.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/default_writer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/into_async_write.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/into_sink.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/into_underlying_sink.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/wasm-streams-0.5.0/src/writable/sys.rs: diff --git a/examples/leptos_axum/target/debug/deps/web_sys-bc9f0b4e6ee60692.d b/examples/leptos_axum/target/debug/deps/web_sys-bc9f0b4e6ee60692.d new file mode 100644 index 0000000..74697a3 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/web_sys-bc9f0b4e6ee60692.d @@ -0,0 +1,166 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/web_sys-bc9f0b4e6ee60692.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_AbortController.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_AbortSignal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_AddEventListenerOptions.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_AnimationEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_BeforeUnloadEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_BinaryType.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Blob.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CharacterData.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ClipboardEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CloseEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CloseEventInit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Comment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CompositionEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CssStyleDeclaration.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CustomEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DeviceMotionEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DeviceOrientationEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Document.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DocumentFragment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DomStringMap.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DomTokenList.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DragEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Element.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ErrorEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Event.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_EventSource.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_EventTarget.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_FileReader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_FocusEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_FormData.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_GamepadEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HashChangeEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Headers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_History.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlAnchorElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlAreaElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlAudioElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlBaseElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlBodyElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlBrElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlButtonElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlCanvasElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlCollection.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDListElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDataElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDataListElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDetailsElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDialogElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDivElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlEmbedElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlFieldSetElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlFormElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlHeadElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlHeadingElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlHrElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlHtmlElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlIFrameElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlImageElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlInputElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlLabelElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlLegendElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlLiElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlLinkElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlMapElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlMediaElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlMenuElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlMetaElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlMeterElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlModElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlOListElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlObjectElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlOptGroupElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlOptionElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlOutputElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlParagraphElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlParamElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlPictureElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlPreElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlProgressElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlQuoteElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlScriptElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlSelectElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlSlotElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlSourceElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlSpanElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlStyleElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableCaptionElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableCellElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableColElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableRowElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableSectionElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTemplateElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTextAreaElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTimeElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTitleElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTrackElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlUListElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlVideoElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_InputEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_KeyboardEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Location.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_MessageEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_MouseEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Node.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ObserverCallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_PageTransitionEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_PointerEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_PopStateEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ProgressEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_PromiseRejectionEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_QueuingStrategy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableByteStreamController.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamByobReader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamByobRequest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamDefaultController.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamDefaultReader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamGetReaderOptions.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamReadResult.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamReaderMode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamType.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableWritablePair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReferrerPolicy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_RequestCache.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_RequestCredentials.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_RequestInit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_RequestMode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_RequestRedirect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ResponseInit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ResponseType.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_SecurityPolicyViolationEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ShadowRoot.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ShadowRootInit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ShadowRootMode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_StorageEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_StreamPipeOptions.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_SubmitEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_SvgElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Text.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_TouchEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_TransformStream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_TransformStreamDefaultController.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Transformer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_TransitionEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_UiEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_UnderlyingSink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_UnderlyingSource.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Url.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_UrlSearchParams.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_WebSocket.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_WheelEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Window.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_WritableStream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_WritableStreamDefaultController.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_WritableStreamDefaultWriter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_console.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libweb_sys-bc9f0b4e6ee60692.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_AbortController.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_AbortSignal.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_AddEventListenerOptions.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_AnimationEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_BeforeUnloadEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_BinaryType.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Blob.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CharacterData.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ClipboardEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CloseEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CloseEventInit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Comment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CompositionEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CssStyleDeclaration.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CustomEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DeviceMotionEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DeviceOrientationEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Document.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DocumentFragment.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DomStringMap.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DomTokenList.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DragEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Element.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ErrorEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Event.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_EventSource.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_EventTarget.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_FileReader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_FocusEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_FormData.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_GamepadEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HashChangeEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Headers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_History.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlAnchorElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlAreaElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlAudioElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlBaseElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlBodyElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlBrElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlButtonElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlCanvasElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlCollection.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDListElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDataElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDataListElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDetailsElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDialogElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDivElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlEmbedElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlFieldSetElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlFormElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlHeadElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlHeadingElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlHrElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlHtmlElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlIFrameElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlImageElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlInputElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlLabelElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlLegendElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlLiElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlLinkElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlMapElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlMediaElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlMenuElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlMetaElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlMeterElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlModElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlOListElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlObjectElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlOptGroupElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlOptionElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlOutputElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlParagraphElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlParamElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlPictureElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlPreElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlProgressElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlQuoteElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlScriptElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlSelectElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlSlotElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlSourceElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlSpanElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlStyleElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableCaptionElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableCellElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableColElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableRowElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableSectionElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTemplateElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTextAreaElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTimeElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTitleElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTrackElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlUListElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlVideoElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_InputEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_KeyboardEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Location.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_MessageEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_MouseEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Node.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ObserverCallback.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_PageTransitionEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_PointerEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_PopStateEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ProgressEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_PromiseRejectionEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_QueuingStrategy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableByteStreamController.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamByobReader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamByobRequest.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamDefaultController.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamDefaultReader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamGetReaderOptions.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamReadResult.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamReaderMode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamType.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableWritablePair.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReferrerPolicy.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Request.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_RequestCache.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_RequestCredentials.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_RequestInit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_RequestMode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_RequestRedirect.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Response.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ResponseInit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ResponseType.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_SecurityPolicyViolationEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ShadowRoot.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ShadowRootInit.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ShadowRootMode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_StorageEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_StreamPipeOptions.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_SubmitEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_SvgElement.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Text.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_TouchEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_TransformStream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_TransformStreamDefaultController.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Transformer.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_TransitionEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_UiEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_UnderlyingSink.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_UnderlyingSource.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Url.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_UrlSearchParams.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_WebSocket.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_WheelEvent.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Window.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_WritableStream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_WritableStreamDefaultController.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_WritableStreamDefaultWriter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_console.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_AbortController.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_AbortSignal.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_AddEventListenerOptions.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_AnimationEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_BeforeUnloadEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_BinaryType.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Blob.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CharacterData.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ClipboardEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CloseEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CloseEventInit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Comment.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CompositionEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CssStyleDeclaration.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_CustomEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DeviceMotionEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DeviceOrientationEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Document.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DocumentFragment.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DomStringMap.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DomTokenList.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_DragEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Element.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ErrorEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Event.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_EventSource.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_EventTarget.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_FileReader.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_FocusEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_FormData.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_GamepadEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HashChangeEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Headers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_History.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlAnchorElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlAreaElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlAudioElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlBaseElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlBodyElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlBrElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlButtonElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlCanvasElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlCollection.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDListElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDataElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDataListElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDetailsElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDialogElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlDivElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlEmbedElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlFieldSetElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlFormElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlHeadElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlHeadingElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlHrElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlHtmlElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlIFrameElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlImageElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlInputElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlLabelElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlLegendElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlLiElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlLinkElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlMapElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlMediaElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlMenuElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlMetaElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlMeterElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlModElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlOListElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlObjectElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlOptGroupElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlOptionElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlOutputElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlParagraphElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlParamElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlPictureElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlPreElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlProgressElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlQuoteElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlScriptElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlSelectElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlSlotElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlSourceElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlSpanElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlStyleElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableCaptionElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableCellElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableColElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableRowElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTableSectionElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTemplateElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTextAreaElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTimeElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTitleElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlTrackElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlUListElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_HtmlVideoElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_InputEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_KeyboardEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Location.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_MessageEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_MouseEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Node.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ObserverCallback.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_PageTransitionEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_PointerEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_PopStateEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ProgressEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_PromiseRejectionEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_QueuingStrategy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableByteStreamController.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamByobReader.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamByobRequest.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamDefaultController.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamDefaultReader.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamGetReaderOptions.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamReadResult.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamReaderMode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableStreamType.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReadableWritablePair.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ReferrerPolicy.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Request.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_RequestCache.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_RequestCredentials.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_RequestInit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_RequestMode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_RequestRedirect.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Response.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ResponseInit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ResponseType.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_SecurityPolicyViolationEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ShadowRoot.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ShadowRootInit.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_ShadowRootMode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_StorageEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_StreamPipeOptions.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_SubmitEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_SvgElement.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Text.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_TouchEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_TransformStream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_TransformStreamDefaultController.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Transformer.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_TransitionEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_UiEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_UnderlyingSink.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_UnderlyingSource.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Url.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_UrlSearchParams.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_WebSocket.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_WheelEvent.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_Window.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_WritableStream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_WritableStreamDefaultController.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_WritableStreamDefaultWriter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/web-sys-0.3.91/src/features/gen_console.rs: diff --git a/examples/leptos_axum/target/debug/deps/winnow-ef9faab41c699399.d b/examples/leptos_axum/target/debug/deps/winnow-ef9faab41c699399.d new file mode 100644 index 0000000..44c684a --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/winnow-ef9faab41c699399.d @@ -0,0 +1,34 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/winnow-ef9faab41c699399.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/macros/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/macros/dispatch.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/macros/seq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/macros/unordered_seq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/bstr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/locating.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/partial.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/range.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/stateful.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/ascii/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/ascii/caseless.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/binary/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/binary/bits/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/binary/bits/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/branch.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/core.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/debug/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/expression.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/multi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/sequence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/token/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/../examples/css/parser.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libwinnow-ef9faab41c699399.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/macros/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/macros/dispatch.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/macros/seq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/macros/unordered_seq.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/parser.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/bstr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/bytes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/locating.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/partial.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/range.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/stateful.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/token.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/ascii/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/ascii/caseless.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/binary/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/binary/bits/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/binary/bits/stream.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/branch.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/core.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/debug/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/expression.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/multi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/sequence.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/token/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/../examples/css/parser.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/macros/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/macros/dispatch.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/macros/seq.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/macros/unordered_seq.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/parser.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/bstr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/bytes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/locating.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/partial.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/range.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/stateful.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/stream/token.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/ascii/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/ascii/caseless.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/binary/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/binary/bits/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/binary/bits/stream.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/branch.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/core.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/debug/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/expression.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/multi.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/sequence.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/combinator/impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/token/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/winnow-1.0.4/src/../examples/css/parser.rs: diff --git a/examples/leptos_axum/target/debug/deps/writeable-d27a59526004cf7e.d b/examples/leptos_axum/target/debug/deps/writeable-d27a59526004cf7e.d new file mode 100644 index 0000000..de0d547 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/writeable-d27a59526004cf7e.d @@ -0,0 +1,11 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/writeable-d27a59526004cf7e.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/cmp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/concat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/ops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/parts_write_adapter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/try_writeable.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libwriteable-d27a59526004cf7e.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/cmp.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/concat.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/ops.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/parts_write_adapter.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/try_writeable.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/cmp.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/concat.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/ops.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/parts_write_adapter.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/writeable-0.6.3/src/try_writeable.rs: diff --git a/examples/leptos_axum/target/debug/deps/xxhash_rust-7c7bdf068f7d340a.d b/examples/leptos_axum/target/debug/deps/xxhash_rust-7c7bdf068f7d340a.d new file mode 100644 index 0000000..0dac9ae --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/xxhash_rust-7c7bdf068f7d340a.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/xxhash_rust-7c7bdf068f7d340a.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/xxh64_common.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/const_xxh64.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libxxhash_rust-7c7bdf068f7d340a.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/xxh64_common.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/const_xxh64.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/xxh64_common.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/const_xxh64.rs: diff --git a/examples/leptos_axum/target/debug/deps/xxhash_rust-c7c0988ded3db730.d b/examples/leptos_axum/target/debug/deps/xxhash_rust-c7c0988ded3db730.d new file mode 100644 index 0000000..aad8f4b --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/xxhash_rust-c7c0988ded3db730.d @@ -0,0 +1,9 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/xxhash_rust-c7c0988ded3db730.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/xxh64_common.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/const_xxh64.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libxxhash_rust-c7c0988ded3db730.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/xxh64_common.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/const_xxh64.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libxxhash_rust-c7c0988ded3db730.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/xxh64_common.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/const_xxh64.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/xxh64_common.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/xxhash-rust-0.8.18/src/const_xxh64.rs: diff --git a/examples/leptos_axum/target/debug/deps/yansi-c70c0f24defc00dc.d b/examples/leptos_axum/target/debug/deps/yansi-c70c0f24defc00dc.d new file mode 100644 index 0000000..bd86efb --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/yansi-c70c0f24defc00dc.d @@ -0,0 +1,16 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/yansi-c70c0f24defc00dc.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/windows.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/attr_quirk.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/color.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/paint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/global.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/condition.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/set.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libyansi-c70c0f24defc00dc.rlib: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/windows.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/attr_quirk.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/color.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/paint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/global.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/condition.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/set.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libyansi-c70c0f24defc00dc.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/windows.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/attr_quirk.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/color.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/paint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/global.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/condition.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/set.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/windows.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/attr_quirk.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/style.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/color.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/paint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/global.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/condition.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/set.rs: diff --git a/examples/leptos_axum/target/debug/deps/yansi-c7e72d49211f840a.d b/examples/leptos_axum/target/debug/deps/yansi-c7e72d49211f840a.d new file mode 100644 index 0000000..7e96b27 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/yansi-c7e72d49211f840a.d @@ -0,0 +1,14 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/yansi-c7e72d49211f840a.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/windows.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/attr_quirk.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/color.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/paint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/global.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/condition.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/set.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libyansi-c7e72d49211f840a.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/windows.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/attr_quirk.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/style.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/color.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/paint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/global.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/condition.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/set.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/windows.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/attr_quirk.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/style.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/color.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/paint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/global.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/condition.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yansi-1.0.1/src/set.rs: diff --git a/examples/leptos_axum/target/debug/deps/yoke-6eff7b2f0fceec96.d b/examples/leptos_axum/target/debug/deps/yoke-6eff7b2f0fceec96.d new file mode 100644 index 0000000..b3e17ea --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/yoke-6eff7b2f0fceec96.d @@ -0,0 +1,13 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/yoke-6eff7b2f0fceec96.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/cartable_ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/kinda_sorta_dangling.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/macro_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/yoke.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/yokeable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/zero_from.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libyoke-6eff7b2f0fceec96.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/cartable_ptr.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/either.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/kinda_sorta_dangling.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/macro_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/yoke.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/yokeable.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/zero_from.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/cartable_ptr.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/either.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/kinda_sorta_dangling.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/macro_impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/yoke.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/yokeable.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-0.8.3/src/zero_from.rs: diff --git a/examples/leptos_axum/target/debug/deps/yoke_derive-b97dc8353690e6bb.d b/examples/leptos_axum/target/debug/deps/yoke_derive-b97dc8353690e6bb.d new file mode 100644 index 0000000..ac7abff --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/yoke_derive-b97dc8353690e6bb.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/yoke_derive-b97dc8353690e6bb.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lifetimes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/visitor.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libyoke_derive-b97dc8353690e6bb.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lifetimes.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/visitor.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/lifetimes.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/yoke-derive-0.8.2/src/visitor.rs: diff --git a/examples/leptos_axum/target/debug/deps/zerofrom-b7fd213306bba939.d b/examples/leptos_axum/target/debug/deps/zerofrom-b7fd213306bba939.d new file mode 100644 index 0000000..181719a --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/zerofrom-b7fd213306bba939.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/zerofrom-b7fd213306bba939.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/macro_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/zero_from.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libzerofrom-b7fd213306bba939.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/macro_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/zero_from.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/macro_impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-0.1.8/src/zero_from.rs: diff --git a/examples/leptos_axum/target/debug/deps/zerofrom_derive-12c4527cdceeb8fd.d b/examples/leptos_axum/target/debug/deps/zerofrom_derive-12c4527cdceeb8fd.d new file mode 100644 index 0000000..0213e4c --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/zerofrom_derive-12c4527cdceeb8fd.d @@ -0,0 +1,6 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/zerofrom_derive-12c4527cdceeb8fd.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/visitor.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libzerofrom_derive-12c4527cdceeb8fd.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/visitor.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerofrom-derive-0.1.7/src/visitor.rs: diff --git a/examples/leptos_axum/target/debug/deps/zerotrie-f6b223adad647016.d b/examples/leptos_axum/target/debug/deps/zerotrie-f6b223adad647016.d new file mode 100644 index 0000000..62ed018 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/zerotrie-f6b223adad647016.d @@ -0,0 +1,19 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/zerotrie-f6b223adad647016.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/branch_meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/store.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/slice_indices.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/byte_phf/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/cursor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/helpers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/options.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/varint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/zerotrie.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libzerotrie-f6b223adad647016.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/branch_meta.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/builder.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/store.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/slice_indices.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/byte_phf/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/cursor.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/helpers.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/options.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/reader.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/varint.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/zerotrie.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/branch_meta.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/builder.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/konst/store.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/builder/slice_indices.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/byte_phf/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/cursor.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/helpers.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/options.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/reader.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/varint.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerotrie-0.2.4/src/zerotrie.rs: diff --git a/examples/leptos_axum/target/debug/deps/zerovec-6a02e0511e8f8728.d b/examples/leptos_axum/target/debug/deps/zerovec-6a02e0511e8f8728.d new file mode 100644 index 0000000..fb3d93f --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/zerovec-6a02e0511e8f8728.d @@ -0,0 +1,28 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/zerovec-6a02e0511e8f8728.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/cow.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/components.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/lengthless.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/vec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/chars.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/encode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/multi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/niche.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/plain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/slices.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuplevar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/vartuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/yoke_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerofrom_impls.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libzerovec-6a02e0511e8f8728.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/cow.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/components.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/error.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/lengthless.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/vec.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/slice.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/mod.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/chars.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/encode.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/macros.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/multi.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/niche.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/option.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/plain.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/slices.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuplevar.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/vartuple.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/yoke_impls.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerofrom_impls.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/cow.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/components.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/error.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/lengthless.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/slice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/varzerovec/vec.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerovec/slice.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/mod.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/chars.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/encode.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/macros.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/multi.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/niche.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/option.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/plain.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/slices.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuple.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/tuplevar.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/ule/vartuple.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/yoke_impls.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-0.11.6/src/zerofrom_impls.rs: diff --git a/examples/leptos_axum/target/debug/deps/zerovec_derive-596a74a191e24ba0.d b/examples/leptos_axum/target/debug/deps/zerovec_derive-596a74a191e24ba0.d new file mode 100644 index 0000000..b5eb6e8 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/zerovec_derive-596a74a191e24ba0.d @@ -0,0 +1,10 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/zerovec_derive-596a74a191e24ba0.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_ule.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_varule.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/ule.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/varule.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libzerovec_derive-596a74a191e24ba0.so: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_ule.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_varule.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/ule.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/utils.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/varule.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_ule.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/make_varule.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/ule.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/utils.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerovec-derive-0.11.3/src/varule.rs: diff --git a/examples/leptos_axum/target/debug/deps/zmij-09764c09118bc5c9.d b/examples/leptos_axum/target/debug/deps/zmij-09764c09118bc5c9.d new file mode 100644 index 0000000..0e3ca07 --- /dev/null +++ b/examples/leptos_axum/target/debug/deps/zmij-09764c09118bc5c9.d @@ -0,0 +1,7 @@ +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/zmij-09764c09118bc5c9.d: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/stdarch_x86.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/traits.rs + +/home/user/antigravity-sdk-rust/examples/leptos_axum/target/debug/deps/libzmij-09764c09118bc5c9.rmeta: /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/lib.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/stdarch_x86.rs /root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/traits.rs + +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/lib.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/stdarch_x86.rs: +/root/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.23/src/traits.rs: diff --git a/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-27lslhid3mdw6/s-hkysn0qaga-1m24caq-awh6u9rzl6tepivnl1g8qm4pz/dep-graph.bin b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-27lslhid3mdw6/s-hkysn0qaga-1m24caq-awh6u9rzl6tepivnl1g8qm4pz/dep-graph.bin new file mode 100644 index 0000000..a141678 Binary files /dev/null and b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-27lslhid3mdw6/s-hkysn0qaga-1m24caq-awh6u9rzl6tepivnl1g8qm4pz/dep-graph.bin differ diff --git a/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-27lslhid3mdw6/s-hkysn0qaga-1m24caq-awh6u9rzl6tepivnl1g8qm4pz/metadata.rmeta b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-27lslhid3mdw6/s-hkysn0qaga-1m24caq-awh6u9rzl6tepivnl1g8qm4pz/metadata.rmeta new file mode 100644 index 0000000..12959fd Binary files /dev/null and b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-27lslhid3mdw6/s-hkysn0qaga-1m24caq-awh6u9rzl6tepivnl1g8qm4pz/metadata.rmeta differ diff --git a/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-27lslhid3mdw6/s-hkysn0qaga-1m24caq-awh6u9rzl6tepivnl1g8qm4pz/query-cache.bin b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-27lslhid3mdw6/s-hkysn0qaga-1m24caq-awh6u9rzl6tepivnl1g8qm4pz/query-cache.bin new file mode 100644 index 0000000..4619c0f Binary files /dev/null and b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-27lslhid3mdw6/s-hkysn0qaga-1m24caq-awh6u9rzl6tepivnl1g8qm4pz/query-cache.bin differ diff --git a/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-27lslhid3mdw6/s-hkysn0qaga-1m24caq-awh6u9rzl6tepivnl1g8qm4pz/work-products.bin b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-27lslhid3mdw6/s-hkysn0qaga-1m24caq-awh6u9rzl6tepivnl1g8qm4pz/work-products.bin new file mode 100644 index 0000000..4f769ac Binary files /dev/null and b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-27lslhid3mdw6/s-hkysn0qaga-1m24caq-awh6u9rzl6tepivnl1g8qm4pz/work-products.bin differ diff --git a/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-2f0tc00e7lsel/s-hkysn1ek9d-0qdkdft-ckmqco2cvhagoq99v5lnpzqr7/dep-graph.bin b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-2f0tc00e7lsel/s-hkysn1ek9d-0qdkdft-ckmqco2cvhagoq99v5lnpzqr7/dep-graph.bin new file mode 100644 index 0000000..46b10ee Binary files /dev/null and b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-2f0tc00e7lsel/s-hkysn1ek9d-0qdkdft-ckmqco2cvhagoq99v5lnpzqr7/dep-graph.bin differ diff --git a/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-2f0tc00e7lsel/s-hkysn1ek9d-0qdkdft-ckmqco2cvhagoq99v5lnpzqr7/query-cache.bin b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-2f0tc00e7lsel/s-hkysn1ek9d-0qdkdft-ckmqco2cvhagoq99v5lnpzqr7/query-cache.bin new file mode 100644 index 0000000..74d09d7 Binary files /dev/null and b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-2f0tc00e7lsel/s-hkysn1ek9d-0qdkdft-ckmqco2cvhagoq99v5lnpzqr7/query-cache.bin differ diff --git a/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-2f0tc00e7lsel/s-hkysn1ek9d-0qdkdft-ckmqco2cvhagoq99v5lnpzqr7/work-products.bin b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-2f0tc00e7lsel/s-hkysn1ek9d-0qdkdft-ckmqco2cvhagoq99v5lnpzqr7/work-products.bin new file mode 100644 index 0000000..3b4e26a Binary files /dev/null and b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-2f0tc00e7lsel/s-hkysn1ek9d-0qdkdft-ckmqco2cvhagoq99v5lnpzqr7/work-products.bin differ diff --git a/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-397xiw26yseaq/s-hkysn0qb40-1ijsmxo-72k54c3rn4u4jj1ti6m20j4ki/dep-graph.bin b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-397xiw26yseaq/s-hkysn0qb40-1ijsmxo-72k54c3rn4u4jj1ti6m20j4ki/dep-graph.bin new file mode 100644 index 0000000..332eb90 Binary files /dev/null and b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-397xiw26yseaq/s-hkysn0qb40-1ijsmxo-72k54c3rn4u4jj1ti6m20j4ki/dep-graph.bin differ diff --git a/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-397xiw26yseaq/s-hkysn0qb40-1ijsmxo-72k54c3rn4u4jj1ti6m20j4ki/query-cache.bin b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-397xiw26yseaq/s-hkysn0qb40-1ijsmxo-72k54c3rn4u4jj1ti6m20j4ki/query-cache.bin new file mode 100644 index 0000000..de1a491 Binary files /dev/null and b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-397xiw26yseaq/s-hkysn0qb40-1ijsmxo-72k54c3rn4u4jj1ti6m20j4ki/query-cache.bin differ diff --git a/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-397xiw26yseaq/s-hkysn0qb40-1ijsmxo-72k54c3rn4u4jj1ti6m20j4ki/work-products.bin b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-397xiw26yseaq/s-hkysn0qb40-1ijsmxo-72k54c3rn4u4jj1ti6m20j4ki/work-products.bin new file mode 100644 index 0000000..3b4e26a Binary files /dev/null and b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-397xiw26yseaq/s-hkysn0qb40-1ijsmxo-72k54c3rn4u4jj1ti6m20j4ki/work-products.bin differ diff --git a/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-3a08kmkct67pu/s-hkysn1enuc-0oct7w4-9wt58896edj7v5cvq98git3up/dep-graph.bin b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-3a08kmkct67pu/s-hkysn1enuc-0oct7w4-9wt58896edj7v5cvq98git3up/dep-graph.bin new file mode 100644 index 0000000..748778b Binary files /dev/null and b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-3a08kmkct67pu/s-hkysn1enuc-0oct7w4-9wt58896edj7v5cvq98git3up/dep-graph.bin differ diff --git a/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-3a08kmkct67pu/s-hkysn1enuc-0oct7w4-9wt58896edj7v5cvq98git3up/query-cache.bin b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-3a08kmkct67pu/s-hkysn1enuc-0oct7w4-9wt58896edj7v5cvq98git3up/query-cache.bin new file mode 100644 index 0000000..8e413dd Binary files /dev/null and b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-3a08kmkct67pu/s-hkysn1enuc-0oct7w4-9wt58896edj7v5cvq98git3up/query-cache.bin differ diff --git a/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-3a08kmkct67pu/s-hkysn1enuc-0oct7w4-9wt58896edj7v5cvq98git3up/work-products.bin b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-3a08kmkct67pu/s-hkysn1enuc-0oct7w4-9wt58896edj7v5cvq98git3up/work-products.bin new file mode 100644 index 0000000..3b4e26a Binary files /dev/null and b/examples/leptos_axum/target/debug/incremental/leptos_axum_chat-3a08kmkct67pu/s-hkysn1enuc-0oct7w4-9wt58896edj7v5cvq98git3up/work-products.bin differ diff --git a/examples/subagents.rs b/examples/subagents.rs index acbd2ed..6ababbb 100644 --- a/examples/subagents.rs +++ b/examples/subagents.rs @@ -12,7 +12,11 @@ struct SubagentHook { } impl Hook for SubagentHook { - async fn pre_tool_call(&self, tool_call: &ToolCall) -> Result { + async fn pre_tool_call( + &self, + tool_call: &ToolCall, + _context: &antigravity_sdk_rust::context::HookContext, + ) -> Result { if tool_call.name == "START_SUBAGENT" { self.subagent_active.store(true, Ordering::SeqCst); println!("\n --- 🤖 [Hook] Spawning Subagent ---"); @@ -34,7 +38,11 @@ impl Hook for SubagentHook { }) } - async fn post_tool_call(&self, result: &ToolResult) -> Result<(), anyhow::Error> { + async fn post_tool_call( + &self, + result: &ToolResult, + _context: &antigravity_sdk_rust::context::HookContext, + ) -> Result<(), anyhow::Error> { if result.name == "START_SUBAGENT" { self.subagent_active.store(false, Ordering::SeqCst); println!("\n --- 🤖 [Hook] Subagent Finished ---"); diff --git a/proto/localharness.proto b/proto/localharness.proto index a1b84a5..f185b4b 100644 --- a/proto/localharness.proto +++ b/proto/localharness.proto @@ -1,15 +1,32 @@ +// GENERATED by scripts/gen_proto.py — do not edit by hand. +// +// Source: 0.1.9 google/antigravity/proto/localharness_pb2.py +// Regenerate after every upstream release; see docs/upstream-parity.md. +// +// Rendered as proto3 with explicit presence on every singular field. +// Upstream declares editions (edition=1001), which prost-build 0.12 cannot +// parse, and this crate depends on presence: the step classifier and the +// request dedup in src/local.rs are both built on `.is_some()`. + syntax = "proto3"; package antigravity.localharness; -enum NullValue { - NULL_VALUE = 0; +enum LifecycleHook { + LIFECYCLE_HOOK_UNSPECIFIED = 0; + LIFECYCLE_HOOK_ON_SESSION_START = 1; + LIFECYCLE_HOOK_ON_SESSION_END = 2; + LIFECYCLE_HOOK_PRE_TURN = 3; + LIFECYCLE_HOOK_POST_TURN = 4; + LIFECYCLE_HOOK_PRE_TOOL = 5; + LIFECYCLE_HOOK_POST_TOOL = 6; + LIFECYCLE_HOOK_ON_TOOL_ERROR = 7; } -message ClientInfo { - optional string language = 1; - optional string version = 2; - optional string language_version = 3; +enum ModelType { + MODEL_TYPE_UNSPECIFIED = 0; + MODEL_TYPE_TEXT = 1; + MODEL_TYPE_IMAGE = 2; } message InputConfig { @@ -17,18 +34,24 @@ message InputConfig { optional uint32 port = 2; optional string bind_address = 3; optional ClientInfo client_info = 4; + map env = 5; } message InitializeConversationEvent { optional HarnessConfig config = 1; } +message ClientInfo { + optional string language = 1; + optional string version = 2; + optional string language_version = 3; + optional string os = 4; + optional string os_version = 5; +} + message HarnessConfig { optional string cascade_id = 1; - oneof model_config { - GeminiConfig gemini_config = 2; - GemmaConfig gemma_config = 3; - } + optional SessionContinuationMode session_continuation_mode = 19; optional SystemInstructions system_instructions = 4; repeated Tool tools = 5; optional HarnessSideTools harness_side_tools = 6; @@ -38,6 +61,34 @@ message HarnessConfig { optional string finish_tool_schema_json = 10; optional bytes initial_trajectory = 11; optional string app_data_dir = 12; + repeated McpServerConfig mcp_servers = 14; + repeated ModelConfig models = 15; + repeated LifecycleHook enabled_hooks = 16; + repeated CustomAgent custom_subagents = 17; + optional ToolOutputTruncation tool_output_truncation = 18; + optional RetryConfig retry_config = 20; + enum SessionContinuationMode { + SESSION_CONTINUATION_MODE_UNSPECIFIED = 0; + RESUME = 1; + CREATE_OR_RESUME = 2; + CREATE_ONLY = 3; + } +} + +message ModelAPIRetryConfig { + optional uint32 max_retries = 1; + optional uint32 initial_sleep_duration_ms = 2; + optional double exponential_multiplier = 3; + optional double jitter_range = 4; +} + +message ModelOutputRetryConfig { + optional uint32 max_retries = 1; +} + +message RetryConfig { + optional ModelAPIRetryConfig api_retry = 1; + optional ModelOutputRetryConfig model_output_retry = 2; } message Workspace { @@ -50,21 +101,43 @@ message FilesystemWorkspace { optional string directory = 1; } -message GeminiConfig { - optional string api_key = 1; - optional string base_url = 2; - optional string model_name = 3; - optional string thinking_level = 4; - optional bool enable_url_context = 5; - optional bool enable_google_search = 6; - optional bool use_vertex = 7; - optional string project = 8; - optional string location = 9; +message GeminiModelOptions { + optional string thinking_level = 1; } -message GemmaConfig { +message GeminiAPIEndpoint { optional string base_url = 1; - optional string model_name = 2; + map http_headers = 2; + optional string api_key = 3; + optional GeminiModelOptions options = 4; +} + +message VertexEndpoint { + optional string base_url = 1; + map http_headers = 2; + optional string project = 3; + optional string location = 4; + optional GeminiModelOptions options = 5; +} + +message ModelConfig { + optional string name = 1; + repeated ModelType types = 2; + oneof endpoint { + GeminiAPIEndpoint gemini_api_endpoint = 3; + VertexEndpoint vertex_endpoint = 4; + GemmaEndpoint gemma_endpoint = 6; + CustomEndpoint custom_endpoint = 7; + } +} + +message GemmaEndpoint { + optional string base_url = 1; +} + +message CustomEndpoint { + optional string backend_type = 1; + optional string config_json = 2; } message SystemInstructions { @@ -75,23 +148,30 @@ message SystemInstructions { } message CustomSystemInstructions { + repeated Part part = 1; message Part { oneof part { string text = 1; + SystemInstructionTemplate template = 2; + } + } + message SystemInstructionTemplate { + optional string template_name = 1; + repeated Arg args = 2; + message Arg { + optional string name = 1; + optional string value = 2; } } - - repeated Part part = 1; } message AppendedSystemInstructions { + optional string custom_identity = 1; + repeated Section appended_sections = 2; message Section { optional string title = 1; optional string content = 2; } - - optional string custom_identity = 1; - repeated Section appended_sections = 2; } message Tool { @@ -99,6 +179,7 @@ message Tool { optional string description = 2; optional string parameters_json_schema = 3; optional string response_json_schema = 4; + optional bool defer_loading = 5; } message HarnessSideTools { @@ -113,6 +194,9 @@ message HarnessSideTools { optional ListDirToolConfig list_dir = 9; optional PermissionsConfig permissions = 10; optional GenerateImageToolConfig generate_image = 11; + optional SearchWebToolConfig search_web = 12; + optional ReadUrlContentToolConfig read_url_content = 14; + optional ToolSearchConfig tool_search_config = 15; } message FindToolConfig { @@ -153,7 +237,18 @@ message ListDirToolConfig { message GenerateImageToolConfig { optional bool enabled = 1; - optional string model_name = 2; +} + +message SearchWebToolConfig { + optional bool enabled = 1; +} + +message ReadUrlContentToolConfig { + optional bool enabled = 1; +} + +message ToolSearchConfig { + optional bool enabled = 1; } message PermissionsConfig { @@ -168,38 +263,23 @@ message OutputConfig { message OutputEvent { optional int64 seq_num = 1; optional int64 timestamp_micros = 2; + optional UsageMetadata usage_metadata = 20; oneof event { StepUpdate step_update = 10; TrajectoryStateUpdate trajectory_state_update = 11; ToolCall tool_call = 12; + InitializeConversationResponse initialize_conversation_response = 13; + CallHookRequest call_hook_request = 14; + bool session_end_response = 15; } - optional UsageMetadata usage_metadata = 20; } -message StepUpdate { - enum State { - STATE_UNSPECIFIED = 0; - STATE_ACTIVE = 1; - STATE_DONE = 2; - STATE_WAITING_FOR_USER = 3; - STATE_ERROR = 4; - STATE_TERMINAL_ERROR = 5; - } - - enum Source { - SOURCE_UNSPECIFIED = 0; - SOURCE_SYSTEM = 1; - SOURCE_USER = 2; - SOURCE_MODEL = 3; - } - - enum Target { - TARGET_UNSPECIFIED = 0; - TARGET_USER = 1; - TARGET_MODEL = 2; - TARGET_ENVIRONMENT = 3; - } +message InitializeConversationResponse { + optional string cascade_id = 1; + repeated StepUpdate history = 2; +} +message StepUpdate { optional string cascade_id = 1; optional string trajectory_id = 2; optional uint32 step_index = 3; @@ -223,15 +303,52 @@ message StepUpdate { optional ActionGenerateImage generate_image = 30; optional ActionFinish finish = 31; optional ActionError error = 32; + optional ActionMcpTool mcp_tool = 33; + optional ActionSearchWeb search_web = 34; + optional ActionReadUrlContent read_url_content = 35; + optional ActionCustomTool custom_tool = 36; optional string request_text = 50; optional ToolConfirmationRequest tool_confirmation_request = 51; optional UserQuestionsRequest questions_request = 52; + enum State { + STATE_UNSPECIFIED = 0; + STATE_ACTIVE = 1; + STATE_DONE = 2; + STATE_WAITING_FOR_USER = 3; + STATE_ERROR = 4; + } + enum Source { + SOURCE_UNSPECIFIED = 0; + SOURCE_SYSTEM = 1; + SOURCE_USER = 2; + SOURCE_MODEL = 3; + } + enum Target { + TARGET_UNSPECIFIED = 0; + TARGET_USER = 1; + TARGET_MODEL = 2; + TARGET_ENVIRONMENT = 3; + } } message ActionGenerateImage { optional string prompt = 1; repeated string image_paths = 2; optional string image_name = 3; + optional string aspect_ratio = 4; +} + +message ActionSearchWeb { + optional string query = 1; + optional string domain = 2; + optional string summary = 3; +} + +message ActionReadUrlContent { + optional string url = 1; + optional string title = 2; + optional string summary = 3; + optional string content_path = 4; } message ActionFinish { @@ -244,6 +361,8 @@ message ActionError { } message ActionListDirectory { + optional string directory_path = 1; + repeated Result results = 2; message Result { optional string name = 1; oneof info { @@ -251,9 +370,6 @@ message ActionListDirectory { uint64 file_size = 3; } } - - optional string directory_path = 1; - repeated Result results = 2; } message ActionFindFile { @@ -280,26 +396,23 @@ message ActionCreateFile { } message ActionEditFile { + optional string file_path = 1; + repeated DiffBlock diff_block = 2; message DiffLine { + optional string text = 1; + optional LineAction action = 2; enum LineAction { LINE_ACTION_UNSPECIFIED = 0; LINE_ACTION_INSERT = 1; LINE_ACTION_DELETE = 2; LINE_ACTION_NONE = 3; } - - optional string text = 1; - optional LineAction action = 2; } - message DiffBlock { optional int32 start_line = 1; optional int32 end_line = 2; repeated DiffLine lines = 3; } - - optional string file_path = 1; - repeated DiffBlock diff_block = 2; } message ActionRunCommand { @@ -343,24 +456,28 @@ message InputEvent { UserQuestionsResponse question_response = 4; bool halt_request = 5; string automated_trigger = 6; + CallHookResponse call_hook_response = 8; + bool session_end_request = 9; } } message UserInput { + repeated Part parts = 1; message Media { optional string mime_type = 1; optional string description = 2; optional bytes data = 3; } - + message SlashCommand { + optional string name = 1; + } message Part { oneof part { string text = 1; Media media = 2; + SlashCommand slash_command = 3; } } - - repeated Part parts = 1; } message ToolConfirmation { @@ -370,66 +487,42 @@ message ToolConfirmation { } message TrajectoryStateUpdate { + optional string trajectory_id = 2; + optional State state = 3; + optional string error = 4; enum State { STATE_UNSPECIFIED = 0; STATE_RUNNING = 1; - STATE_IDLE = 2; - } - - optional string trajectory_id = 2; - optional State state = 3; -} - -message Struct { - repeated Field fields = 1; -} - -message Field { - optional string name = 1; - optional Value value = 2; -} - -message Value { - oneof kind { - NullValue null_value = 1; - double number_value = 2; - string string_value = 3; - bool bool_value = 4; - Struct struct_value = 5; - ListValue list_value = 6; - Media media = 7; + STATE_FULLY_IDLE = 2; + STATE_CANCELLED = 3; } } -message ListValue { - repeated Value values = 1; -} - message ToolCall { optional string id = 1; optional string name = 2; optional string arguments_json = 3; - optional Struct arguments = 4; + // omitted: arguments = 4 (.genai.Struct, defined in content.proto — see scripts/gen_proto.py) } message ToolResponse { optional string id = 1; optional string response_json = 2; repeated Media supplemental_media = 3; - optional Struct response = 4; + // omitted: response = 4 (.genai.Struct, defined in content.proto — see scripts/gen_proto.py) + optional string error_message = 5; } message UserQuestionsResponse { - message QuestionsResponse { - repeated UserQuestionAnswer answers = 1; - } - optional string trajectory_id = 1; optional uint32 step_index = 2; oneof result { bool cancelled = 3; QuestionsResponse response = 4; } + message QuestionsResponse { + repeated UserQuestionAnswer answers = 1; + } } message UserQuestionAnswer { @@ -451,10 +544,149 @@ message Media { } message UsageMetadata { - optional int32 prompt_token_count = 1; - optional int32 cached_content_token_count = 5; - optional int32 candidates_token_count = 2; - optional int32 thoughts_token_count = 4; - optional int32 total_token_count = 3; + optional uint64 prompt_token_count = 1; + optional uint64 cached_content_token_count = 5; + optional uint64 candidates_token_count = 2; + optional uint64 thoughts_token_count = 4; + optional uint64 total_token_count = 3; +} + +message McpServerConfig { + optional string name = 1; + repeated string enabled_tools = 4; + repeated string disabled_tools = 5; + optional AuthProviderType auth_provider_type = 6; + optional int32 timeout_seconds = 7; + oneof transport { + McpStdioTransport stdio = 2; + McpHttpTransport http = 3; + } + enum AuthProviderType { + AUTH_PROVIDER_TYPE_UNSPECIFIED = 0; + AUTH_PROVIDER_TYPE_GOOGLE_CREDENTIALS = 1; + } +} + +message McpStdioTransport { + optional string command = 1; + repeated string args = 2; + map env = 3; +} + +message McpHttpTransport { + optional string url = 1; + map headers = 2; +} + +message ActionMcpTool { + optional string server_name = 1; + optional string tool_name = 2; + optional string arguments_json = 3; +} + +message ActionCustomTool { + optional ToolCall tool_call = 1; + optional ToolResponse tool_response = 2; +} + +message CallHookRequest { + optional string request_id = 1; + optional string name = 2; + optional LifecycleHook type = 7; + oneof args { + PreTurnArgs pre_turn_args = 3; + PostTurnArgs post_turn_args = 4; + PreToolArgs pre_tool_args = 5; + PostToolArgs post_tool_args = 6; + OnToolErrorArgs on_tool_error_args = 8; + } +} + +message CallHookResponse { + optional string request_id = 1; + oneof result { + PreTurnResult pre_turn_result = 2; + PreToolResult pre_tool_result = 3; + EmptyResult empty_result = 4; + string error_message = 5; + OnToolErrorResult on_tool_error_result = 6; + } +} + +message PreToolArgs { + optional string tool_name = 1; + optional string arguments_json = 2; + optional string server_name = 3; +} + +message PostToolArgs { + optional string tool_name = 1; + optional string result = 2; + optional string error = 3; + optional string server_name = 5; +} + +message OnToolErrorArgs { + optional string tool_name = 1; + optional string error_message = 2; + optional string server_name = 4; +} + +message PreTurnArgs { + optional UserInput user_input = 1; +} + +message PostTurnArgs { + optional string response_text = 1; +} + +message EmptyResult { +} + +message OnToolErrorResult { + optional string custom_error_message = 1; +} + +message PreToolResult { + optional Decision decision = 1; + optional string reason = 2; + optional string modified_arguments_json = 3; + enum Decision { + DECISION_UNSPECIFIED = 0; + ALLOW = 1; + DENY = 2; + } +} + +message PreTurnResult { + optional Decision decision = 1; + optional string reason = 2; + enum Decision { + DECISION_UNSPECIFIED = 0; + ALLOW = 1; + DENY = 2; + } +} + +message CustomAgent { + optional string name = 1; + optional string description = 2; + optional SystemInstructions system_instructions = 3; + optional HarnessSideTools harness_side_tools = 4; + repeated Tool tools = 5; +} + +message ToolOutputTruncation { + oneof strategy { + TruncateStrategy truncate = 1; + ErrorStrategy error = 2; + } + message TruncateStrategy { + optional int32 max_tokens = 1; + } + message ErrorStrategy { + optional int32 max_tokens = 1; + optional string error_message = 2; + } } diff --git a/scripts/check_upstream_drift.py b/scripts/check_upstream_drift.py new file mode 100755 index 0000000..5ea03a2 --- /dev/null +++ b/scripts/check_upstream_drift.py @@ -0,0 +1,219 @@ +#!/usr/bin/env python3 +"""Report drift between this crate and the newest `google-antigravity` release. + +This crate fell three minor versions behind upstream — including a wire-breaking +rename — because nothing was watching. Two checks run here: + +1. **Version.** Is there a release newer than the one `proto/localharness.proto` + was generated from? +2. **Schema.** Does the proto regenerated from that release differ from the one + in the repository? + +Check 2 is the one that matters: a version bump with no schema change is a +five-minute pin update, whereas a schema change is a migration. Both are +reported; the exit status is non-zero if either fires. + +Usage: + pip install protobuf requests + python3 scripts/check_upstream_drift.py [--pypi-url URL] + +Run from the repository root. Offline or rate-limited runs report `SKIP` and +exit 0 — a flaky network must not read as a drift. +""" + +from __future__ import annotations + +import argparse +import io +import json +import pathlib +import re +import subprocess +import sys +import tempfile +import urllib.error +import urllib.request +import zipfile + +PACKAGE = "google-antigravity" +PYPI_JSON = "https://pypi.org/pypi/{package}/json" +REPO_ROOT = pathlib.Path(__file__).resolve().parent.parent +PROTO_PATH = REPO_ROOT / "proto" / "localharness.proto" +INSTALL_SCRIPT = REPO_ROOT / "scripts" / "install_harness.sh" +GEN_PROTO = REPO_ROOT / "scripts" / "gen_proto.py" + +# The version the checked-in proto was generated from. Update this in the same +# commit that regenerates the proto. +PINNED_VERSION = "0.1.9" + + +def check_install_script_pin() -> bool: + """True when install_harness.sh downloads the version the proto came from.""" + try: + text = INSTALL_SCRIPT.read_text() + except OSError as exc: + _skip(f"could not read {INSTALL_SCRIPT.name}: {exc}") + return True + match = re.search(r'^VERSION="([^"]+)"', text, re.MULTILINE) + if match is None: + _fail(f"{INSTALL_SCRIPT.name} has no VERSION= line to check") + return False + if match.group(1) != PINNED_VERSION: + _fail( + f"{INSTALL_SCRIPT.name} installs harness {match.group(1)}, but the " + f"proto was generated from {PINNED_VERSION}. The installed harness " + f"and the wire format this SDK speaks must be the same version." + ) + return False + print(f"OK: {INSTALL_SCRIPT.name} installs the pinned {PINNED_VERSION}") + return True + + +def _fail(message: str) -> None: + print(f"DRIFT: {message}") + + +def _skip(message: str) -> None: + print(f"SKIP: {message}") + + +def fetch_release_metadata(pypi_url: str) -> dict | None: + """Returns the PyPI metadata, or None when it cannot be reached.""" + try: + with urllib.request.urlopen(pypi_url, timeout=30) as response: + return json.loads(response.read()) + except (urllib.error.URLError, TimeoutError, json.JSONDecodeError) as error: + _skip(f"could not reach PyPI ({error})") + return None + + +def parse_version(version: str) -> tuple[int, ...]: + """`0.1.10` sorts after `0.1.9`, which a string comparison gets wrong.""" + parts = [] + for piece in version.split("."): + digits = "".join(c for c in piece if c.isdigit()) + parts.append(int(digits) if digits else 0) + return tuple(parts) + + +def newest_version(metadata: dict) -> str | None: + releases = [v for v, files in metadata.get("releases", {}).items() if files] + if not releases: + return None + return max(releases, key=parse_version) + + +def wheel_url(metadata: dict, version: str) -> str | None: + for artifact in metadata.get("releases", {}).get(version, []): + if artifact.get("packagetype") == "bdist_wheel": + return artifact.get("url") + return None + + +def regenerate_proto(url: str) -> str | None: + """Downloads the wheel and renders the `.proto` it embeds.""" + try: + with urllib.request.urlopen(url, timeout=120) as response: + payload = response.read() + except (urllib.error.URLError, TimeoutError) as error: + _skip(f"could not download the wheel ({error})") + return None + + with tempfile.TemporaryDirectory() as workdir: + try: + with zipfile.ZipFile(io.BytesIO(payload)) as wheel: + wheel.extractall(workdir) + except zipfile.BadZipFile as error: + _skip(f"the wheel is not readable ({error})") + return None + + result = subprocess.run( + [sys.executable, str(GEN_PROTO), workdir], + capture_output=True, + text=True, + check=False, + ) + if result.returncode != 0: + _skip(f"gen_proto.py failed: {result.stderr.strip()[:400]}") + return None + return result.stdout + + +def schema_body(proto_text: str) -> str: + """The schema without its provenance header. + + `gen_proto.py` stamps the directory it read from into a `// Source:` line, + which differs between a checkout and a freshly unpacked wheel. Comparing it + would report drift on every run and train everyone to ignore this job. + """ + lines = [ + line.rstrip() + for line in proto_text.splitlines() + if not line.startswith("// Source:") + ] + return "\n".join(lines).strip() + + +def main() -> int: + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument( + "--pypi-url", + default=PYPI_JSON.format(package=PACKAGE), + help="Override the metadata URL (for testing).", + ) + args = parser.parse_args() + + metadata = fetch_release_metadata(args.pypi_url) + if metadata is None: + return 0 + + latest = newest_version(metadata) + if latest is None: + _skip("PyPI reported no releases") + return 0 + + drifted = False + + # The install script downloads the harness developers actually run. It + # pinned 0.1.1 for the whole 0.1.9 migration -- so it handed out a harness + # this SDK can no longer complete a turn against, and nothing noticed + # because the two pins were never compared. + if not check_install_script_pin(): + drifted = True + + if parse_version(latest) > parse_version(PINNED_VERSION): + _fail( + f"{PACKAGE} {latest} is newer than the pinned {PINNED_VERSION}. " + f"Regenerate proto/localharness.proto and update PINNED_VERSION in " + f"this script." + ) + drifted = True + else: + print(f"OK: pinned {PINNED_VERSION} is the newest release") + + url = wheel_url(metadata, latest) + if url is None: + _skip(f"{latest} publishes no wheel; the schema check needs one") + return 1 if drifted else 0 + + regenerated = regenerate_proto(url) + if regenerated is None: + return 1 if drifted else 0 + + current = PROTO_PATH.read_text() + if schema_body(regenerated) != schema_body(current): + _fail( + f"proto/localharness.proto differs from what {PACKAGE} {latest} ships. " + f"This is the check that matters: a schema change is a migration, not " + f"a pin bump. Regenerate with:\n" + f" python3 scripts/gen_proto.py > proto/localharness.proto" + ) + drifted = True + else: + print(f"OK: the checked-in proto matches {PACKAGE} {latest}") + + return 1 if drifted else 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/scripts/gen_proto.py b/scripts/gen_proto.py new file mode 100644 index 0000000..3c7e324 --- /dev/null +++ b/scripts/gen_proto.py @@ -0,0 +1,184 @@ +#!/usr/bin/env python3 +"""Regenerate `proto/localharness.proto` from an upstream wheel. + +The harness schema is not published as a `.proto` file — it ships only as a +serialized `FileDescriptorProto` embedded in the generated +`google/antigravity/proto/localharness_pb2.py`. This script decodes that +descriptor and renders readable `.proto` text, so the schema is generated rather +than hand-transcribed. Hand-transcription is how the crate ended up with +`UsageMetadata` counters as `int32` where the harness declares `uint64`. + +Usage: + pip install protobuf + # unpack any google-antigravity wheel (they are plain zip files) + python3 scripts/gen_proto.py /path/to/unpacked-wheel > proto/localharness.proto + +Two deliberate divergences from the upstream descriptor, both required: + +1. **`syntax = "proto3"`, not editions.** The 0.1.9 descriptor reports + `syntax='editions'` / `edition=1001`; prost-build 0.12 cannot parse editions. + +2. **Every singular field is marked `optional`.** Editions give explicit presence + by default, and the rendered text would otherwise lose it. The crate depends + on presence throughout — the step-type classifier and the request dedup in + `src/local.rs` are built on `.is_some()` — so dropping it would silently turn + "absent" into "present and zero". + +`content.proto` (package `genai`) is deliberately NOT vendored: the only fields +referencing it are `ToolCall.arguments` and `ToolResponse.response`, which +neither SDK populates (upstream reads `arguments_json`). They are skipped, and +`build.rs` sets `ignore_unknown_fields` so a stray value is ignored rather than +failing the whole event. +""" + +from __future__ import annotations + +import ast +import os +import sys + +from google.protobuf import descriptor_pb2 + +SCALARS = { + 1: "double", 2: "float", 3: "int64", 4: "uint64", 5: "int32", + 6: "fixed64", 7: "fixed32", 8: "bool", 9: "string", 10: "group", + 12: "bytes", 13: "uint32", 15: "sfixed32", 16: "sfixed64", + 17: "sint32", 18: "sint64", +} + +LABEL_REPEATED = 3 + +# Fields whose type lives in content.proto (package `genai`). See the module +# docstring: not vendored, and unpopulated by either SDK. +SKIPPED_TYPE_PREFIXES = (".genai.",) + + +def load_descriptor(pb2_path: str) -> descriptor_pb2.FileDescriptorProto: + """Pulls the serialized FileDescriptorProto out of a generated _pb2.py.""" + tree = ast.parse(open(pb2_path, "rb").read().decode("utf-8", "replace")) + for node in ast.walk(tree): + if isinstance(node, ast.Call) and getattr(node.func, "attr", "") == "AddSerializedFile": + fd = descriptor_pb2.FileDescriptorProto() + fd.ParseFromString(ast.literal_eval(node.args[0])) + return fd + raise SystemExit(f"no AddSerializedFile call found in {pb2_path}") + + +def collect_map_entries(msg: descriptor_pb2.DescriptorProto, prefix: str, out: dict) -> None: + """Records nested map-entry types so map fields render as `map`.""" + for nested in msg.nested_type: + full = f"{prefix}.{nested.name}" + if nested.options.map_entry: + key = next(f for f in nested.field if f.name == "key") + value = next(f for f in nested.field if f.name == "value") + out[full] = (type_name(key, {}), type_name(value, {})) + collect_map_entries(nested, full, out) + + +def type_name(field: descriptor_pb2.FieldDescriptorProto, maps: dict) -> str: + if field.type in (11, 14): # message, enum + return field.type_name.lstrip(".").split(".")[-1] + return SCALARS.get(field.type, f"UNKNOWN_{field.type}") + + +def render_field(field, maps: dict, indent: str, oneof: bool) -> str | None: + if any(field.type_name.startswith(p) for p in SKIPPED_TYPE_PREFIXES): + return f"{indent}// omitted: {field.name} = {field.number} " \ + f"({field.type_name}, defined in content.proto — see scripts/gen_proto.py)" + + key = field.type_name.lstrip(".") + map_kv = maps.get(key) + if map_kv and field.label == LABEL_REPEATED: + k, v = map_kv + return f"{indent}map<{k}, {v}> {field.name} = {field.number};" + + if field.label == LABEL_REPEATED: + return f"{indent}repeated {type_name(field, maps)} {field.name} = {field.number};" + + # Singular: always explicit-presence. See the module docstring. + prefix = "" if oneof else "optional " + return f"{indent}{prefix}{type_name(field, maps)} {field.name} = {field.number};" + + +def render_enum(enum, indent: str, out: list) -> None: + out.append(f"{indent}enum {enum.name} {{") + for value in enum.value: + out.append(f"{indent} {value.name} = {value.number};") + out.append(f"{indent}}}") + + +def render_message(msg, maps: dict, prefix: str, indent: str, out: list) -> None: + full = f"{prefix}.{msg.name}" if prefix else msg.name + out.append(f"{indent}message {msg.name} {{") + + grouped: dict[int, list] = {} + for field in msg.field: + in_oneof = field.HasField("oneof_index") and not field.proto3_optional + line = render_field(field, maps, indent + (" " if in_oneof else " "), in_oneof) + if line is None: + continue + if in_oneof: + grouped.setdefault(field.oneof_index, []).append(line) + else: + out.append(line) + + for index, oneof in enumerate(msg.oneof_decl): + if index in grouped: + out.append(f"{indent} oneof {oneof.name} {{") + out.extend(grouped[index]) + out.append(f"{indent} }}") + + for enum in msg.enum_type: + render_enum(enum, indent + " ", out) + + for nested in msg.nested_type: + if nested.options.map_entry: + continue # rendered inline as map + render_message(nested, maps, full, indent + " ", out) + + out.append(f"{indent}}}") + + +def main() -> None: + if len(sys.argv) < 2: + raise SystemExit(__doc__) + root = os.path.abspath(sys.argv[1]) + pb2 = os.path.join(root, "google", "antigravity", "proto", "localharness_pb2.py") + if not os.path.exists(pb2): # pre-0.1.8 layout + pb2 = os.path.join(root, "google", "antigravity", "connections", "local", "localharness_pb2.py") + + fd = load_descriptor(pb2) + + maps: dict = {} + for msg in fd.message_type: + collect_map_entries(msg, f"{fd.package}.{msg.name}", maps) + + out: list[str] = [ + "// GENERATED by scripts/gen_proto.py — do not edit by hand.", + "//", + f"// Source: {os.path.basename(root)} {os.path.join('google','antigravity','proto','localharness_pb2.py')}", + "// Regenerate after every upstream release; see docs/upstream-parity.md.", + "//", + "// Rendered as proto3 with explicit presence on every singular field.", + "// Upstream declares editions (edition=1001), which prost-build 0.12 cannot", + "// parse, and this crate depends on presence: the step classifier and the", + "// request dedup in src/local.rs are both built on `.is_some()`.", + "", + 'syntax = "proto3";', + "", + f"package {fd.package};", + "", + ] + + for enum in fd.enum_type: + render_enum(enum, "", out) + out.append("") + for msg in fd.message_type: + render_message(msg, maps, "", "", out) + out.append("") + + print("\n".join(out).rstrip() + "\n") + + +if __name__ == "__main__": + main() diff --git a/scripts/install_harness.sh b/scripts/install_harness.sh index 86f18da..862087b 100755 --- a/scripts/install_harness.sh +++ b/scripts/install_harness.sh @@ -4,7 +4,11 @@ set -euo pipefail -VERSION="0.1.1" +# Must match PINNED_VERSION in scripts/check_upstream_drift.py, which enforces +# it. The SDK speaks this version's wire format: against 0.1.1 a turn never +# ends, because STATE_IDLE was renamed STATE_FULLY_IDLE in 0.1.9 and protojson +# drops the unknown variant. +VERSION="0.1.9" PLATFORM="" ARCH="$(uname -m)" OS="$(uname -s)" diff --git a/skills/google-antigravity-sdk-rust/examples/getting_started/hooks.md b/skills/google-antigravity-sdk-rust/examples/getting_started/hooks.md index 35fb41f..44a2c7a 100644 --- a/skills/google-antigravity-sdk-rust/examples/getting_started/hooks.md +++ b/skills/google-antigravity-sdk-rust/examples/getting_started/hooks.md @@ -12,7 +12,7 @@ use antigravity_sdk_rust::types::{AskQuestionEntry, HookResult, QuestionHookResu pub trait Hook: Send + Sync { /// Triggered when the agent establishes a connection and starts a session. - fn on_session_start(&self) -> impl std::future::Future> + Send { + fn on_session_start<'a>(&'a self, _context: &'a HookContext) -> impl std::future::Future> + Send { async { Ok(()) } } @@ -43,21 +43,15 @@ pub trait Hook: Send + Sync { async { Ok(()) } } - /// Triggered when a tool execution encounters an error. - /// Allows fallback logic or customized error payloads. + /// Triggered when a tool execution fails. + /// `Some(message)` replaces the error text the model is shown; `None` + /// leaves it. A failure cannot be turned into a success. fn on_tool_error<'a>( &'a self, - error: &'a anyhow::Error, - ) -> impl std::future::Future), anyhow::Error>> + Send { - async move { - Ok(( - HookResult { - allow: false, - message: error.to_string(), - }, - None, - )) - } + _error: &'a anyhow::Error, + context: &'a HookContext, + ) -> impl std::future::Future, anyhow::Error>> + Send { + async { Ok(None) } } /// Intercepts a prompt to ask the user clarifying questions. @@ -87,7 +81,7 @@ use std::sync::Arc; struct LoggerHook; impl Hook for LoggerHook { - fn on_session_start(&self) -> impl std::future::Future> + Send { + fn on_session_start<'a>(&'a self, _context: &'a HookContext) -> impl std::future::Future> + Send { async { println!("[Hook] Session has successfully started!"); Ok(()) diff --git a/skills/google-antigravity-sdk-rust/references/architecture.md b/skills/google-antigravity-sdk-rust/references/architecture.md index 8127987..764ab07 100644 --- a/skills/google-antigravity-sdk-rust/references/architecture.md +++ b/skills/google-antigravity-sdk-rust/references/architecture.md @@ -9,7 +9,7 @@ The SDK orchestrates the interactions between an LLM-based agent (running inside * **`Agent`**: Encapsulates binary discovery, workspace checks, safety policy enforcement, and registers tools/hooks. * **`Conversation`**: Manages a stateful agent turn. It coordinates the chat completion stream, accumulates step history, and decodes thoughts and text responses. * **`Connection`**: The abstract communication trait. This allows swap-in backends (e.g. standard subprocess IPC or WebSockets). -* **`Hook`**: Callback observers (`on_session_start`, `pre_turn`, `pre_tool_call`, `post_tool_call`, `on_tool_error`, `on_interaction`) allowing custom logic injection. +* **`Hook`**: Callback observers (`on_session_start`, `pre_turn`, `pre_tool_call`, `post_tool_call`, `on_tool_error` — rewords a failure, cannot clear it — `on_interaction`) allowing custom logic injection. * **`Policy`**: Middleware layer enforcing rules (e.g., workspace lock, prompt-to-run). * **`Tool`**: Custom Rust capabilities exposed to the Gemini model. @@ -103,12 +103,12 @@ The SDK has been fully refactored to leverage native async traits (stable since - **Zero-overhead Blanket Implementations**: The companion traits are automatically implemented via blanket implementations for any type implementing the base trait: ```rust pub trait DynHook: Send + Sync { - fn on_session_start(&self) -> BoxFuture<'_, Result<(), anyhow::Error>>; + fn on_session_start<'a>(&'a self, context: &'a HookContext) -> BoxFuture<'a, Result<(), anyhow::Error>>; // ... } impl DynHook for T { - fn on_session_start(&self) -> BoxFuture<'_, Result<(), anyhow::Error>> { + fn on_session_start<'a>(&'a self, context: &'a HookContext) -> BoxFuture<'a, Result<(), anyhow::Error>> { Box::pin(async move { self.on_session_start().await }) } // ... diff --git a/skills/google-antigravity-sdk-rust/references/error_handling.md b/skills/google-antigravity-sdk-rust/references/error_handling.md index 1e5593d..63582af 100644 --- a/skills/google-antigravity-sdk-rust/references/error_handling.md +++ b/skills/google-antigravity-sdk-rust/references/error_handling.md @@ -24,8 +24,9 @@ use antigravity_sdk_rust::types::{AskQuestionEntry, HookResult, QuestionHookResu pub trait Hook: Send + Sync { /// Triggered when the agent establishes a connection and starts a session. - fn on_session_start( - &self, + fn on_session_start<'a>( + &'a self, + _context: &'a HookContext, ) -> impl std::future::Future> + Send { async { Ok(()) } } @@ -48,6 +49,7 @@ pub trait Hook: Send + Sync { fn pre_tool_call<'a>( &'a self, _tool_call: &'a ToolCall, + context: &'a HookContext, ) -> impl std::future::Future> + Send { async { Ok(HookResult { @@ -61,27 +63,20 @@ pub trait Hook: Send + Sync { fn post_tool_call<'a>( &'a self, _result: &'a ToolResult, + context: &'a HookContext, ) -> impl std::future::Future> + Send { async { Ok(()) } } - /// Triggered when a tool execution encounters an error. - /// Allows fallback logic or customized error payloads. + /// Triggered when a tool execution fails; may reword the error. fn on_tool_error<'a>( &'a self, - error: &'a anyhow::Error, - ) -> impl std::future::Future< - Output = Result<(HookResult, Option), anyhow::Error>, - > + Send { - async move { - Ok(( - HookResult { - allow: false, - message: error.to_string(), - }, - None, - )) - } + _error: &'a anyhow::Error, + context: &'a HookContext, + ) -> impl std::future::Future, anyhow::Error>> + Send { + // `Some(message)` replaces the error text shown to the model; + // `None` leaves it. A failure cannot be turned into a success. + async { Ok(None) } } /// Intercepts a prompt to ask the user clarifying questions. @@ -130,19 +125,13 @@ impl Hook for DiagnosticLogger { fn on_tool_error<'a>( &'a self, error: &'a anyhow::Error, - ) -> impl std::future::Future< - Output = Result<(HookResult, Option), anyhow::Error>, - > + Send { + context: &'a HookContext, + ) -> impl std::future::Future, anyhow::Error>> + Send { async move { eprintln!("[HOOK ERROR] Tool failed: {}", error); - // Custom telemetry or recovery logic can go here - Ok(( - HookResult { - allow: false, - message: error.to_string(), - }, - None, - )) + // Telemetry, or reword the failure into something the model can act + // on. The tool still failed either way. + Ok(None) } } } diff --git a/src/agent.rs b/src/agent.rs index 9aa8729..8f70096 100644 --- a/src/agent.rs +++ b/src/agent.rs @@ -26,7 +26,17 @@ pub struct AgentConfig { /// Optional system instructions (either appended template sections or fully custom text). pub system_instructions: Option, /// Optional directory to save session state logs. + /// + /// Defaults to a per-conversation directory under the system temp + /// directory, so a harness with nowhere to write does not scatter state + /// through the caller's working directory. pub save_dir: Option, + /// Extra environment variables for the harness process. + /// + /// Added on top of the environment the harness inherits from this process; + /// sent on `InputConfig.env`. Native transport only — a browser has no + /// subprocess to give an environment to. + pub env: std::collections::HashMap, /// Configured workspaces. If not provided, defaults to the current working directory. pub workspaces: Option>, /// Paths to local folders containing custom skill modules. @@ -47,6 +57,21 @@ pub struct AgentConfig { pub response_schema: Option, /// MCP server configurations to connect to external tool servers. pub mcp_servers: Vec, + /// How the harness retries the model. Unset leaves its own defaults. + pub retry_config: Option, + /// What to do when a tool's output is too large for the context. + pub tool_output_truncation: Option, + /// Named subagents the model can delegate to. + /// + /// Each one's capabilities default to the read-only built-ins, and every + /// client-side tool it names must be registered on this agent. + pub subagents: Vec, + /// How the conversation attaches to harness-side session state. + /// + /// Leave unset for a new conversation. Set `CreateOrResume` when supplying + /// a `conversation_id`: without it a current harness attempts a resume and + /// fails when the conversation does not exist. + pub session_continuation_mode: Option, } impl std::fmt::Debug for AgentConfig { @@ -57,6 +82,7 @@ impl std::fmt::Debug for AgentConfig { .field("capabilities", &self.capabilities) .field("system_instructions", &self.system_instructions) .field("save_dir", &self.save_dir) + .field("env_keys", &self.env.keys().collect::>()) .field("workspaces", &self.workspaces) .field("skills_paths", &self.skills_paths) .field("policies", &self.policies) @@ -67,7 +93,9 @@ impl std::fmt::Debug for AgentConfig { .field("app_data_dir", &self.app_data_dir) .field("response_schema", &self.response_schema) .field("mcp_servers", &self.mcp_servers) - .finish() + .field("subagents", &self.subagents) + .field("session_continuation_mode", &self.session_continuation_mode) + .finish_non_exhaustive() } } @@ -180,7 +208,7 @@ impl Agent { /// - Write tools are enabled but no safety policies are configured. /// - The WebSocket upgrade or subprocess connection fails. #[allow(clippy::too_many_lines)] - pub fn start(self) -> BoxFuture<'static, Result, anyhow::Error>> { + pub fn start(mut self) -> BoxFuture<'static, Result, anyhow::Error>> { Box::pin(async move { // 1. Resolve binary path #[cfg(not(target_arch = "wasm32"))] @@ -246,6 +274,36 @@ impl Agent { // strategy) all read the one field. let workspaces = crate::workspace::resolve(self.config.workspaces.as_ref()); + // Upstream constrains the id (connection.py:100-107): the harness + // requires at least 32 characters and rejects anything outside + // [a-zA-Z0-9-], which otherwise surfaces as an opaque failure at + // connect time. + if let Some(ref id) = self.config.conversation_id { + if id.len() < 32 { + return Err(anyhow!( + "conversation_id must be at least 32 characters, got {}", + id.len() + )); + } + if !id.chars().all(|c| c.is_ascii_alphanumeric() || c == '-') { + return Err(anyhow!( + "conversation_id must contain only [a-zA-Z0-9-], got '{id}'" + )); + } + } + + // Upstream rejects RESUME without an id at config time + // (connection.py:109-117); this crate has no config-validation hook, + // so it is checked here. + if self.config.session_continuation_mode + == Some(crate::types::SessionContinuationMode::Resume) + && self.config.conversation_id.is_none() + { + return Err(anyhow!( + "conversation_id must be specified when session_continuation_mode is Resume" + )); + } + // 4. Set up policies let final_policies = compose_policies( self.config.policies.clone(), @@ -274,9 +332,16 @@ impl Agent { self.hook_runner.register(enforcer).await; } + // The environment can select the Vertex backend, which upstream + // honours and this crate ignored — a caller whose environment said + // Vertex silently got the Gemini API (C3). + if !self.config.gemini_config.vertex && crate::harness_config::vertex_from_env() { + self.config.gemini_config.vertex = true; + } + // 5. Register configured tools for tool in &self.config.tools { - self.tool_runner.register(tool.clone()).await; + self.tool_runner.register(tool.clone()).await?; } // 6. Build and connect strategy @@ -297,19 +362,33 @@ impl Agent { tool_runner: Some(self.tool_runner.clone()), hook_runner: Some(self.hook_runner.clone()), conversation_id: self.config.conversation_id.clone().unwrap_or_default(), + mcp_servers: self.config.mcp_servers.clone(), + subagents: self.config.subagents.clone(), + retry_config: self.config.retry_config.clone(), + tool_output_truncation: self.config.tool_output_truncation.clone(), }; let conn = strategy.connect().await?; + // The handshake reply arrives on the reader task here, so this + // waits for it rather than reading it inline as the native + // transport does. + let replayed = conn.initial_history().await; let conversation = Arc::new(Conversation::new( crate::connection::AnyConnection::Wasm(Arc::new(conn)), None, )); + conversation.seed_history(replayed).await; + self.tool_runner + .set_context(Arc::new(crate::tool_context::ToolContext::new( + conversation.connection().downgrade(), + ))) + .await; // 7. Start triggers let mut trigger_runner = None; if !self.config.triggers.is_empty() { let runner = TriggerRunner::new(self.config.triggers.clone()); - runner.start(&conversation.connection()); + runner.start(&conversation.connection())?; trigger_runner = Some(runner); } @@ -342,21 +421,42 @@ impl Agent { Some(self.tool_runner.clone()), Some(self.hook_runner.clone()), self.config.conversation_id.clone().unwrap_or_default(), + self.config.session_continuation_mode, self.config.mcp_servers.clone(), ); + let strategy = LocalConnectionStrategy { + env: self.config.env.clone(), + subagents: self.config.subagents.clone(), + retry_config: self.config.retry_config.clone(), + tool_output_truncation: self.config.tool_output_truncation.clone(), + ..strategy + }; let conn = strategy.connect().await?; + // A resumed session's history comes back in the handshake reply. + // Seeded before the first turn so `history()`, `turn_count()` + // and `last_response()` describe the session that was resumed. + let replayed = conn.initial_history().to_vec(); let conversation = Arc::new(Conversation::new( crate::connection::AnyConnection::Local(Arc::new(conn)), None, )); + conversation.seed_history(replayed).await; + // Tools that ask for a context can only get one now the + // connection exists. Weak, so the runner the connection owns + // does not keep the connection alive through this handle. + self.tool_runner + .set_context(Arc::new(crate::tool_context::ToolContext::new( + conversation.connection().downgrade(), + ))) + .await; // 7. Start triggers let trigger_runner = if self.config.triggers.is_empty() { None } else { let runner = TriggerRunner::new(self.config.triggers.clone()); - runner.start(&conversation.connection()); + runner.start(&conversation.connection())?; Some(runner) }; @@ -381,9 +481,34 @@ impl Agent { /// /// Returns an error if the execution stream encounters a failure. pub async fn chat(&self, prompt: &str) -> Result { + // Upstream rejects an empty prompt rather than sending it (agent.py). + // An empty UserInput reaches the harness as a turn with no content, so + // the model is asked to respond to nothing and the turn is wasted. + if prompt.trim().is_empty() { + return Err(anyhow!("prompt must not be empty")); + } self.state.conversation.chat_to_completion(prompt).await } + /// Sends a multimodal prompt — text, attachments, slash commands — and + /// resolves once the model completes its response. + /// + /// # Errors + /// + /// Returns an error if the prompt carries nothing, or if the turn fails. + pub async fn chat_content( + &self, + content: &crate::types::Content, + ) -> Result { + if content.is_empty() { + return Err(anyhow!("prompt must not be empty")); + } + self.state + .conversation + .chat_content_to_completion(content) + .await + } + /// Returns the active [`Conversation`] session. pub fn conversation(&self) -> Arc { self.state.conversation.clone() @@ -400,6 +525,11 @@ impl Agent { /// /// Returns an error if closing the connection fails. pub async fn stop(&self) -> Result<(), anyhow::Error> { + // Before disconnecting: triggers hold a connection handle, and stopping + // them afterwards left a background task nudging a dead session. + if let Some(ref runner) = self.state.trigger_runner { + runner.stop(); + } self.state.conversation.disconnect().await?; Ok(()) } @@ -469,11 +599,53 @@ impl

AgentBuilder

{ self } + /// Sets how the harness retries the model. + #[allow(clippy::missing_const_for_fn)] // consistent with every other builder method + pub fn retry_config(mut self, retry_config: crate::types::RetryConfig) -> Self { + self.config.retry_config = Some(retry_config); + self + } + + /// Sets what happens when a tool's output is too large for the context. + pub fn tool_output_truncation( + mut self, + truncation: crate::types::ToolOutputTruncation, + ) -> Self { + self.config.tool_output_truncation = Some(truncation); + self + } + + /// Declares a named subagent the model can delegate to. + pub fn subagent(mut self, subagent: crate::types::SubagentConfig) -> Self { + self.config.subagents.push(subagent); + self + } + + /// Replaces the declared subagents. + pub fn subagents(mut self, subagents: Vec) -> Self { + self.config.subagents = subagents; + self + } + pub fn save_dir(mut self, save_dir: impl Into) -> Self { self.config.save_dir = Some(save_dir.into()); self } + /// Adds environment variables for the harness process. + /// + /// Merged into whatever was set before, so it can be called more than once. + pub fn env(mut self, vars: impl IntoIterator) -> Self + where + K: Into, + V: Into, + { + self.config + .env + .extend(vars.into_iter().map(|(k, v)| (k.into(), v.into()))); + self + } + pub fn workspaces(mut self, workspaces: Vec) -> Self { self.config.workspaces = Some(workspaces); self @@ -524,6 +696,19 @@ impl

AgentBuilder

{ } } + /// Sets how the conversation attaches to harness-side session state. + /// + /// Pair with [`conversation_id`](Self::conversation_id): a current harness + /// refuses a caller-supplied id it has never seen unless this is + /// `CreateOrResume`. + pub const fn session_continuation_mode( + mut self, + mode: crate::types::SessionContinuationMode, + ) -> Self { + self.config.session_continuation_mode = Some(mode); + self + } + pub fn conversation_id(mut self, conversation_id: impl Into) -> Self { self.config.conversation_id = Some(conversation_id.into()); self @@ -551,6 +736,35 @@ impl

AgentBuilder

{ self } + /// Sets the policy set from a mix of groups and individual policies. + /// + /// The group builders return `Vec` and the individual ones return a + /// `Policy`, so composing them previously meant assembling the vector by + /// hand. Upstream flattens nested sequences for the same reason + /// (`connection.py:138-159`). + /// + /// ```no_run + /// use antigravity_sdk_rust::{agent::Agent, policy}; + /// + /// let agent = Agent::builder() + /// .policy_groups([ + /// policy::workspace_only(vec!["/srv/app".to_string()]), + /// vec![policy::deny("RUN_COMMAND"), policy::allow_all()], + /// ]) + /// .build(); + /// ``` + pub fn policy_groups(self, groups: I) -> AgentBuilder + where + I: IntoIterator, + G: crate::policy::IntoPolicies, + { + let flattened: Vec = groups + .into_iter() + .flat_map(crate::policy::IntoPolicies::into_policies) + .collect(); + self.policies(flattened) + } + pub fn policies(self, policies: Vec) -> AgentBuilder { let mut config = self.config; config.policies = Some(policies); @@ -595,7 +809,6 @@ impl AgentBuilder { } } -#[cfg(not(target_arch = "wasm32"))] /// Builds the effective policy list for an agent. /// /// Extracted from `Agent::start` so the composition can be tested without a @@ -664,6 +877,7 @@ fn compose_policies( Ok(final_policies) } +#[cfg(not(target_arch = "wasm32"))] fn get_default_binary_path() -> Option { if let Ok(path) = std::env::var("ANTIGRAVITY_HARNESS_PATH") { return Some(path); @@ -824,6 +1038,7 @@ mod tests { name: "VIEW_FILE".to_string(), args: serde_json::json!({}), canonical_path: Some("/app-data/state.json".to_string()), + server_name: None, }; // `when` is "is outside the workspace", so false means allowed. assert!(!scoped(&inside_app_data)); diff --git a/src/bin/mock_localharness.rs b/src/bin/mock_localharness.rs index c20ecec..d5a0a27 100644 --- a/src/bin/mock_localharness.rs +++ b/src/bin/mock_localharness.rs @@ -55,6 +55,17 @@ async fn main() -> Result<(), Box> { stdout.write_all(&output_buf).await?; stdout.flush().await?; + // Exit on stdin EOF, which is how `disconnect()` asks the harness to shut + // down (the real one monitors stdin for the same reason). Without this the + // mock outlived every test by the client's full 3-minute process-wait + // timeout — the integration suite took six minutes, almost all of it spent + // waiting for a process that was never going to exit on its own. + tokio::spawn(async move { + let mut sink = Vec::new(); + let _ = stdin.read_to_end(&mut sink).await; + std::process::exit(0); + }); + // 4. Accept a TCP connection and upgrade to WebSocket let (stream, _) = listener.accept().await?; let ws_stream = accept_async(stream).await?; @@ -64,6 +75,8 @@ async fn main() -> Result<(), Box> { } #[cfg(not(target_arch = "wasm32"))] +#[allow(clippy::too_many_lines)] // one branch per scripted scenario; splitting +// them would scatter the wire format across helpers for no gain async fn handle_ws_connection( mut ws_stream: tokio_tungstenite::WebSocketStream, client_lang: &str, @@ -74,6 +87,23 @@ async fn handle_ws_connection( let _ = msg_res?; } + // Answer the handshake. Since 0.1.4 this is the harness's mandatory first + // frame, and upstream's client blocks on it before doing anything else + // (local_connection.py:1162-1176). The SDK does not read it yet — that is + // WP-6 — but the mock must send it, or it will keep certifying a handshake + // no real harness performs. + let init_response = serde_json::json!({ + "initializeConversationResponse": { + "cascadeId": "test_traj", + "history": [] + }, + "seqNum": "1", + "timestampMicros": "1" + }); + ws_stream + .send(WsMessage::Text(init_response.to_string())) + .await?; + // Read client user prompt message let mut prompt = String::new(); if let Some(msg_res) = ws_stream.next().await { @@ -94,14 +124,210 @@ async fn handle_ws_connection( .send(WsMessage::Text(traj_running.to_string())) .await?; - if prompt.contains("trigger_terminal_error") { + if let Some(path) = prompt + .split("trigger_tool_confirmation:") + .nth(1) + .map(|rest| rest.trim_end_matches(['"', '}', ' ']).to_string()) + { + // Drive a real pre-tool gate: a VIEW_FILE the harness wants confirmed. + // The SDK answers with ToolConfirmation{accepted}, which is the policy + // layer's decision observed from the outside — the only way to prove + // the enforcer is actually registered and consulted at runtime. + // + // STATE_WAITING_FOR_USER matters: the client only treats a confirmation + // request as new while the step is in that state. + let step_confirm = serde_json::json!({ + "stepUpdate": { + "stepIndex": 1, + "cascadeId": "test_traj", + "trajectoryId": "test_traj", + "text": "Requesting confirmation", + "state": "STATE_WAITING_FOR_USER", + "source": "SOURCE_MODEL", + "target": "TARGET_USER", + "viewFile": { "filePath": path }, + "toolConfirmationRequest": {} + } + }); + ws_stream + .send(WsMessage::Text(step_confirm.to_string())) + .await?; + + // Wait for the client's decision and report it back in the turn's text, + // so a test can assert on it without reaching into the SDK. + let mut accepted = "none".to_string(); + while let Some(msg_res) = ws_stream.next().await { + let WsMessage::Text(text) = msg_res? else { + continue; + }; + let Ok(value) = serde_json::from_str::(&text) else { + continue; + }; + if let Some(confirmation) = value.get("toolConfirmation") { + accepted = confirmation + .get("accepted") + .and_then(serde_json::Value::as_bool) + .unwrap_or(false) + .to_string(); + break; + } + } + + let step_done = serde_json::json!({ + "stepUpdate": { + "stepIndex": 2, + "cascadeId": "test_traj", + "trajectoryId": "test_traj", + "text": format!("accepted={accepted}"), + "textDelta": format!("accepted={accepted}"), + "state": "STATE_DONE", + "source": "SOURCE_MODEL", + "target": "TARGET_USER", + "finish": { "outputString": "\"done\"" } + } + }); + ws_stream + .send(WsMessage::Text(step_done.to_string())) + .await?; + } else if prompt.contains("trigger_hook_request") { + // The real harness blocks its turn here. If the client never answers, + // this branch stalls and the test times out — which is exactly the + // failure the router exists to prevent. + let hook_request = serde_json::json!({ + "callHookRequest": { + "requestId": "hook-1", + "name": "pre_tool", + "type": "LIFECYCLE_HOOK_PRE_TOOL", + "preToolArgs": { + "toolName": "RUN_COMMAND", + "argumentsJson": "{\"command_line\":\"rm -rf /\"}" + } + } + }); + ws_stream + .send(WsMessage::Text(hook_request.to_string())) + .await?; + + let mut decision = "none".to_string(); + while let Some(msg_res) = ws_stream.next().await { + let WsMessage::Text(text) = msg_res? else { + continue; + }; + let Ok(value) = serde_json::from_str::(&text) else { + continue; + }; + if let Some(response) = value.get("callHookResponse") { + decision = response + .get("preToolResult") + .and_then(|r| r.get("decision")) + .and_then(serde_json::Value::as_str) + .unwrap_or("missing") + .to_string(); + break; + } + } + + let step = serde_json::json!({ + "stepUpdate": { + "stepIndex": 1, + "cascadeId": "test_traj", + "trajectoryId": "test_traj", + "text": format!("hook decision={decision}"), + "textDelta": format!("hook decision={decision}"), + "state": "STATE_DONE", + "source": "SOURCE_MODEL", + "target": "TARGET_USER", + "finish": { "outputString": "\"done\"" } + } + }); + ws_stream.send(WsMessage::Text(step.to_string())).await?; + } else if prompt.contains("trigger_subagent") { + // Upstream's subagent fixture: a main-trajectory step establishes the + // main trajectory, a step on a second trajectory carries the subagent's + // output, and that trajectory going idle is how the START_SUBAGENT call + // completes — there is no tool response for it. + let main_step = serde_json::json!({ + "stepUpdate": { + "stepIndex": 1, + "cascadeId": "test_traj", + "trajectoryId": "test_traj", + "text": "delegating", + "state": "STATE_ACTIVE", + "source": "SOURCE_MODEL", + "target": "TARGET_USER" + } + }); + ws_stream + .send(WsMessage::Text(main_step.to_string())) + .await?; + + let sub_step = serde_json::json!({ + "stepUpdate": { + "stepIndex": 1, + "cascadeId": "test_traj", + "trajectoryId": "sub_traj", + "text": "Here is a poem about nature.", + "state": "STATE_ACTIVE", + "source": "SOURCE_MODEL", + "target": "TARGET_USER" + } + }); + ws_stream + .send(WsMessage::Text(sub_step.to_string())) + .await?; + + let sub_idle = serde_json::json!({ + "trajectoryStateUpdate": { + "trajectoryId": "sub_traj", + "state": "STATE_FULLY_IDLE" + } + }); + ws_stream + .send(WsMessage::Text(sub_idle.to_string())) + .await?; + tokio::time::sleep(Duration::from_millis(100)).await; + } else if prompt.contains("trigger_crash") { + // Die mid-turn the way a real crash does: something on stderr, then the + // socket drops with no idle transition. The sleep gives the client's + // stderr reader time to see the line before the socket closes; the two + // arrive on different channels and are not ordered against each other. + eprintln!("panic: mock harness exploded"); + tokio::time::sleep(Duration::from_millis(200)).await; + std::process::exit(101); + } else if prompt.contains("trigger_cancel") { + // Emit one step, then stall until the client halts. The real harness + // answers a halt with an ordinary STATE_FULLY_IDLE — it does *not* send + // STATE_CANCELLED — which is exactly the case the client-side flag + // exists to disambiguate. Waiting for the frame rather than sleeping + // keeps the test deterministic. + let step1 = serde_json::json!({ + "stepUpdate": { + "stepIndex": 1, + "cascadeId": "test_traj", + "trajectoryId": "test_traj", + "text": "Working...", + "state": "STATE_ACTIVE", + "source": "SOURCE_MODEL", + "target": "TARGET_USER" + } + }); + ws_stream.send(WsMessage::Text(step1.to_string())).await?; + + while let Some(msg_res) = ws_stream.next().await { + match msg_res? { + WsMessage::Text(text) if text.contains("haltRequest") => break, + WsMessage::Close(_) => break, + _ => {} + } + } + } else if prompt.contains("trigger_terminal_error") { let step_terminal = serde_json::json!({ "stepUpdate": { "stepIndex": 1, "cascadeId": "test_traj", "trajectoryId": "test_traj", "text": "Terminal error triggered", - "state": "STATE_TERMINAL_ERROR", + "state": "STATE_ERROR", "source": "SOURCE_MODEL", "target": "TARGET_USER", "errorMessage": "Terminal error triggered by prompt" @@ -150,15 +376,27 @@ async fn handle_ws_connection( let traj_idle = serde_json::json!({ "trajectoryStateUpdate": { "trajectoryId": "test_traj", - "state": "STATE_IDLE" + // Renamed from STATE_IDLE upstream in 0.1.9. The numeric value is + // still 2, but protojson matches on the value NAME, so the old + // spelling is dropped as an unknown variant and the turn never ends. + "state": "STATE_FULLY_IDLE" } }); ws_stream .send(WsMessage::Text(traj_idle.to_string())) .await?; - // Keep reading until client disconnects or we get terminated + // Keep reading until client disconnects or we get terminated. A + // sessionEndRequest must be answered: the client waits for the acknowledgement + // before tearing the process down, exactly as it does against a real harness. while let Some(msg_res) = ws_stream.next().await { + if let Ok(WsMessage::Text(ref text)) = msg_res + && text.contains("sessionEndRequest") + { + let ack = serde_json::json!({ "sessionEndResponse": true }); + let _ = ws_stream.send(WsMessage::Text(ack.to_string())).await; + continue; + } if msg_res.is_err() { break; } diff --git a/src/bin/start_harness.rs b/src/bin/start_harness.rs index a29ff5a..10d66a6 100644 --- a/src/bin/start_harness.rs +++ b/src/bin/start_harness.rs @@ -42,6 +42,7 @@ fn main() -> Result<(), Box> { // Create InputConfig let input_config = InputConfig { + env: std::collections::HashMap::new(), storage_directory: Some("target/harness_store".to_string()), port: Some(8000), bind_address: Some("127.0.0.1".to_string()), diff --git a/src/coerce.rs b/src/coerce.rs new file mode 100644 index 0000000..cc8050e --- /dev/null +++ b/src/coerce.rs @@ -0,0 +1,188 @@ +//! Coercion of model-supplied tool arguments to the types a tool declared. +//! +//! Models routinely send `"3"` where a schema says `integer`, `"true"` where it +//! says `boolean`, or a bare value where it says `array`. Passing those through +//! meant a tool's `serde` deserialization failed and the model was told its +//! *tool* had broken, when the argument was one conversion away from valid. +//! +//! Only unambiguous conversions are performed. Anything else is left exactly as +//! it arrived, so a genuine type error still surfaces as one. + +use serde_json::Value; + +/// Coerces `args` in place against `schema`, a JSON Schema for the tool's +/// parameters. +/// +/// A schema that cannot be parsed, or that describes something other than an +/// object, leaves the arguments untouched. +pub fn coerce_arguments(args: &mut Value, schema: &str) { + let Ok(schema) = serde_json::from_str::(schema) else { + return; + }; + coerce_value(args, &schema); +} + +fn coerce_value(value: &mut Value, schema: &Value) { + match declared_type(schema) { + Some("object") => { + let Some(properties) = schema.get("properties").and_then(Value::as_object) else { + return; + }; + // A JSON object arriving as a string is the one whole-value + // conversion worth doing here; after it, fall through to the + // per-property pass. + if let Some(text) = value.as_str() + && let Ok(parsed) = serde_json::from_str::(text) + && parsed.is_object() + { + *value = parsed; + } + let Some(fields) = value.as_object_mut() else { + return; + }; + for (name, property_schema) in properties { + if let Some(field) = fields.get_mut(name) { + coerce_value(field, property_schema); + } + } + } + Some("array") => { + if let Some(text) = value.as_str() + && let Ok(parsed) = serde_json::from_str::(text) + && parsed.is_array() + { + *value = parsed; + } + if let Some(items_schema) = schema.get("items") + && let Some(items) = value.as_array_mut() + { + for item in items { + coerce_value(item, items_schema); + } + } + } + Some(kind @ ("integer" | "number" | "boolean" | "string")) => coerce_scalar(value, kind), + _ => {} + } +} + +fn coerce_scalar(value: &mut Value, kind: &str) { + let Some(text) = value.as_str().map(str::trim).map(str::to_string) else { + // A number or bool where a string was asked for: render it rather than + // fail. The reverse (`3` for `integer`) is already correct. + if kind == "string" && (value.is_number() || value.is_boolean()) { + *value = Value::String(value.to_string()); + } + return; + }; + + match kind { + "integer" => { + if let Ok(n) = text.parse::() { + *value = Value::from(n); + } + } + "number" => { + if let Ok(n) = text.parse::() + && let Some(n) = serde_json::Number::from_f64(n) + { + *value = Value::Number(n); + } + } + "boolean" => match text.to_ascii_lowercase().as_str() { + "true" => *value = Value::Bool(true), + "false" => *value = Value::Bool(false), + _ => {} + }, + _ => {} + } +} + +/// The schema's declared type, treating `["string", "null"]` as `string`. +fn declared_type(schema: &Value) -> Option<&str> { + match schema.get("type")? { + Value::String(s) => Some(s.as_str()), + Value::Array(members) => members + .iter() + .filter_map(Value::as_str) + .find(|s| *s != "null"), + _ => None, + } +} + +/// Convenience wrapper: coerce and return. +#[must_use] +pub fn coerced(mut args: Value, schema: &str) -> Value { + coerce_arguments(&mut args, schema); + args +} + +#[cfg(test)] +mod tests { + use super::coerced; + use serde_json::json; + + const SCHEMA: &str = r#"{ + "type": "object", + "properties": { + "limit": {"type": "integer"}, + "ratio": {"type": "number"}, + "dry_run": {"type": "boolean"}, + "label": {"type": "string"}, + "tags": {"type": "array", "items": {"type": "integer"}}, + "nested": {"type": "object", "properties": {"deep": {"type": "boolean"}}} + } + }"#; + + #[test] + fn strings_become_the_declared_scalar() { + let out = coerced( + json!({"limit": "3", "ratio": "0.5", "dry_run": "TRUE"}), + SCHEMA, + ); + assert_eq!(out["limit"], json!(3)); + assert_eq!(out["ratio"], json!(0.5)); + assert_eq!(out["dry_run"], json!(true)); + } + + #[test] + fn a_number_becomes_a_string_when_one_was_asked_for() { + let out = coerced(json!({"label": 7}), SCHEMA); + assert_eq!(out["label"], json!("7")); + } + + #[test] + fn arrays_and_objects_arriving_as_json_text_are_parsed() { + let out = coerced( + json!({"tags": "[\"1\", \"2\"]", "nested": "{\"deep\": \"false\"}"}), + SCHEMA, + ); + assert_eq!(out["tags"], json!([1, 2]), "items coerce too"); + assert_eq!(out["nested"]["deep"], json!(false)); + } + + /// A value that is not one conversion away from valid must arrive + /// unchanged, so a real type error still reads as one. + #[test] + fn nonsense_is_left_alone() { + let out = coerced(json!({"limit": "not a number", "dry_run": "maybe"}), SCHEMA); + assert_eq!(out["limit"], json!("not a number")); + assert_eq!(out["dry_run"], json!("maybe")); + } + + #[test] + fn unknown_keys_and_broken_schemas_pass_through() { + let out = coerced(json!({"surprise": "5"}), SCHEMA); + assert_eq!(out["surprise"], json!("5")); + assert_eq!( + coerced(json!({"limit": "3"}), "not json")["limit"], + json!("3") + ); + } + + #[test] + fn a_nullable_type_still_coerces() { + let schema = r#"{"type":"object","properties":{"n":{"type":["integer","null"]}}}"#; + assert_eq!(coerced(json!({"n": "12"}), schema)["n"], json!(12)); + } +} diff --git a/src/connection.rs b/src/connection.rs index 216d236..6864604 100644 --- a/src/connection.rs +++ b/src/connection.rs @@ -20,6 +20,13 @@ pub trait Connection: Send + Sync { /// Returns whether the connection is currently idle. fn is_idle(&self) -> bool; + /// Resolves once the connection is idle. + /// + /// Returns immediately if it already is. Callers that need to know a turn + /// has finished previously had to poll `is_idle()` in a sleep loop, which + /// is both slower to notice and easy to write as a busy wait. + fn wait_for_idle(&self) -> impl std::future::Future + Send; + /// Subscribes to the stream of step updates from the connection. fn receive_steps(&self) -> BoxStream<'static, Result>; @@ -29,6 +36,15 @@ pub trait Connection: Send + Sync { content: &str, ) -> impl std::future::Future> + Send; + /// Sends a multimodal prompt — text, attachments, slash commands. + /// + /// Goes out as `complex_user_input`; the plain `send` field is a bare + /// string and cannot carry either. + fn send_content( + &self, + content: &crate::types::Content, + ) -> impl std::future::Future> + Send; + /// Sends a trigger notification message to the connection. fn send_trigger_notification( &self, @@ -78,6 +94,60 @@ pub enum AnyConnection { Mock(std::sync::Arc), } +/// A non-owning handle to a connection. +/// +/// The tool runner is owned by the connection, and a [`ToolContext`] handed to +/// a tool points back at that connection — holding it strongly would make a +/// reference cycle that never frees the session. Tools upgrade on use and see +/// `None` once the agent has stopped. +/// +/// [`ToolContext`]: crate::tool_context::ToolContext +#[derive(Clone)] +pub enum WeakConnection { + #[cfg(not(target_arch = "wasm32"))] + Local(std::sync::Weak), + #[cfg(target_arch = "wasm32")] + Wasm(std::sync::Weak), + #[cfg(test)] + Mock(std::sync::Weak), +} + +impl std::fmt::Debug for WeakConnection { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + f.write_str("WeakConnection") + } +} + +impl WeakConnection { + /// Returns a live connection, or `None` if the session has ended. + #[must_use] + pub fn upgrade(&self) -> Option { + match self { + #[cfg(not(target_arch = "wasm32"))] + Self::Local(c) => c.upgrade().map(AnyConnection::Local), + #[cfg(target_arch = "wasm32")] + Self::Wasm(c) => c.upgrade().map(AnyConnection::Wasm), + #[cfg(test)] + Self::Mock(c) => c.upgrade().map(AnyConnection::Mock), + } + } +} + +impl AnyConnection { + /// Produces a non-owning handle to this connection. + #[must_use] + pub fn downgrade(&self) -> WeakConnection { + match self { + #[cfg(not(target_arch = "wasm32"))] + Self::Local(c) => WeakConnection::Local(std::sync::Arc::downgrade(c)), + #[cfg(target_arch = "wasm32")] + Self::Wasm(c) => WeakConnection::Wasm(std::sync::Arc::downgrade(c)), + #[cfg(test)] + Self::Mock(c) => WeakConnection::Mock(std::sync::Arc::downgrade(c)), + } + } +} + impl std::fmt::Debug for AnyConnection { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { match self { @@ -114,6 +184,17 @@ impl Connection for AnyConnection { } } + async fn wait_for_idle(&self) { + match self { + #[cfg(not(target_arch = "wasm32"))] + Self::Local(c) => c.wait_for_idle().await, + #[cfg(target_arch = "wasm32")] + Self::Wasm(c) => c.wait_for_idle().await, + #[cfg(test)] + Self::Mock(c) => c.wait_for_idle().await, + } + } + fn receive_steps(&self) -> BoxStream<'static, Result> { match self { #[cfg(not(target_arch = "wasm32"))] @@ -136,6 +217,17 @@ impl Connection for AnyConnection { } } + async fn send_content(&self, content: &crate::types::Content) -> Result<(), anyhow::Error> { + match self { + #[cfg(not(target_arch = "wasm32"))] + Self::Local(c) => c.send_content(content).await, + #[cfg(target_arch = "wasm32")] + Self::Wasm(c) => c.send_content(content).await, + #[cfg(test)] + Self::Mock(c) => c.send_content(content).await, + } + } + async fn send_trigger_notification(&self, content: &str) -> Result<(), anyhow::Error> { match self { #[cfg(not(target_arch = "wasm32"))] @@ -262,6 +354,20 @@ impl MockConnection { sent_prompts: std::sync::Mutex::new(Vec::new()), } } + + /// Queues the steps `receive_steps()` will yield. + pub fn set_steps(&self, steps: Vec) { + *self + .steps_to_yield + .lock() + .unwrap_or_else(std::sync::PoisonError::into_inner) = steps; + } + + /// Sets what `is_idle()` reports. + pub fn set_idle(&self, idle: bool) { + self.is_idle + .store(idle, std::sync::atomic::Ordering::SeqCst); + } } #[cfg(test)] @@ -274,6 +380,12 @@ impl Connection for MockConnection { self.is_idle.load(std::sync::atomic::Ordering::SeqCst) } + async fn wait_for_idle(&self) { + while !self.is_idle() { + tokio::task::yield_now().await; + } + } + fn receive_steps(&self) -> BoxStream<'static, Result> { let steps = self .steps_to_yield @@ -295,6 +407,19 @@ impl Connection for MockConnection { Ok(()) } + async fn send_content(&self, content: &crate::types::Content) -> Result<(), anyhow::Error> { + let text = content + .parts() + .into_iter() + .filter_map(|part| match part { + crate::types::ContentPrimitive::Text(text) => Some(text.clone()), + _ => None, + }) + .collect::>() + .join(" "); + self.send(&text).await + } + async fn send_halt_request(&self) -> Result<(), anyhow::Error> { Ok(()) } diff --git a/src/context.rs b/src/context.rs index cd32449..bb68671 100644 --- a/src/context.rs +++ b/src/context.rs @@ -4,10 +4,9 @@ //! and `set()` writes only to the local store. This enables state sharing across //! hook lifecycle events (session → turn → operation scope). +use crate::state::StateStore; use serde::{Serialize, de::DeserializeOwned}; -use serde_json::Value; -use std::collections::HashMap; -use std::sync::{Arc, Mutex}; +use std::sync::Arc; /// A hierarchical key-value store for sharing state across hook invocations. /// @@ -17,7 +16,7 @@ use std::sync::{Arc, Mutex}; #[derive(Debug, Clone)] pub struct HookContext { parent: Option>, - store: Arc>>, + store: StateStore, } impl HookContext { @@ -25,7 +24,7 @@ impl HookContext { pub fn new() -> Self { Self { parent: None, - store: Arc::new(Mutex::new(HashMap::new())), + store: StateStore::new(), } } @@ -34,33 +33,35 @@ impl HookContext { pub fn child(parent: Arc) -> Self { Self { parent: Some(parent), - store: Arc::new(Mutex::new(HashMap::new())), + store: StateStore::new(), } } /// Retrieves a value by key, walking up the parent chain if not found locally. /// Returns `None` if the key is not found in any context in the hierarchy. - #[allow(clippy::collapsible_if)] pub fn get(&self, key: &str) -> Option { - // Check local store first - if let Ok(store) = self.store.lock() { - if let Some(value) = store.get(key) { - return serde_json::from_value(value.clone()).ok(); - } - } - // Walk up parent chain - self.parent.as_ref().and_then(|p| p.get(key)) + self.store + .get(key) + .or_else(|| self.parent.as_ref().and_then(|parent| parent.get(key))) } /// Sets a value in the **local** store only (does not write to parents). /// If the key already exists locally, it is overwritten. - #[allow(clippy::collapsible_if)] pub fn set(&self, key: &str, value: T) { - if let Ok(mut store) = self.store.lock() { - if let Ok(v) = serde_json::to_value(value) { - store.insert(key.to_string(), v); - } - } + self.store.set(key, value); + } + + /// Atomically reads, transforms and writes a **local** entry. + /// + /// Does not walk the parent chain: a read-modify-write that fell through to + /// a parent would write the result locally and leave the parent stale, + /// which reads as a lost update. + pub fn update(&self, key: &str, transform: F) + where + T: Serialize + DeserializeOwned, + F: FnOnce(Option) -> Option, + { + self.store.update(key, transform); } /// Returns `true` if this context has a parent (i.e., is not a root/session context). diff --git a/src/conversation.rs b/src/conversation.rs index efabd4f..4da8b90 100644 --- a/src/conversation.rs +++ b/src/conversation.rs @@ -68,6 +68,35 @@ impl Conversation { } } + /// Pre-populates history with steps the harness replayed when the session + /// was resumed. + /// + /// Called once by `Agent::start`, before any turn. Turn boundaries are + /// recovered from the steps themselves — each one sourced from the user + /// opens a turn — so [`turn_count`](Self::turn_count) and + /// [`last_response`](Self::last_response) describe the resumed session + /// rather than an empty one. Without this a resumed conversation looked + /// brand new to the caller even though the harness had its full history. + /// + /// A no-op if history is already non-empty, so it cannot clobber a live + /// session. + pub async fn seed_history(&self, steps: Vec) { + if steps.is_empty() { + return; + } + let mut state = self.state.lock().await; + if !state.steps.is_empty() { + return; + } + state.turn_start_indices = steps + .iter() + .enumerate() + .filter(|(_, s)| s.source == crate::types::StepSource::User) + .map(|(i, _)| i) + .collect(); + state.steps = steps; + } + /// Returns the underlying [`Connection`]. pub fn connection(&self) -> AnyConnection { self.conn.clone() @@ -83,6 +112,13 @@ impl Conversation { self.conn.is_idle() } + /// Resolves once the turn in flight has finished. + /// + /// Returns immediately if none is running. + pub async fn wait_for_idle(&self) { + self.conn.wait_for_idle().await; + } + /// Retrieves a copy of the current conversation history steps. pub async fn history(&self) -> Vec { self.state.lock().await.steps.clone() @@ -134,15 +170,30 @@ impl Conversation { /// Sends a text prompt to the connection and registers the turn start boundary. /// + /// Any steps still queued from the previous turn are drained into history + /// first. + /// /// # Errors /// /// Returns an error if the underlying connection fails to transmit the prompt. pub async fn send(&self, prompt: &str) -> Result<(), anyhow::Error> { - // If not idle, wait for it - if !self.conn.is_idle() { - // Note: Unlike Python's runtime RuntimeError handling, in Rust we can just wait - // or let the stream run-loop handle it. + // Drain whatever is left of the previous turn into history before + // starting a new one (upstream `conversation.py:125-134`). A caller who + // stopped reading mid-turn used to lose those steps entirely, and the + // next turn's boundary was recorded at the wrong index. + // + // If another consumer holds the step stream, `receive_steps()` yields a + // single error and this ends immediately rather than fighting it. + // + // Only after a turn has actually been sent: a fresh connection reports + // not-idle until the harness says otherwise, and draining there would + // block forever on a stream with nothing to deliver. + let turn_in_flight = !self.state.lock().await.turn_start_indices.is_empty(); + if turn_in_flight && !self.conn.is_idle() { + let mut leftovers = self.receive_steps(); + while leftovers.next().await.is_some() {} } + let mut state = self.state.lock().await; let len = state.steps.len(); state.turn_start_indices.push(len); @@ -151,6 +202,50 @@ impl Conversation { self.conn.send(prompt).await } + /// Sends a multimodal prompt — text, attachments, slash commands. + /// + /// The same turn bookkeeping as [`send`](Self::send), including the drain + /// of the previous turn. + /// + /// # Errors + /// + /// Returns an error if the prompt is empty, or if the connection fails. + pub async fn send_content(&self, content: &crate::types::Content) -> Result<(), anyhow::Error> { + if content.is_empty() { + return Err(anyhow::anyhow!( + "the prompt is empty; an empty prompt is rejected before it reaches the harness" + )); + } + + let turn_in_flight = !self.state.lock().await.turn_start_indices.is_empty(); + if turn_in_flight && !self.conn.is_idle() { + let mut leftovers = self.receive_steps(); + while leftovers.next().await.is_some() {} + } + + let mut state = self.state.lock().await; + let len = state.steps.len(); + state.turn_start_indices.push(len); + state.turn_usage = None; + drop(state); + self.conn.send_content(content).await + } + + /// The structured output of the most recent `FINISH`, if there was one. + /// + /// This is what a `response_schema` produces. Reaching it previously meant + /// walking `history()` backwards looking for the right step type. + pub async fn last_structured_output(&self) -> Option { + let state = self.state.lock().await; + let found = state + .steps + .iter() + .rev() + .find_map(|step| step.structured_output.clone()); + drop(state); + found + } + /// Subscribes to step updates from the connection, inserting them into history and enforcing history limits. pub fn receive_steps(&self) -> BoxStream<'static, Result> { let conn_stream = self.conn.receive_steps(); @@ -289,7 +384,26 @@ impl Conversation { /// /// Returns an error if sending the prompt or receiving chunk responses fails. pub async fn chat_to_completion(&self, prompt: &str) -> Result { - let mut chunks = self.chat(prompt).await?; + self.send(prompt).await?; + self.collect_turn().await + } + + /// Sends a multimodal prompt and collects the whole reply. + /// + /// # Errors + /// + /// Returns an error if the prompt is empty or the connection fails. + pub async fn chat_content_to_completion( + &self, + content: &crate::types::Content, + ) -> Result { + self.send_content(content).await?; + self.collect_turn().await + } + + /// Drains the turn in flight into a [`ChatResponse`]. + async fn collect_turn(&self) -> Result { + let mut chunks = self.receive_chunks(); let mut text = String::new(); let mut thinking = String::new(); while let Some(chunk_res) = chunks.next().await { @@ -303,8 +417,20 @@ impl Conversation { StreamChunk::ToolCall(_) => {} } } - let steps = self.history().await; - let usage_metadata = self.total_usage().await; + // Steps for THIS turn, not the whole session. `history()` returns + // everything, so a long conversation returned the entire transcript on + // every reply -- growing without bound and making the field useless for + // "what just happened". turn_start_indices is already tracked for this. + let steps = { + let state = self.state.lock().await; + let start = state.turn_start_indices.last().copied().unwrap_or(0); + state + .steps + .get(start..) + .map(<[Step]>::to_vec) + .unwrap_or_default() + }; + let usage_metadata = self.last_turn_usage().await; Ok(ChatResponse { text, thinking, @@ -313,6 +439,25 @@ impl Conversation { }) } + /// Halts the turn in flight. + /// + /// The harness stops the trajectory and reports ordinary idle, so the + /// connection marks the turn as caller-cancelled: the in-flight + /// `receive_steps()` stream yields + /// [`AntigravityError::Cancelled`](crate::error::AntigravityError::Cancelled) + /// before it ends, which is what distinguishes a halted turn from one that + /// simply finished. + /// + /// Cancelling when no turn is running is harmless — the flag is cleared by + /// the next [`send`](Self::send). + /// + /// # Errors + /// + /// Returns an error if the halt request cannot be transmitted. + pub async fn cancel(&self) -> Result<(), anyhow::Error> { + self.conn.send_halt_request().await + } + /// Gracefully closes the underlying connection. /// /// # Errors @@ -358,6 +503,94 @@ mod tests { assert_eq!(conv.turn_count().await, 0); } + #[tokio::test] + async fn seed_history_recovers_turn_boundaries() { + let (_conn, conv) = test_setup("conv-123", Some(10)); + let replayed = vec![ + Step { + source: StepSource::User, + content: "first question".to_string(), + ..Default::default() + }, + Step { + source: StepSource::Model, + content: "first answer".to_string(), + is_complete_response: Some(true), + ..Default::default() + }, + Step { + source: StepSource::User, + content: "second question".to_string(), + ..Default::default() + }, + Step { + source: StepSource::Model, + content: "second answer".to_string(), + is_complete_response: Some(true), + ..Default::default() + }, + ]; + conv.seed_history(replayed).await; + + assert_eq!(conv.history().await.len(), 4); + // Two user prompts in the replay: the resumed session is two turns in, + // not zero. + assert_eq!(conv.turn_count().await, 2); + assert_eq!(conv.last_response().await, "second answer"); + } + + /// Seeding must never overwrite a session that has already said something. + #[tokio::test] + async fn seed_history_leaves_a_live_session_alone() { + let (_conn, conv) = test_setup("conv-123", Some(10)); + conv.seed_history(vec![Step { + source: StepSource::User, + content: "resumed".to_string(), + ..Default::default() + }]) + .await; + conv.seed_history(vec![Step { + source: StepSource::User, + content: "clobber".to_string(), + ..Default::default() + }]) + .await; + + let history = conv.history().await; + assert_eq!(history.len(), 1); + assert_eq!(history[0].content, "resumed"); + } + + /// A caller who stops reading mid-turn used to lose those steps entirely, + /// and the next turn's boundary was recorded at the wrong index. + #[tokio::test] + async fn send_drains_the_previous_turn_into_history() { + let (conn, conv) = test_setup("conv-123", Some(100)); + conn.set_steps(vec![ + Step { + content: "first".to_string(), + ..Default::default() + }, + Step { + content: "second".to_string(), + ..Default::default() + }, + ]); + + conv.send("one").await.unwrap(); + assert_eq!(conv.history().await.len(), 0, "nothing read yet"); + + // Second send drains what the caller never read. + conn.set_idle(false); + conv.send("two").await.unwrap(); + + let history = conv.history().await; + assert_eq!(history.len(), 2); + assert_eq!(conv.turn_count().await, 2); + // The second turn starts after the drained steps, not on top of them. + assert_eq!(conv.compaction_indices().await.len(), 0); + } + #[tokio::test] async fn test_send_records_turn_boundary() { let (_conn, conv) = test_setup("conv-123", Some(10)); @@ -522,6 +755,7 @@ mod tests { name: "tool_1".to_string(), args: serde_json::Value::Null, canonical_path: None, + server_name: None, }; let step = Step { id: "1".to_string(), @@ -554,6 +788,7 @@ mod tests { name: "tool_1".to_string(), args: serde_json::Value::Null, canonical_path: None, + server_name: None, }; let step = Step { id: "1".to_string(), diff --git a/src/error.rs b/src/error.rs index 921f473..843ca24 100644 --- a/src/error.rs +++ b/src/error.rs @@ -24,6 +24,15 @@ pub enum AntigravityError { #[error("Execution error: {0}")] Execution(String), + /// The turn was cancelled — by the caller via `Connection::cancel()`, or by + /// the harness reporting `STATE_CANCELLED`. + /// + /// Distinct from a completed turn: upstream raises + /// `AntigravityCancelledError` rather than ending the stream normally + /// (`local_connection.py:340-344`), so a caller can tell the two apart. + #[error("Cancelled: {0}")] + Cancelled(String), + /// One or more input validation failures. #[error("Validation error: {message}")] Validation { @@ -33,3 +42,19 @@ pub enum AntigravityError { errors: Vec, }, } + +/// A tool failure, in structured form. +/// +/// Carried on [`ToolResult::exception`](crate::types::ToolResult::exception) so +/// a hook can route or count failures by tool and server without parsing the +/// message text. +#[derive(Debug, Clone, thiserror::Error)] +#[error("`{tool_name}` failed: {message}")] +pub struct ToolExecutionError { + /// What went wrong. + pub message: String, + /// The tool that failed. + pub tool_name: String, + /// The MCP server it belongs to, if any. + pub server_name: Option, +} diff --git a/src/harness_config.rs b/src/harness_config.rs new file mode 100644 index 0000000..cab981a --- /dev/null +++ b/src/harness_config.rs @@ -0,0 +1,977 @@ +//! Shared construction of the harness `HarnessConfig`. +//! +//! `src/local.rs` and `src/wasm.rs` each built this independently and drifted +//! apart. Anything both transports must agree on belongs here — the module is +//! ungated, unlike `local` (non-wasm) and `wasm` (wasm or test). + +/// Builds `HarnessConfig.models` (field 15) from the crate's `GeminiConfig`. +/// +/// Implements upstream's `_merge_models_list` +/// (`local_connection_config.py:268-296`): explicit `model_targets` first, then +/// the shorthand model, then the defaults — and a default is appended **only** +/// if none of its model types is already covered. Deduplication is by +/// [`ModelType`], never by name: two text models are legal. +/// +/// The shorthand endpoint (Vertex when `vertex` is set, otherwise the Gemini +/// API) attaches to the shorthand model and to the defaults, never to an +/// explicit target — an explicit target must carry its own. +/// +/// # Errors +/// +/// Returns an error if an explicit target has no endpoint. +pub fn build_models_proto( + gemini_config: &crate::types::GeminiConfig, + image_model: Option<&str>, +) -> Result, anyhow::Error> { + use crate::types::{GeminiModelOptions, ModelEndpoint, ModelTarget, ModelType}; + + let options = gemini_config + .models + .default + .generation + .thinking_level + .map(|thinking_level| GeminiModelOptions { + thinking_level: Some(thinking_level), + }) + .filter(|o| !o.is_empty()); + + // Never the environment: upstream treats `GEMINI_API_KEY` as a presence + // check and lets the harness read it from the environment it inherits, so + // the key stays out of the config frame. + let api_key = gemini_config + .models + .default + .api_key + .clone() + .or_else(|| gemini_config.api_key.clone()); + + let shorthand_endpoint = |options: Option| { + if gemini_config.vertex { + ModelEndpoint::Vertex { + base_url: None, + http_headers: std::collections::HashMap::new(), + project: gemini_config + .project + .clone() + .or_else(|| std::env::var("GOOGLE_CLOUD_PROJECT").ok()), + location: gemini_config + .location + .clone() + .or_else(|| std::env::var("GOOGLE_CLOUD_LOCATION").ok()), + options, + } + } else { + ModelEndpoint::GeminiApi { + base_url: None, + http_headers: std::collections::HashMap::new(), + api_key: api_key.clone(), + options, + } + } + }; + + let mut merged: Vec = Vec::new(); + for target in &gemini_config.model_targets { + if target.endpoint.is_none() { + return Err(anyhow::anyhow!( + "the model target `{}` has no endpoint; an explicitly supplied target must carry \ + one, because the api_key/vertex shorthand only attaches to the shorthand and \ + default models", + target.name.as_deref().unwrap_or("") + )); + } + merged.push(target.clone()); + } + + // The shorthand text model. + merged.push(ModelTarget { + name: Some(gemini_config.models.default.name.clone()), + types: vec![ModelType::Text], + endpoint: Some(shorthand_endpoint(options)), + }); + + // Defaults fill only the types nothing above covers. + let image_name = image_model.map_or_else( + || gemini_config.models.image_generation.name.clone(), + ToString::to_string, + ); + for default in [ + ModelTarget { + name: Some(gemini_config.models.default.name.clone()), + types: vec![ModelType::Text], + endpoint: Some(shorthand_endpoint(None)), + }, + ModelTarget { + name: Some(image_name), + types: vec![ModelType::Image], + endpoint: Some(shorthand_endpoint(None)), + }, + ] { + let covered: std::collections::HashSet = merged + .iter() + .flat_map(|t| t.types.iter().copied()) + .collect(); + if default.types.iter().any(|t| covered.contains(t)) { + continue; + } + merged.push(default); + } + + Ok(merged.iter().map(to_proto).collect()) +} + +/// Maps one [`ModelTarget`](crate::types::ModelTarget) onto its proto form. +fn to_proto(target: &crate::types::ModelTarget) -> crate::proto::localharness::ModelConfig { + use crate::proto::localharness::{ + GeminiApiEndpoint, GeminiModelOptions as ProtoOptions, GemmaEndpoint, + ModelConfig as ProtoModelConfig, VertexEndpoint, model_config::Endpoint, + }; + use crate::types::ModelEndpoint; + + let proto_options = |options: &Option| { + options + .as_ref() + .filter(|o| !o.is_empty()) + .map(|o| ProtoOptions { + thinking_level: o.thinking_level.map(|l| l.as_str().to_string()), + }) + }; + + let endpoint = target.endpoint.as_ref().map(|endpoint| match endpoint { + ModelEndpoint::GeminiApi { + base_url, + http_headers, + api_key, + options, + } => Endpoint::GeminiApiEndpoint(GeminiApiEndpoint { + base_url: base_url.clone(), + http_headers: http_headers.clone(), + api_key: api_key.clone(), + options: proto_options(options), + }), + ModelEndpoint::Vertex { + base_url, + http_headers, + project, + location, + options, + } => Endpoint::VertexEndpoint(VertexEndpoint { + base_url: base_url.clone(), + http_headers: http_headers.clone(), + project: project.clone(), + location: location.clone(), + options: proto_options(options), + }), + ModelEndpoint::Gemma { base_url } => Endpoint::GemmaEndpoint(GemmaEndpoint { + base_url: Some(base_url.clone()), + }), + }); + + ProtoModelConfig { + name: Some(target.name.clone().unwrap_or_default()), + types: target.types.iter().map(|t| t.as_proto()).collect(), + endpoint, + } +} + +/// Whether the environment asks for the Vertex backend. +/// +/// Upstream reads both names and accepts `"true"` or `"1"` +/// (`local_connection_config.py:206-211`, 0.1.7). This crate read neither, so a +/// caller whose environment selected Vertex silently got the Gemini API. +#[must_use] +pub fn vertex_from_env() -> bool { + ["GOOGLE_GENAI_USE_VERTEXAI", "GOOGLE_GENAI_USE_ENTERPRISE"] + .iter() + .filter_map(|name| std::env::var(name).ok()) + .any(|value| { + let value = value.trim().to_ascii_lowercase(); + value == "true" || value == "1" + }) +} + +/// A best-effort OS version string for `ClientInfo.os_version` (proto field 5). +/// +/// Upstream sends `platform.release()`. There is no portable equivalent in std, +/// so this reads `uname -r` on unix and falls back to the empty string, which +/// is what the field defaults to anyway. +#[must_use] +pub fn os_version() -> String { + #[cfg(all(unix, not(target_arch = "wasm32")))] + { + std::process::Command::new("uname") + .arg("-r") + .output() + .ok() + .and_then(|o| String::from_utf8(o.stdout).ok()) + .map(|s| s.trim().to_string()) + .unwrap_or_default() + } + #[cfg(not(all(unix, not(target_arch = "wasm32"))))] + { + String::new() + } +} + +/// Strips control characters a harness will reject from a user prompt. +/// +/// Mirrors upstream `_sanitize_prompt` (`local_connection.py:219-229`, added +/// 0.1.8). Tab, newline and carriage return are kept — they are meaningful in a +/// prompt; the rest of C0, DEL and the C1 range are not. +#[must_use] +pub fn sanitize_prompt(text: &str) -> String { + text.chars() + .filter(|c| { + !matches!(*c, '\u{0}'..='\u{8}' | '\u{b}' | '\u{c}' | '\u{e}'..='\u{1f}' | '\u{7f}'..='\u{9f}') + }) + .collect() +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn sanitize_prompt_keeps_meaningful_whitespace() { + assert_eq!(sanitize_prompt("a\tb\nc\r\nd"), "a\tb\nc\r\nd"); + } + + #[test] + fn sanitize_prompt_strips_control_characters() { + assert_eq!(sanitize_prompt("a\u{0}b\u{7}c\u{1f}d\u{7f}e"), "abcde"); + // C1 range, which arrives from mis-decoded input rather than a user. + assert_eq!(sanitize_prompt("x\u{85}y\u{9f}z"), "xyz"); + } + + #[test] + fn sanitize_prompt_leaves_ordinary_text_alone() { + let text = "Hello — こんにちは 🌍"; + assert_eq!(sanitize_prompt(text), text); + } +} + +#[cfg(test)] +mod model_tests { + #![allow(clippy::unwrap_used, clippy::expect_used, clippy::panic)] + use super::build_models_proto; + use crate::proto::localharness::model_config::Endpoint; + use crate::types::{ + GeminiConfig, GenerationConfig, ModelEndpoint, ModelTarget, ModelType, ThinkingLevel, + }; + + fn types_of(config: &crate::proto::localharness::ModelConfig) -> Vec { + config.types.clone() + } + + #[test] + fn a_default_config_emits_one_text_and_one_image_model() { + let models = build_models_proto(&GeminiConfig::default(), None).unwrap(); + assert_eq!(models.len(), 2); + assert_eq!(types_of(&models[0]), vec![ModelType::Text.as_proto()]); + assert_eq!(types_of(&models[1]), vec![ModelType::Image.as_proto()]); + // The endpoint is present but empty: the harness reads GEMINI_API_KEY + // from the environment it inherits. + match models[0].endpoint.as_ref().unwrap() { + Endpoint::GeminiApiEndpoint(e) => assert!(e.api_key.is_none()), + other => panic!("unexpected endpoint {other:?}"), + } + } + + #[test] + fn an_explicit_key_reaches_both_entries() { + let config = GeminiConfig { + api_key: Some("k".to_string()), + ..Default::default() + }; + let models = build_models_proto(&config, None).unwrap(); + for model in &models { + match model.endpoint.as_ref().unwrap() { + Endpoint::GeminiApiEndpoint(e) => { + // Only the text model carries the shorthand's options; the + // key is on both. + assert_eq!(e.api_key.as_deref(), Some("k")); + } + other => panic!("unexpected endpoint {other:?}"), + } + } + } + + #[test] + fn vertex_selects_the_vertex_endpoint() { + let config = GeminiConfig { + vertex: true, + project: Some("p".to_string()), + location: Some("l".to_string()), + ..Default::default() + }; + let models = build_models_proto(&config, None).unwrap(); + match models[0].endpoint.as_ref().unwrap() { + Endpoint::VertexEndpoint(e) => { + assert_eq!(e.project.as_deref(), Some("p")); + assert_eq!(e.location.as_deref(), Some("l")); + } + other => panic!("unexpected endpoint {other:?}"), + } + } + + /// `options` is omitted entirely when every field is unset, and carries the + /// per-variant spelling — `extra_high`, not `extrahigh`. + #[test] + fn thinking_level_rides_on_options() { + let mut config = GeminiConfig::default(); + config.models.default.generation = GenerationConfig { + thinking_level: Some(ThinkingLevel::ExtraHigh), + }; + let models = build_models_proto(&config, None).unwrap(); + match models[0].endpoint.as_ref().unwrap() { + Endpoint::GeminiApiEndpoint(e) => assert_eq!( + e.options.as_ref().unwrap().thinking_level.as_deref(), + Some("extra_high") + ), + other => panic!("unexpected endpoint {other:?}"), + } + // The image entry has no options at all. + match models[1].endpoint.as_ref().unwrap() { + Endpoint::GeminiApiEndpoint(e) => assert!(e.options.is_none()), + other => panic!("unexpected endpoint {other:?}"), + } + } + + /// An explicit IMAGE target suppresses the default image model, and the + /// text default is appended after it. + #[test] + fn an_explicit_target_covers_its_type() { + let config = GeminiConfig { + model_targets: vec![ModelTarget { + name: Some("my-image-model".to_string()), + types: vec![ModelType::Image], + endpoint: Some(ModelEndpoint::Gemma { + base_url: "http://localhost:11434".to_string(), + }), + }], + ..Default::default() + }; + let models = build_models_proto(&config, None).unwrap(); + assert_eq!(models.len(), 2, "no default image model is appended"); + assert_eq!(models[0].name.as_deref(), Some("my-image-model")); + assert_eq!(types_of(&models[1]), vec![ModelType::Text.as_proto()]); + assert!(matches!( + models[0].endpoint.as_ref().unwrap(), + Endpoint::GemmaEndpoint(_) + )); + } + + /// Dedupe is by model type, never by name: two text models are legal. + #[test] + fn two_text_models_are_legal() { + let config = GeminiConfig { + model_targets: vec![ModelTarget { + name: Some("gemini-3.6-flash".to_string()), + types: vec![ModelType::Text], + endpoint: Some(ModelEndpoint::GeminiApi { + base_url: None, + http_headers: std::collections::HashMap::new(), + api_key: None, + options: None, + }), + }], + ..Default::default() + }; + let models = build_models_proto(&config, None).unwrap(); + let text_models = models + .iter() + .filter(|m| m.types.contains(&ModelType::Text.as_proto())) + .count(); + assert_eq!(text_models, 2, "the shorthand text model is kept too"); + } + + #[test] + fn an_explicit_target_without_an_endpoint_is_an_error() { + let config = GeminiConfig { + model_targets: vec![ModelTarget { + name: Some("orphan".to_string()), + ..Default::default() + }], + ..Default::default() + }; + let err = build_models_proto(&config, None).expect_err("an endpoint is required"); + assert!(err.to_string().contains("no endpoint"), "{err}"); + } +} + +/// Maps the crate's MCP server configs onto `HarnessConfig.mcp_servers` +/// (field 14). +/// +/// The builder accepted MCP servers, both strategies stored them, and nothing +/// ever put them on the wire — so `mcp_server(...)` was a no-op and the model +/// never saw a single MCP tool (audit CT-011). +/// +/// SSE and HTTP both map to `McpHttpTransport`: the 0.1.9 proto has one HTTP +/// transport, and the harness negotiates the streaming style itself. +#[must_use] +pub fn build_mcp_servers_proto( + servers: &[crate::types::McpServerConfig], +) -> Vec { + use crate::proto::localharness::{ + McpHttpTransport, McpServerConfig as ProtoMcp, McpStdioTransport, mcp_server_config, + }; + use crate::types::McpServerConfig; + + servers + .iter() + .map(|server| match server { + McpServerConfig::Stdio { + name, + command, + args, + enabled_tools, + disabled_tools, + env, + timeout_seconds, + } => ProtoMcp { + name: Some(name.clone()), + enabled_tools: enabled_tools.clone().unwrap_or_default(), + disabled_tools: disabled_tools.clone().unwrap_or_default(), + auth_provider_type: None, + timeout_seconds: *timeout_seconds, + transport: Some(mcp_server_config::Transport::Stdio(McpStdioTransport { + command: Some(command.clone()), + args: args.clone(), + env: env.clone(), + })), + }, + McpServerConfig::Sse { + name, + url, + headers, + enabled_tools, + disabled_tools, + timeout_seconds, + } => ProtoMcp { + name: Some(name.clone()), + enabled_tools: enabled_tools.clone().unwrap_or_default(), + disabled_tools: disabled_tools.clone().unwrap_or_default(), + auth_provider_type: None, + timeout_seconds: *timeout_seconds, + transport: Some(mcp_server_config::Transport::Http(McpHttpTransport { + url: Some(url.clone()), + headers: headers.clone().unwrap_or_default(), + })), + }, + McpServerConfig::Http { + name, + url, + headers, + enabled_tools, + disabled_tools, + timeout, + .. + } => ProtoMcp { + name: Some(name.clone()), + enabled_tools: enabled_tools.clone().unwrap_or_default(), + disabled_tools: disabled_tools.clone().unwrap_or_default(), + auth_provider_type: None, + // The proto's granularity is whole seconds; the crate's HTTP + // variant has carried a float since before this field existed. + #[allow(clippy::cast_possible_truncation)] + timeout_seconds: Some(*timeout as i32), + transport: Some(mcp_server_config::Transport::Http(McpHttpTransport { + url: Some(url.clone()), + headers: headers.clone().unwrap_or_default(), + })), + }, + }) + .collect() +} + +#[cfg(test)] +mod mcp_tests { + #![allow(clippy::unwrap_used, clippy::panic)] + use super::build_mcp_servers_proto; + use crate::proto::localharness::mcp_server_config::Transport; + use crate::types::McpServerConfig; + + #[test] + fn a_stdio_server_carries_its_command_env_and_timeout() { + let servers = vec![McpServerConfig::Stdio { + name: "github".to_string(), + command: "mcp-github".to_string(), + args: vec!["--stdio".to_string()], + enabled_tools: Some(vec!["create_issue".to_string()]), + disabled_tools: None, + env: std::iter::once(("TOKEN".to_string(), "abc".to_string())).collect(), + timeout_seconds: Some(30), + }]; + let proto = build_mcp_servers_proto(&servers); + assert_eq!(proto.len(), 1); + assert_eq!(proto[0].name.as_deref(), Some("github")); + assert_eq!(proto[0].enabled_tools, vec!["create_issue".to_string()]); + assert_eq!(proto[0].timeout_seconds, Some(30)); + match proto[0].transport.as_ref().unwrap() { + Transport::Stdio(t) => { + assert_eq!(t.command.as_deref(), Some("mcp-github")); + assert_eq!(t.env.get("TOKEN").map(String::as_str), Some("abc")); + } + other @ Transport::Http(_) => panic!("unexpected transport {other:?}"), + } + } + + /// The 0.1.9 proto has one HTTP transport; the harness negotiates the + /// streaming style, so SSE and HTTP map to the same frame. + #[test] + fn sse_and_http_both_map_to_the_http_transport() { + for server in [ + McpServerConfig::Sse { + name: "s".to_string(), + url: "https://example.test/sse".to_string(), + headers: None, + enabled_tools: None, + disabled_tools: None, + timeout_seconds: None, + }, + McpServerConfig::Http { + name: "h".to_string(), + url: "https://example.test/mcp".to_string(), + headers: None, + enabled_tools: None, + disabled_tools: None, + timeout: 30.0, + sse_read_timeout: 300.0, + terminate_on_close: true, + }, + ] { + let proto = build_mcp_servers_proto(&[server]); + assert!(matches!( + proto[0].transport.as_ref().unwrap(), + Transport::Http(_) + )); + } + } +} + +/// Builds `HarnessConfig.custom_subagents` (field 17). +/// +/// Ports upstream's three validations (`local_connection.py:884-936`): +/// +/// 1. capabilities default to [`BuiltinTools::read_only`] when neither list is +/// given — a subagent that inherits everything is not what "default" should +/// mean; +/// 2. `START_SUBAGENT` is dropped with a warning, because a subagent spawning +/// subagents is not supported by the harness; +/// 3. naming a client-side tool the main agent has not registered is an error, +/// not a subagent that silently cannot call it. +/// +/// # Errors +/// +/// Returns an error if both capability lists are set on one subagent, or if a +/// named tool is not registered. +pub fn build_custom_subagents_proto( + subagents: &[crate::types::SubagentConfig], + registered_tools: &[String], +) -> Result, anyhow::Error> { + use crate::proto::localharness::{CustomAgent, SystemInstructions as ProtoSystem}; + use crate::types::BuiltinTools; + + let mut built = Vec::with_capacity(subagents.len()); + for subagent in subagents { + let capabilities = &subagent.capabilities; + if capabilities.enabled_tools.is_some() && capabilities.disabled_tools.is_some() { + return Err(anyhow::anyhow!( + "subagent `{}` sets both enabled_tools and disabled_tools; they are mutually \ + exclusive", + subagent.name + )); + } + + let mut tools: Vec = + match (&capabilities.enabled_tools, &capabilities.disabled_tools) { + (Some(enabled), _) => enabled.clone(), + (None, Some(disabled)) => BuiltinTools::all_tools() + .into_iter() + .filter(|t| !disabled.contains(t)) + .collect(), + (None, None) => BuiltinTools::read_only(), + }; + + if tools.contains(&BuiltinTools::StartSubagent) { + tracing::warn!( + "subagent `{}` requested START_SUBAGENT; nested subagents are not supported and \ + the tool has been dropped", + subagent.name + ); + tools.retain(|t| *t != BuiltinTools::StartSubagent); + } + + for tool in &subagent.tools { + if !registered_tools.iter().any(|name| name == tool) { + return Err(anyhow::anyhow!( + "subagent `{}` names the tool `{tool}`, which is not registered on the agent", + subagent.name + )); + } + } + + built.push(CustomAgent { + name: Some(subagent.name.clone()), + description: Some(subagent.description.clone()), + system_instructions: subagent.system_instructions.as_ref().map(|text| ProtoSystem { + r#type: Some( + crate::proto::localharness::system_instructions::Type::Custom( + crate::proto::localharness::CustomSystemInstructions { + part: vec![crate::proto::localharness::custom_system_instructions::Part { + part: Some( + crate::proto::localharness::custom_system_instructions::part::Part::Text(text.clone()), + ), + }], + }, + ), + ), + }), + harness_side_tools: Some(harness_side_tools_for(&tools)), + // Client-side tools are declared once on the main agent; the + // harness routes a subagent's call back through the same channel. + tools: Vec::new(), + }); + } + Ok(built) +} + +/// The `HarnessSideTools` toggles for a given set of built-ins. +/// +/// `subagents` is always off here: nested subagents are not supported, which is +/// validation 2 of [`build_custom_subagents_proto`] expressed on the wire. +fn harness_side_tools_for( + tools: &[crate::types::BuiltinTools], +) -> crate::proto::localharness::HarnessSideTools { + use crate::proto::localharness::{ + FileEditToolConfig, FindToolConfig, GenerateImageToolConfig, GrepSearchToolConfig, + HarnessSideTools, ListDirToolConfig, ReadUrlContentToolConfig, RunCommandToolConfig, + SearchWebToolConfig, SubagentsConfig, UserQuestionsConfig, ViewFileToolConfig, + WriteToFileToolConfig, + }; + use crate::types::BuiltinTools; + + let on = |tool: BuiltinTools| Some(tools.contains(&tool)); + + HarnessSideTools { + find: Some(FindToolConfig { + enabled: on(BuiltinTools::FindFile), + }), + run_command: Some(RunCommandToolConfig { + enabled: on(BuiltinTools::RunCommand), + }), + subagents: Some(SubagentsConfig { + enabled: Some(false), + }), + user_questions: Some(UserQuestionsConfig { + enabled: on(BuiltinTools::AskQuestion), + }), + file_edit: Some(FileEditToolConfig { + enabled: on(BuiltinTools::EditFile), + }), + view_file: Some(ViewFileToolConfig { + enabled: on(BuiltinTools::ViewFile), + }), + write_to_file: Some(WriteToFileToolConfig { + enabled: on(BuiltinTools::CreateFile), + }), + grep_search: Some(GrepSearchToolConfig { + enabled: on(BuiltinTools::SearchDir), + }), + list_dir: Some(ListDirToolConfig { + enabled: on(BuiltinTools::ListDir), + }), + permissions: None, + generate_image: Some(GenerateImageToolConfig { + enabled: on(BuiltinTools::GenerateImage), + }), + search_web: Some(SearchWebToolConfig { + enabled: on(BuiltinTools::SearchWeb), + }), + read_url_content: Some(ReadUrlContentToolConfig { + enabled: on(BuiltinTools::ReadUrlContent), + }), + tool_search_config: None, + } +} + +#[cfg(test)] +mod subagent_tests { + #![allow(clippy::unwrap_used, clippy::expect_used)] + use super::build_custom_subagents_proto; + use crate::types::{BuiltinTools, SubagentCapabilities, SubagentConfig}; + + fn reviewer() -> SubagentConfig { + SubagentConfig { + name: "reviewer".to_string(), + description: "reviews a diff".to_string(), + ..Default::default() + } + } + + /// Capabilities default to the read-only built-ins. A subagent that + /// inherited everything is not what "default" should mean. + #[test] + fn capabilities_default_to_read_only() { + let built = build_custom_subagents_proto(&[reviewer()], &[]).unwrap(); + let tools = built[0].harness_side_tools.as_ref().unwrap(); + assert_eq!(tools.view_file.as_ref().unwrap().enabled, Some(true)); + assert_eq!(tools.run_command.as_ref().unwrap().enabled, Some(false)); + assert_eq!(tools.file_edit.as_ref().unwrap().enabled, Some(false)); + } + + /// A subagent spawning subagents is not supported by the harness. + #[test] + fn start_subagent_is_dropped() { + let mut subagent = reviewer(); + subagent.capabilities = SubagentCapabilities { + enabled_tools: Some(vec![BuiltinTools::StartSubagent, BuiltinTools::ViewFile]), + disabled_tools: None, + }; + let built = build_custom_subagents_proto(&[subagent], &[]).unwrap(); + let tools = built[0].harness_side_tools.as_ref().unwrap(); + assert_eq!(tools.subagents.as_ref().unwrap().enabled, Some(false)); + assert_eq!(tools.view_file.as_ref().unwrap().enabled, Some(true)); + } + + #[test] + fn both_capability_lists_is_an_error() { + let mut subagent = reviewer(); + subagent.capabilities = SubagentCapabilities { + enabled_tools: Some(vec![BuiltinTools::ViewFile]), + disabled_tools: Some(vec![BuiltinTools::RunCommand]), + }; + let err = build_custom_subagents_proto(&[subagent], &[]).expect_err("mutually exclusive"); + assert!(err.to_string().contains("mutually exclusive"), "{err}"); + } + + /// A subagent cannot call a tool that does not exist. + #[test] + fn an_unregistered_tool_is_an_error() { + let mut subagent = reviewer(); + subagent.tools = vec!["lookup".to_string()]; + let err = build_custom_subagents_proto(&[subagent.clone()], &[]).expect_err("unregistered"); + assert!(err.to_string().contains("not registered"), "{err}"); + + // Registered on the agent: fine. + assert!(build_custom_subagents_proto(&[subagent], &["lookup".to_string()]).is_ok()); + } + + #[test] + fn a_disabled_list_subtracts_from_all_tools() { + let mut subagent = reviewer(); + subagent.capabilities = SubagentCapabilities { + enabled_tools: None, + disabled_tools: Some(vec![BuiltinTools::RunCommand]), + }; + let built = build_custom_subagents_proto(&[subagent], &[]).unwrap(); + let tools = built[0].harness_side_tools.as_ref().unwrap(); + assert_eq!(tools.run_command.as_ref().unwrap().enabled, Some(false)); + assert_eq!(tools.file_edit.as_ref().unwrap().enabled, Some(true)); + } +} + +/// Maps a multimodal prompt onto the harness's `UserInput`. +/// +/// The plain `user_input` field is a bare string and cannot carry an +/// attachment or a slash command; `complex_user_input` (field 7) is the shape +/// that can. The types existed in this crate and reached nothing — a caller +/// could build a `Content` and had no way to send it. +#[must_use] +pub fn build_user_input_proto( + content: &crate::types::Content, +) -> crate::proto::localharness::UserInput { + use crate::proto::localharness::{UserInput, user_input}; + use crate::types::ContentPrimitive; + + let parts = content + .parts() + .into_iter() + .map(|part| user_input::Part { + part: Some(match part { + ContentPrimitive::Text(text) => user_input::part::Part::Text(sanitize_prompt(text)), + ContentPrimitive::Media(media) => { + user_input::part::Part::Media(user_input::Media { + mime_type: Some(media.mime_type.to_string()), + description: media.description.clone(), + data: Some(media.data.clone()), + }) + } + ContentPrimitive::SlashCommand(name) => { + user_input::part::Part::SlashCommand(user_input::SlashCommand { + name: Some(name.clone()), + }) + } + }), + }) + .collect(); + + UserInput { parts } +} + +#[cfg(test)] +mod user_input_tests { + #![allow(clippy::unwrap_used, clippy::panic)] + use super::build_user_input_proto; + use crate::proto::localharness::user_input::part::Part; + use crate::types::{Content, ContentPrimitive, ImageMime, Media, MimeType}; + + #[test] + fn text_media_and_slash_commands_all_reach_the_wire() { + let content = Content::Multi(vec![ + ContentPrimitive::Text("describe this".to_string()), + ContentPrimitive::Media(Media { + data: vec![1, 2, 3], + mime_type: MimeType::Image(ImageMime::Png), + description: Some("a screenshot".to_string()), + }), + ContentPrimitive::SlashCommand("review".to_string()), + ]); + + let proto = build_user_input_proto(&content); + assert_eq!(proto.parts.len(), 3); + match proto.parts[0].part.as_ref().unwrap() { + Part::Text(text) => assert_eq!(text, "describe this"), + other => panic!("unexpected part {other:?}"), + } + match proto.parts[1].part.as_ref().unwrap() { + Part::Media(media) => { + assert_eq!(media.mime_type.as_deref(), Some("image/png")); + assert_eq!(media.data.as_deref(), Some(&[1u8, 2, 3][..])); + assert_eq!(media.description.as_deref(), Some("a screenshot")); + } + other => panic!("unexpected part {other:?}"), + } + match proto.parts[2].part.as_ref().unwrap() { + Part::SlashCommand(command) => assert_eq!(command.name.as_deref(), Some("review")), + other => panic!("unexpected part {other:?}"), + } + } + + /// Text parts go through the same control-character strip as a plain + /// prompt — a multimodal path that skipped it would be a way around it. + #[test] + fn text_parts_are_sanitized() { + let content = Content::text("hello\u{0}world"); + let proto = build_user_input_proto(&content); + match proto.parts[0].part.as_ref().unwrap() { + Part::Text(text) => assert!(!text.contains('\u{0}'), "{text:?}"), + other => panic!("unexpected part {other:?}"), + } + } + + #[test] + fn an_empty_prompt_is_recognised() { + assert!(Content::text(" ").is_empty()); + assert!(!Content::text("hi").is_empty()); + assert!(!Content::text("").with_slash_command("review").is_empty()); + } +} + +/// Maps [`RetryConfig`](crate::types::RetryConfig) onto the wire. +/// +/// Returns `None` when nothing is configured. Upstream omits the message +/// entirely in that case (`local_connection.py:116-121`), and sending an empty +/// one would replace the harness's own defaults with zeros. +#[must_use] +pub fn build_retry_config_proto( + retry: Option<&crate::types::RetryConfig>, +) -> Option { + use crate::proto::localharness::{ModelApiRetryConfig, ModelOutputRetryConfig, RetryConfig}; + + let retry = retry?; + if retry.is_empty() { + return None; + } + Some(RetryConfig { + api_retry: retry.api_retry.as_ref().map(|api| ModelApiRetryConfig { + max_retries: api.max_retries, + initial_sleep_duration_ms: api.initial_sleep_duration_ms, + exponential_multiplier: api.exponential_multiplier, + jitter_range: api.jitter_range, + }), + model_output_retry: retry.model_output_retry.as_ref().map(|output| { + ModelOutputRetryConfig { + max_retries: output.max_retries, + } + }), + }) +} + +/// Maps [`ToolOutputTruncation`](crate::types::ToolOutputTruncation) onto the wire. +#[must_use] +pub fn build_truncation_proto( + truncation: Option<&crate::types::ToolOutputTruncation>, +) -> Option { + use crate::proto::localharness::{ToolOutputTruncation as Proto, tool_output_truncation}; + use crate::types::ToolOutputTruncation; + + Some(Proto { + strategy: Some(match truncation? { + ToolOutputTruncation::Truncate { max_tokens } => { + tool_output_truncation::Strategy::Truncate( + tool_output_truncation::TruncateStrategy { + max_tokens: Some(*max_tokens), + }, + ) + } + ToolOutputTruncation::Error { + max_tokens, + error_message, + } => tool_output_truncation::Strategy::Error(tool_output_truncation::ErrorStrategy { + max_tokens: Some(*max_tokens), + error_message: error_message.clone(), + }), + }), + }) +} + +#[cfg(test)] +mod retry_tests { + #![allow(clippy::unwrap_used)] + use super::{build_retry_config_proto, build_truncation_proto}; + use crate::types::{ApiRetryConfig, RetryConfig, ToolOutputTruncation}; + + /// An all-empty message would replace the harness's own defaults with + /// zeros, so nothing configured means nothing sent. + #[test] + fn nothing_configured_emits_nothing() { + assert!(build_retry_config_proto(None).is_none()); + assert!(build_retry_config_proto(Some(&RetryConfig::default())).is_none()); + assert!(build_truncation_proto(None).is_none()); + } + + #[test] + fn a_populated_api_retry_reaches_the_wire() { + let config = RetryConfig { + api_retry: Some(ApiRetryConfig { + max_retries: Some(5), + initial_sleep_duration_ms: Some(250), + exponential_multiplier: Some(2.0), + jitter_range: Some(0.1), + }), + model_output_retry: None, + }; + let proto = build_retry_config_proto(Some(&config)).unwrap(); + let api = proto.api_retry.unwrap(); + assert_eq!(api.max_retries, Some(5)); + assert_eq!(api.initial_sleep_duration_ms, Some(250)); + assert!(proto.model_output_retry.is_none()); + } + + #[test] + fn both_truncation_strategies_map() { + use crate::proto::localharness::tool_output_truncation::Strategy; + let truncate = + build_truncation_proto(Some(&ToolOutputTruncation::Truncate { max_tokens: 1000 })) + .unwrap(); + assert!(matches!(truncate.strategy, Some(Strategy::Truncate(_)))); + + let error = build_truncation_proto(Some(&ToolOutputTruncation::Error { + max_tokens: 1000, + error_message: Some("too big".to_string()), + })) + .unwrap(); + assert!(matches!(error.strategy, Some(Strategy::Error(_)))); + } +} diff --git a/src/hook_dispatch.rs b/src/hook_dispatch.rs new file mode 100644 index 0000000..bce7529 --- /dev/null +++ b/src/hook_dispatch.rs @@ -0,0 +1,466 @@ +//! Hook plumbing shared by both transports. +//! +//! `src/local.rs` and `src/wasm.rs` are forks of each other, and every piece of +//! hook wiring added to one has historically been missing from the other. The +//! target-neutral half lives here so a dispatch site exists once. + +use crate::hooks::HookRunner; +use anyhow::anyhow; + +/// Which lifecycle hooks a [`Hook`](crate::hooks::Hook) implementation wants. +/// +/// The `Hook` trait gives every method a default, so there is no way to tell +/// from the type which ones an implementation actually overrode. Declaring is +/// the prerequisite for `HarnessConfig.enabled_hooks` (field 16): the harness +/// blocks its turn waiting for a `CallHookResponse` for every kind it is told +/// about, so the list must name only what this side will really answer. +/// +/// The default is [`NONE`](Self::NONE) — declaring is **opt-in**. Local +/// dispatch is unaffected either way: a hook that declares nothing still has +/// every method called by the runner, exactly as before. +#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)] +pub struct HookKinds(u16); + +impl HookKinds { + /// Declares nothing. The default. + pub const NONE: Self = Self(0); + /// `on_session_start`. + pub const SESSION_START: Self = Self(1 << 0); + /// `on_session_end`. + pub const SESSION_END: Self = Self(1 << 1); + /// `pre_turn`. + pub const PRE_TURN: Self = Self(1 << 2); + /// `post_turn`. + pub const POST_TURN: Self = Self(1 << 3); + /// `pre_tool_call`. + pub const PRE_TOOL: Self = Self(1 << 4); + /// `post_tool_call`. + pub const POST_TOOL: Self = Self(1 << 5); + /// `on_tool_error`. + pub const ON_TOOL_ERROR: Self = Self(1 << 6); + + /// Every kind the harness can dispatch. + /// + /// `on_interaction` and `on_compaction` are absent deliberately: the 0.1.9 + /// `LifecycleHook` enum has no member for either, so they are dispatched + /// locally only. + pub const ALL: Self = Self(0b0111_1111); + + /// Whether `other`'s kinds are all present. + #[must_use] + pub const fn contains(self, other: Self) -> bool { + self.0 & other.0 == other.0 + } + + /// Whether nothing is declared. + #[must_use] + pub const fn is_empty(self) -> bool { + self.0 == 0 + } + + /// The proto enum values, ascending, for `HarnessConfig.enabled_hooks`. + #[must_use] + pub fn to_proto(self) -> Vec { + [ + (Self::SESSION_START, 1), + (Self::SESSION_END, 2), + (Self::PRE_TURN, 3), + (Self::POST_TURN, 4), + (Self::PRE_TOOL, 5), + (Self::POST_TOOL, 6), + (Self::ON_TOOL_ERROR, 7), + ] + .into_iter() + .filter(|(kind, _)| self.contains(*kind)) + .map(|(_, value)| value) + .collect() + } +} + +impl std::ops::BitOr for HookKinds { + type Output = Self; + fn bitor(self, rhs: Self) -> Self { + Self(self.0 | rhs.0) + } +} + +impl std::ops::BitOrAssign for HookKinds { + fn bitor_assign(&mut self, rhs: Self) { + self.0 |= rhs.0; + } +} + +/// Decides whether a turn may start, failing **closed**. +/// +/// Dispatched from each transport's `send()`, which is the only place every +/// turn passes through — `Conversation::send`, trigger notifications and +/// `chat()` all funnel into it. +/// +/// Deny semantics mirror upstream: the prompt is **not** sent, and the caller +/// gets the hook's message rather than a turn that silently produces nothing. +/// A hook that errors denies too, for the same reason +/// [`HookRunner::gate_tool_call`] denies: a gate that cannot decide must not +/// fall open. +/// +/// `None` means no hooks are registered, which is not a failure. +/// +/// # Errors +/// +/// Returns an error when a hook denies the turn or fails to decide. +pub async fn gate_turn(runner: Option<&HookRunner>) -> Result<(), anyhow::Error> { + let Some(runner) = runner else { + return Ok(()); + }; + match runner.dispatch_pre_turn().await { + Ok(res) if res.allow => Ok(()), + Ok(res) if res.message.is_empty() => Err(anyhow!("the turn was denied by a pre_turn hook")), + Ok(res) => Err(anyhow!("{}", res.message)), + Err(e) => Err(anyhow!( + "the pre_turn gate could not decide, so the turn was denied: {e}" + )), + } +} + +#[cfg(test)] +mod kind_tests { + use super::HookKinds; + + #[test] + fn nothing_is_declared_by_default() { + assert!(HookKinds::default().is_empty()); + assert!(HookKinds::default().to_proto().is_empty()); + } + + #[test] + fn kinds_compose_and_map_to_proto_values() { + let kinds = HookKinds::PRE_TOOL | HookKinds::SESSION_START; + assert!(kinds.contains(HookKinds::PRE_TOOL)); + assert!(!kinds.contains(HookKinds::POST_TURN)); + // Ascending proto order, whatever order they were combined in. + assert_eq!(kinds.to_proto(), vec![1, 5]); + } + + /// `on_interaction` and `on_compaction` have no `LifecycleHook` member in + /// 0.1.9, so ALL must not invent values for them. + #[test] + fn all_covers_exactly_the_seven_wire_kinds() { + assert_eq!(HookKinds::ALL.to_proto(), vec![1, 2, 3, 4, 5, 6, 7]); + } +} + +#[cfg(test)] +mod tests { + #![allow(clippy::unwrap_used, clippy::expect_used)] + use super::gate_turn; + use crate::hooks::{Hook, HookRunner}; + use crate::types::HookResult; + use std::sync::Arc; + + struct DenyingHook(&'static str); + + impl Hook for DenyingHook { + async fn pre_turn( + &self, + _context: &crate::context::HookContext, + ) -> Result { + Ok(HookResult { + allow: false, + message: self.0.to_string(), + }) + } + } + + struct BrokenHook; + + impl Hook for BrokenHook { + async fn pre_turn( + &self, + _context: &crate::context::HookContext, + ) -> Result { + Err(anyhow::anyhow!("quota lookup failed")) + } + } + + #[tokio::test] + async fn no_runner_allows() { + assert!(gate_turn(None).await.is_ok()); + } + + #[tokio::test] + async fn a_denying_hook_reports_its_reason() { + let runner = HookRunner::new(); + runner + .register(Arc::new(DenyingHook("out of budget"))) + .await; + let err = gate_turn(Some(&runner)).await.unwrap_err().to_string(); + assert!(err.contains("out of budget"), "{err}"); + } + + #[tokio::test] + async fn a_broken_hook_denies() { + let runner = HookRunner::new(); + runner.register(Arc::new(BrokenHook)).await; + let err = gate_turn(Some(&runner)).await.unwrap_err().to_string(); + assert!(err.contains("quota lookup failed"), "{err}"); + } +} + +/// Answers a harness-side `CallHookRequest`. +/// +/// The harness **blocks its turn** until it gets a `CallHookResponse` carrying +/// the matching `request_id`. Every path through this function therefore +/// produces one — including the unreachable ones. A request this side does not +/// understand is answered with `error_message`, which the harness treats as a +/// hook failure; not answering at all is a deadlock. +/// +/// Deny semantics match the local gates: a hook that errors refuses, because a +/// gate that cannot decide must not fall open. +pub async fn answer_hook_request( + runner: Option<&HookRunner>, + request: &crate::proto::localharness::CallHookRequest, +) -> crate::proto::localharness::CallHookResponse { + use crate::proto::localharness::{ + CallHookResponse, EmptyResult, OnToolErrorResult, PreToolResult, PreTurnResult, + call_hook_request::Args, call_hook_response::Result as ResponseResult, pre_tool_result, + pre_turn_result, + }; + + let request_id = request.request_id.clone(); + let answer = |result: ResponseResult| CallHookResponse { + request_id: request_id.clone(), + result: Some(result), + }; + + let Some(runner) = runner else { + // No hooks registered at all: nothing to object, and the turn must not + // stall waiting for an opinion that does not exist. + return answer(ResponseResult::EmptyResult(EmptyResult {})); + }; + + match request.args.as_ref() { + Some(Args::PreTurnArgs(_)) => { + let (decision, reason) = match gate_turn(Some(runner)).await { + Ok(()) => (pre_turn_result::Decision::Allow, String::new()), + Err(e) => (pre_turn_result::Decision::Deny, e.to_string()), + }; + answer(ResponseResult::PreTurnResult(PreTurnResult { + decision: Some(decision as i32), + reason: Some(reason), + })) + } + Some(Args::PreToolArgs(args)) => { + let tool_call = crate::types::ToolCall { + id: request.request_id.clone().unwrap_or_default(), + name: args.tool_name.clone().unwrap_or_default(), + args: crate::tool_wire::parse_arguments(args.arguments_json.as_deref()), + canonical_path: None, + server_name: args.server_name.clone(), + }; + let (allow, reason) = HookRunner::gate_tool_call(Some(runner), &tool_call).await; + answer(ResponseResult::PreToolResult(PreToolResult { + decision: Some(if allow { + pre_tool_result::Decision::Allow as i32 + } else { + pre_tool_result::Decision::Deny as i32 + }), + reason: Some(reason), + // Rewriting the model's arguments is a capability this side does + // not offer; sending the field back unchanged would be a lie + // about having considered it. + modified_arguments_json: None, + })) + } + Some(Args::PostToolArgs(args)) => { + let result = crate::types::ToolResult { + name: args.tool_name.clone().unwrap_or_default(), + id: request.request_id.clone(), + result: args.result.clone().map(serde_json::Value::String), + error: args.error.clone().filter(|e| !e.is_empty()), + server_name: args.server_name.clone(), + exception: None, + }; + if let Err(e) = runner.dispatch_post_tool_call(&result).await { + tracing::error!("post_tool_call hook failed: {e:?}"); + } + answer(ResponseResult::EmptyResult(EmptyResult {})) + } + Some(Args::PostTurnArgs(args)) => { + let text = args.response_text.clone().unwrap_or_default(); + if let Err(e) = runner.dispatch_post_turn(&text).await { + tracing::error!("post_turn hook failed: {e:?}"); + } + answer(ResponseResult::EmptyResult(EmptyResult {})) + } + Some(Args::OnToolErrorArgs(args)) => { + let error = anyhow::anyhow!( + "{}", + args.error_message + .clone() + .unwrap_or_else(|| "tool failed".to_string()) + ); + let replacement = runner.dispatch_on_tool_error(&error).await; + answer(ResponseResult::OnToolErrorResult(OnToolErrorResult { + custom_error_message: replacement, + })) + } + None => answer(ResponseResult::ErrorMessage(format!( + "hook request {:?} carried no arguments this SDK understands", + request.r#type + ))), + } +} + +#[cfg(test)] +mod router_tests { + #![allow(clippy::unwrap_used, clippy::expect_used, clippy::panic)] + use super::answer_hook_request; + use crate::hooks::{Hook, HookRunner}; + use crate::proto::localharness::{ + CallHookRequest, OnToolErrorArgs, PostTurnArgs, PreToolArgs, PreTurnArgs, + call_hook_request::Args, call_hook_response::Result as ResponseResult, pre_tool_result, + pre_turn_result, + }; + use crate::types::{HookResult, ToolCall}; + use std::sync::Arc; + + fn request(args: Args) -> CallHookRequest { + CallHookRequest { + request_id: Some("r1".to_string()), + name: Some("h".to_string()), + r#type: None, + args: Some(args), + } + } + + struct Denier; + + impl Hook for Denier { + async fn pre_tool_call( + &self, + _tool_call: &ToolCall, + _context: &crate::context::HookContext, + ) -> Result { + Ok(HookResult { + allow: false, + message: "not on my watch".to_string(), + }) + } + async fn pre_turn( + &self, + _context: &crate::context::HookContext, + ) -> Result { + Err(anyhow::anyhow!("cannot decide")) + } + async fn on_tool_error( + &self, + _error: &anyhow::Error, + _context: &crate::context::HookContext, + ) -> Result, anyhow::Error> { + Ok(Some("try fewer rows".to_string())) + } + } + + /// Every path must answer, and every answer must carry the request id the + /// harness is blocking on. + #[tokio::test] + async fn every_request_is_answered_with_its_id() { + let runner = HookRunner::new(); + runner.register(Arc::new(Denier)).await; + + for args in [ + Args::PreTurnArgs(PreTurnArgs { user_input: None }), + Args::PreToolArgs(PreToolArgs { + tool_name: Some("RUN_COMMAND".to_string()), + arguments_json: None, + server_name: None, + }), + Args::PostTurnArgs(PostTurnArgs { + response_text: Some("done".to_string()), + }), + Args::OnToolErrorArgs(OnToolErrorArgs { + tool_name: Some("lookup".to_string()), + error_message: Some("boom".to_string()), + server_name: None, + }), + ] { + let response = answer_hook_request(Some(&runner), &request(args)).await; + assert_eq!(response.request_id.as_deref(), Some("r1")); + assert!(response.result.is_some(), "an unanswered request deadlocks"); + } + } + + #[tokio::test] + async fn a_denied_tool_call_comes_back_as_deny_with_its_reason() { + let runner = HookRunner::new(); + runner.register(Arc::new(Denier)).await; + let response = answer_hook_request( + Some(&runner), + &request(Args::PreToolArgs(PreToolArgs { + tool_name: Some("RUN_COMMAND".to_string()), + arguments_json: None, + server_name: None, + })), + ) + .await; + match response.result.unwrap() { + ResponseResult::PreToolResult(r) => { + assert_eq!(r.decision, Some(pre_tool_result::Decision::Deny as i32)); + assert_eq!(r.reason.as_deref(), Some("not on my watch")); + } + other => panic!("unexpected result {other:?}"), + } + } + + /// A gate that cannot decide refuses, matching the local gates. + #[tokio::test] + async fn a_failing_pre_turn_hook_denies_the_turn() { + let runner = HookRunner::new(); + runner.register(Arc::new(Denier)).await; + let response = answer_hook_request( + Some(&runner), + &request(Args::PreTurnArgs(PreTurnArgs { user_input: None })), + ) + .await; + match response.result.unwrap() { + ResponseResult::PreTurnResult(r) => { + assert_eq!(r.decision, Some(pre_turn_result::Decision::Deny as i32)); + assert!(r.reason.unwrap().contains("cannot decide")); + } + other => panic!("unexpected result {other:?}"), + } + } + + #[tokio::test] + async fn an_unrecognised_request_is_answered_with_an_error() { + let runner = HookRunner::new(); + let response = answer_hook_request( + Some(&runner), + &CallHookRequest { + request_id: Some("r9".to_string()), + name: None, + r#type: None, + args: None, + }, + ) + .await; + assert_eq!(response.request_id.as_deref(), Some("r9")); + assert!(matches!( + response.result.unwrap(), + ResponseResult::ErrorMessage(_) + )); + } + + /// No hooks registered is not a failure: answer empty rather than stall. + #[tokio::test] + async fn no_runner_still_answers() { + let response = answer_hook_request( + None, + &request(Args::PreTurnArgs(PreTurnArgs { user_input: None })), + ) + .await; + assert!(matches!( + response.result.unwrap(), + ResponseResult::EmptyResult(_) + )); + } +} diff --git a/src/hooks.rs b/src/hooks.rs index 3b6cc82..db6855e 100644 --- a/src/hooks.rs +++ b/src/hooks.rs @@ -3,9 +3,8 @@ //! This module defines the [`Hook`] trait, which allows implementing custom observers and middlewares //! to intercept session startup, pre/post tool invocations, execution errors, and user interactions. -use crate::types::{ - AskQuestionEntry, ChatResponse, HookResult, QuestionHookResult, ToolCall, ToolResult, -}; +use crate::context::HookContext; +use crate::types::{AskQuestionEntry, HookResult, QuestionHookResult, ToolCall, ToolResult}; use futures_util::future::BoxFuture; use std::sync::Arc; @@ -14,16 +13,28 @@ use std::sync::Arc; /// Implementors can register hooks via [`Agent::register_hook`](crate::agent::Agent::register_hook) /// to audit tool invocations, log events, or restrict actions dynamically. pub trait Hook: Send + Sync { + /// Which lifecycle hooks this implementation wants the **harness** to call. + /// + /// Opt-in, and unrelated to local dispatch: every method is called by the + /// runner regardless. Declaring a kind is what puts it in + /// `HarnessConfig.enabled_hooks`, and the harness then blocks its turn + /// waiting for an answer — so declare only what you handle. + fn declares(&self) -> crate::hook_dispatch::HookKinds { + crate::hook_dispatch::HookKinds::NONE + } + /// Triggered when the agent establishes a connection and starts a session. - fn on_session_start( - &self, + fn on_session_start<'a>( + &'a self, + _context: &'a HookContext, ) -> impl std::future::Future> + Send { async { Ok(()) } } /// Intercepts the start of a user turn before the LLM processes the prompt. /// Returns `allow: false` to halt execution. - fn pre_turn( - &self, + fn pre_turn<'a>( + &'a self, + _context: &'a HookContext, ) -> impl std::future::Future> + Send { async { Ok(HookResult { @@ -37,6 +48,7 @@ pub trait Hook: Send + Sync { fn pre_tool_call<'a>( &'a self, _tool_call: &'a ToolCall, + _context: &'a HookContext, ) -> impl std::future::Future> + Send { async { Ok(HookResult { @@ -49,52 +61,65 @@ pub trait Hook: Send + Sync { fn post_tool_call<'a>( &'a self, _result: &'a ToolResult, + _context: &'a HookContext, ) -> impl std::future::Future> + Send { async { Ok(()) } } - /// Triggered when a tool execution encounters an error. - /// Allows fallback logic or customized error payloads. + /// Triggered when a tool execution fails. + /// + /// Returning `Some(message)` **replaces the error text** the model is + /// shown — useful for turning a stack trace into an instruction the model + /// can act on. Returning `None` leaves it as it is. + /// + /// It cannot turn a failure into a success. It used to: a hook could + /// substitute a result and clear the error, so a tool that had failed was + /// reported to the model as having worked, and the step was downgraded from + /// `Error` to `Done`. Upstream narrowed this in 0.1.6 for the same reason. fn on_tool_error<'a>( &'a self, - error: &'a anyhow::Error, - ) -> impl std::future::Future< - Output = Result<(HookResult, Option), anyhow::Error>, - > + Send { - async move { - Ok(( - HookResult { - allow: false, - message: error.to_string(), - }, - None, - )) - } + _error: &'a anyhow::Error, + _context: &'a HookContext, + ) -> impl std::future::Future, anyhow::Error>> + Send { + async { Ok(None) } } /// Intercepts a prompt to ask the user clarifying questions. fn on_interaction<'a>( &'a self, _questions: &'a [AskQuestionEntry], + _context: &'a HookContext, ) -> impl std::future::Future, anyhow::Error>> + Send { async { Ok(None) } } /// Triggered when the session is ending (agent shutdown or disconnect). - fn on_session_end( - &self, + fn on_session_end<'a>( + &'a self, + _context: &'a HookContext, ) -> impl std::future::Future> + Send { async { Ok(()) } } - /// Triggered after a turn completes, receiving the full response. + /// Triggered when a turn completes, receiving the model's final text. + /// + /// Takes the text rather than a `ChatResponse`: the dispatch happens at the + /// terminal user-facing model step, inside the connection, where no + /// `ChatResponse` exists yet. Building one there would have meant a second, + /// partly-filled shape with the same name. fn post_turn<'a>( &'a self, - _response: &'a ChatResponse, + _response: &'a str, + _context: &'a HookContext, ) -> impl std::future::Future> + Send { async { Ok(()) } } /// Triggered when the conversation history is compacted/summarized. + /// + /// Receives the compaction step itself, not just its text — a hook that + /// archives history needs the step's index and trajectory to know what was + /// replaced. fn on_compaction<'a>( &'a self, - _summary: &'a str, + _step: &'a crate::types::Step, + _context: &'a HookContext, ) -> impl std::future::Future> + Send { async { Ok(()) } } @@ -104,99 +129,142 @@ pub trait Hook: Send + Sync { /// /// This trait is used internally by the SDK to allow dynamic dispatch and storage of hooks. pub trait DynHook: Send + Sync { + /// Which lifecycle hooks this implementation wants the harness to call. + fn declares(&self) -> crate::hook_dispatch::HookKinds; + /// Triggered when the agent establishes a connection and starts a session. - fn on_session_start(&self) -> BoxFuture<'_, Result<(), anyhow::Error>>; + fn on_session_start<'a>( + &'a self, + context: &'a HookContext, + ) -> BoxFuture<'a, Result<(), anyhow::Error>>; /// Intercepts the start of a user turn before the LLM processes the prompt. - fn pre_turn(&self) -> BoxFuture<'_, Result>; + fn pre_turn<'a>( + &'a self, + context: &'a HookContext, + ) -> BoxFuture<'a, Result>; /// Intercepts a tool call immediately before it is executed by the runner. fn pre_tool_call<'a>( &'a self, tool_call: &'a ToolCall, + context: &'a HookContext, ) -> BoxFuture<'a, Result>; /// Triggered after a tool successfully returns a result. fn post_tool_call<'a>( &'a self, result: &'a ToolResult, + context: &'a HookContext, ) -> BoxFuture<'a, Result<(), anyhow::Error>>; - /// Triggered when a tool execution encounters an error. + /// Triggered when a tool execution fails; may replace the error text. fn on_tool_error<'a>( &'a self, error: &'a anyhow::Error, - ) -> BoxFuture<'a, Result<(HookResult, Option), anyhow::Error>>; + context: &'a HookContext, + ) -> BoxFuture<'a, Result, anyhow::Error>>; /// Intercepts a prompt to ask the user clarifying questions. fn on_interaction<'a>( &'a self, questions: &'a [AskQuestionEntry], + context: &'a HookContext, ) -> BoxFuture<'a, Result, anyhow::Error>>; /// Triggered when the session is ending. - fn on_session_end(&self) -> BoxFuture<'_, Result<(), anyhow::Error>>; + fn on_session_end<'a>( + &'a self, + context: &'a HookContext, + ) -> BoxFuture<'a, Result<(), anyhow::Error>>; /// Triggered after a turn completes. fn post_turn<'a>( &'a self, - response: &'a ChatResponse, + response: &'a str, + context: &'a HookContext, ) -> BoxFuture<'a, Result<(), anyhow::Error>>; /// Triggered when the conversation history is compacted. - fn on_compaction<'a>(&'a self, summary: &'a str) -> BoxFuture<'a, Result<(), anyhow::Error>>; + fn on_compaction<'a>( + &'a self, + step: &'a crate::types::Step, + context: &'a HookContext, + ) -> BoxFuture<'a, Result<(), anyhow::Error>>; } impl DynHook for T { - fn on_session_start(&self) -> BoxFuture<'_, Result<(), anyhow::Error>> { - Box::pin(async move { self.on_session_start().await }) + fn declares(&self) -> crate::hook_dispatch::HookKinds { + self.declares() } - fn pre_turn(&self) -> BoxFuture<'_, Result> { - Box::pin(async move { self.pre_turn().await }) + fn on_session_start<'a>( + &'a self, + context: &'a HookContext, + ) -> BoxFuture<'a, Result<(), anyhow::Error>> { + Box::pin(async move { self.on_session_start(context).await }) + } + + fn pre_turn<'a>( + &'a self, + context: &'a HookContext, + ) -> BoxFuture<'a, Result> { + Box::pin(async move { self.pre_turn(context).await }) } fn pre_tool_call<'a>( &'a self, tool_call: &'a ToolCall, + context: &'a HookContext, ) -> BoxFuture<'a, Result> { - Box::pin(async move { self.pre_tool_call(tool_call).await }) + Box::pin(async move { self.pre_tool_call(tool_call, context).await }) } fn post_tool_call<'a>( &'a self, result: &'a ToolResult, + context: &'a HookContext, ) -> BoxFuture<'a, Result<(), anyhow::Error>> { - Box::pin(async move { self.post_tool_call(result).await }) + Box::pin(async move { self.post_tool_call(result, context).await }) } fn on_tool_error<'a>( &'a self, error: &'a anyhow::Error, - ) -> BoxFuture<'a, Result<(HookResult, Option), anyhow::Error>> { - Box::pin(async move { self.on_tool_error(error).await }) + context: &'a HookContext, + ) -> BoxFuture<'a, Result, anyhow::Error>> { + Box::pin(async move { self.on_tool_error(error, context).await }) } fn on_interaction<'a>( &'a self, questions: &'a [AskQuestionEntry], + context: &'a HookContext, ) -> BoxFuture<'a, Result, anyhow::Error>> { - Box::pin(async move { self.on_interaction(questions).await }) + Box::pin(async move { self.on_interaction(questions, context).await }) } - fn on_session_end(&self) -> BoxFuture<'_, Result<(), anyhow::Error>> { - Box::pin(async move { self.on_session_end().await }) + fn on_session_end<'a>( + &'a self, + context: &'a HookContext, + ) -> BoxFuture<'a, Result<(), anyhow::Error>> { + Box::pin(async move { self.on_session_end(context).await }) } fn post_turn<'a>( &'a self, - response: &'a ChatResponse, + response: &'a str, + context: &'a HookContext, ) -> BoxFuture<'a, Result<(), anyhow::Error>> { - Box::pin(async move { self.post_turn(response).await }) + Box::pin(async move { self.post_turn(response, context).await }) } - fn on_compaction<'a>(&'a self, summary: &'a str) -> BoxFuture<'a, Result<(), anyhow::Error>> { - Box::pin(async move { self.on_compaction(summary).await }) + fn on_compaction<'a>( + &'a self, + step: &'a crate::types::Step, + context: &'a HookContext, + ) -> BoxFuture<'a, Result<(), anyhow::Error>> { + Box::pin(async move { self.on_compaction(step, context).await }) } } @@ -204,13 +272,19 @@ impl DynHook for T { #[derive(Clone, Default)] pub struct HookRunner { hooks: Arc>>>, + /// The session-scoped context every dispatch hands to its hooks. + /// + /// One per runner, so a hook that stores something in `on_session_start` + /// can read it back in `post_tool_call`. Turn- and operation-scoped + /// children hang off this via [`HookContext::child`]. + context: Arc, } impl std::fmt::Debug for HookRunner { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { f.debug_struct("HookRunner") .field("hooks_count", &self.hooks.try_read().map_or(0, |h| h.len())) - .finish() + .finish_non_exhaustive() } } @@ -219,6 +293,7 @@ impl HookRunner { pub fn new() -> Self { Self { hooks: Arc::new(tokio::sync::RwLock::new(Vec::new())), + context: Arc::new(HookContext::new()), } } @@ -226,10 +301,33 @@ impl HookRunner { self.hooks.write().await.push(hook); } + /// The session-scoped context handed to every hook. + /// + /// Exposed so a caller can seed it before starting, or read what hooks + /// recorded afterwards. + #[must_use] + pub fn context(&self) -> Arc { + self.context.clone() + } + + /// The union of every registered hook's declared kinds. + /// + /// What `HarnessConfig.enabled_hooks` is built from once the harness-side + /// router exists. Emitting it before then would deadlock the turn: the + /// harness blocks waiting for a `CallHookResponse` nothing can send. + pub async fn declared_kinds(&self) -> crate::hook_dispatch::HookKinds { + let hooks = self.hooks.read().await.clone(); + let mut kinds = crate::hook_dispatch::HookKinds::NONE; + for hook in &hooks { + kinds |= hook.declares(); + } + kinds + } + pub async fn dispatch_session_start(&self) -> Result<(), anyhow::Error> { let hooks = self.hooks.read().await.clone(); for hook in &hooks { - hook.on_session_start().await?; + hook.on_session_start(&self.context).await?; } Ok(()) } @@ -237,7 +335,7 @@ impl HookRunner { pub async fn dispatch_pre_turn(&self) -> Result { let hooks = self.hooks.read().await.clone(); for hook in &hooks { - let res = hook.pre_turn().await?; + let res = hook.pre_turn(&self.context).await?; if !res.allow { return Ok(res); } @@ -254,7 +352,7 @@ impl HookRunner { ) -> Result { let hooks = self.hooks.read().await.clone(); for hook in &hooks { - let res = hook.pre_tool_call(tool_call).await?; + let res = hook.pre_tool_call(tool_call, &self.context).await?; if !res.allow { return Ok(res); } @@ -265,32 +363,64 @@ impl HookRunner { }) } + /// Decides whether a tool call may run, failing **closed**. + /// + /// [`dispatch_pre_tool_call`](Self::dispatch_pre_tool_call) returns an + /// error when a hook itself fails — a panic in a policy predicate, an + /// `ask_user` handler that could not reach the user. Both transports + /// previously treated that error as "no objection" and ran the tool, which + /// turns any hook bug into an open gate. A gate that cannot decide must + /// deny. + /// + /// `None` means no hooks are registered at all, which is not a failure: + /// there is nothing to object. + pub async fn gate_tool_call(runner: Option<&Self>, tool_call: &ToolCall) -> (bool, String) { + let Some(runner) = runner else { + return (true, String::new()); + }; + match runner.dispatch_pre_tool_call(tool_call).await { + Ok(res) if res.allow => (true, String::new()), + Ok(res) => (false, res.message), + Err(e) => { + tracing::error!( + "pre_tool_call failed for {}; denying the call: {e:?}", + tool_call.name + ); + ( + false, + format!("the pre-tool-call gate could not decide, so the call was denied: {e}"), + ) + } + } + } + pub async fn dispatch_post_tool_call(&self, result: &ToolResult) -> Result<(), anyhow::Error> { let hooks = self.hooks.read().await.clone(); for hook in &hooks { - hook.post_tool_call(result).await?; + hook.post_tool_call(result, &self.context).await?; } Ok(()) } - pub async fn dispatch_on_tool_error( - &self, - error: &anyhow::Error, - ) -> Result<(HookResult, Option), anyhow::Error> { + /// Gives each hook a chance to reword a tool failure. + /// + /// The first hook to return a replacement wins. A hook that errors is + /// logged and skipped — one broken hook must not suppress the ones after + /// it, and must not replace the tool's failure with its own. + /// + /// The failure itself always stands: this cannot clear the error. + pub async fn dispatch_on_tool_error(&self, error: &anyhow::Error) -> Option { let hooks = self.hooks.read().await.clone(); for hook in &hooks { - let (res, val) = hook.on_tool_error(error).await?; - if res.allow { - return Ok((res, val)); + match hook.on_tool_error(error, &self.context).await { + Ok(Some(message)) => return Some(message), + Ok(None) => {} + Err(hook_err) => { + tracing::error!("on_tool_error hook failed: {hook_err:?}"); + } } } - Ok(( - HookResult { - allow: false, - message: error.to_string(), - }, - None, - )) + None } pub async fn dispatch_interaction( @@ -299,7 +429,7 @@ impl HookRunner { ) -> Result, anyhow::Error> { let hooks = self.hooks.read().await.clone(); for hook in &hooks { - if let Some(res) = hook.on_interaction(questions).await? { + if let Some(res) = hook.on_interaction(questions, &self.context).await? { return Ok(Some(res)); } } @@ -310,25 +440,28 @@ impl HookRunner { pub async fn dispatch_session_end(&self) -> Result<(), anyhow::Error> { let hooks = self.hooks.read().await.clone(); for hook in &hooks { - hook.on_session_end().await?; + hook.on_session_end(&self.context).await?; } Ok(()) } /// Dispatches `post_turn` to all registered hooks. - pub async fn dispatch_post_turn(&self, response: &ChatResponse) -> Result<(), anyhow::Error> { + pub async fn dispatch_post_turn(&self, response: &str) -> Result<(), anyhow::Error> { let hooks = self.hooks.read().await.clone(); for hook in &hooks { - hook.post_turn(response).await?; + hook.post_turn(response, &self.context).await?; } Ok(()) } /// Dispatches `on_compaction` to all registered hooks. - pub async fn dispatch_on_compaction(&self, summary: &str) -> Result<(), anyhow::Error> { + pub async fn dispatch_on_compaction( + &self, + step: &crate::types::Step, + ) -> Result<(), anyhow::Error> { let hooks = self.hooks.read().await.clone(); for hook in &hooks { - hook.on_compaction(summary).await?; + hook.on_compaction(step, &self.context).await?; } Ok(()) } @@ -343,16 +476,104 @@ mod tests { clippy::field_reassign_with_default )] use super::*; - use crate::types::{HookResult, QuestionHookResult, ToolCall, ToolResult, UsageMetadata}; + use crate::types::{HookResult, QuestionHookResult, ToolCall, ToolResult}; use std::sync::Mutex; + /// A hook whose gate cannot decide. Before S2 this ran the tool. + struct BrokenHook; + + impl Hook for BrokenHook { + async fn pre_tool_call( + &self, + _tool_call: &ToolCall, + _context: &crate::context::HookContext, + ) -> Result { + Err(anyhow::anyhow!("the policy store is unreachable")) + } + } + + fn probe_call() -> ToolCall { + ToolCall { + id: "1".to_string(), + name: "RUN_COMMAND".to_string(), + args: serde_json::json!({}), + canonical_path: None, + server_name: None, + } + } + + /// The point of threading a context: what a hook writes in one lifecycle + /// event is readable in the next, without the hook holding its own state. + #[tokio::test] + async fn the_context_persists_across_dispatches() { + struct Remembering; + + impl Hook for Remembering { + async fn on_session_start( + &self, + context: &crate::context::HookContext, + ) -> Result<(), anyhow::Error> { + context.set("greeted", true); + Ok(()) + } + async fn pre_tool_call( + &self, + _tool_call: &ToolCall, + context: &crate::context::HookContext, + ) -> Result { + context.update::("calls", |c| Some(c.unwrap_or(0) + 1)); + Ok(HookResult { + allow: context.get::("greeted").unwrap_or(false), + message: String::new(), + }) + } + } + + let runner = HookRunner::new(); + runner.register(Arc::new(Remembering)).await; + + // Before the session starts, the flag is unset and the gate refuses. + let (allow, _) = HookRunner::gate_tool_call(Some(&runner), &probe_call()).await; + assert!(!allow); + + runner.dispatch_session_start().await.unwrap(); + let (allow, _) = HookRunner::gate_tool_call(Some(&runner), &probe_call()).await; + assert!( + allow, + "the session-start write was not visible to pre_tool_call" + ); + + // And the counter accumulated across both calls. + assert_eq!(runner.context().get::("calls"), Some(2)); + } + + #[tokio::test] + async fn gate_denies_when_a_hook_errors() { + let runner = HookRunner::new(); + runner.register(Arc::new(BrokenHook)).await; + let (allow, reason) = HookRunner::gate_tool_call(Some(&runner), &probe_call()).await; + assert!(!allow, "a gate that cannot decide must not allow the call"); + assert!(reason.contains("policy store is unreachable"), "{reason}"); + } + + /// No hooks registered is not a failure — there is nothing to object. + #[tokio::test] + async fn gate_allows_with_no_runner() { + let (allow, reason) = HookRunner::gate_tool_call(None, &probe_call()).await; + assert!(allow); + assert!(reason.is_empty()); + } + struct TrackerHook { name: String, calls: Arc>>, } impl Hook for TrackerHook { - async fn on_session_start(&self) -> Result<(), anyhow::Error> { + async fn on_session_start( + &self, + _context: &crate::context::HookContext, + ) -> Result<(), anyhow::Error> { self.calls .lock() .unwrap() @@ -360,7 +581,10 @@ mod tests { Ok(()) } - async fn pre_turn(&self) -> Result { + async fn pre_turn( + &self, + _context: &crate::context::HookContext, + ) -> Result { self.calls .lock() .unwrap() @@ -378,7 +602,11 @@ mod tests { } } - async fn pre_tool_call(&self, _tool_call: &ToolCall) -> Result { + async fn pre_tool_call( + &self, + _tool_call: &ToolCall, + _context: &crate::context::HookContext, + ) -> Result { self.calls .lock() .unwrap() @@ -396,7 +624,11 @@ mod tests { } } - async fn post_tool_call(&self, _result: &ToolResult) -> Result<(), anyhow::Error> { + async fn post_tool_call( + &self, + _result: &ToolResult, + _context: &crate::context::HookContext, + ) -> Result<(), anyhow::Error> { self.calls .lock() .unwrap() @@ -407,33 +639,23 @@ mod tests { async fn on_tool_error( &self, _error: &anyhow::Error, - ) -> Result<(HookResult, Option), anyhow::Error> { + _context: &crate::context::HookContext, + ) -> Result, anyhow::Error> { self.calls .lock() .unwrap() .push(format!("{}:on_tool_error", self.name)); if self.name == "recover" { - Ok(( - HookResult { - allow: true, - message: "recovered".to_string(), - }, - Some(serde_json::json!({"recovered": true})), - )) + Ok(Some("reworded".to_string())) } else { - Ok(( - HookResult { - allow: false, - message: "not recovered".to_string(), - }, - None, - )) + Ok(None) } } async fn on_interaction( &self, _questions: &[AskQuestionEntry], + _context: &crate::context::HookContext, ) -> Result, anyhow::Error> { self.calls .lock() @@ -449,7 +671,10 @@ mod tests { } } - async fn on_session_end(&self) -> Result<(), anyhow::Error> { + async fn on_session_end( + &self, + _context: &crate::context::HookContext, + ) -> Result<(), anyhow::Error> { self.calls .lock() .unwrap() @@ -457,7 +682,11 @@ mod tests { Ok(()) } - async fn post_turn(&self, _response: &ChatResponse) -> Result<(), anyhow::Error> { + async fn post_turn( + &self, + _response: &str, + _context: &crate::context::HookContext, + ) -> Result<(), anyhow::Error> { self.calls .lock() .unwrap() @@ -465,7 +694,11 @@ mod tests { Ok(()) } - async fn on_compaction(&self, _summary: &str) -> Result<(), anyhow::Error> { + async fn on_compaction( + &self, + _step: &crate::types::Step, + _context: &crate::context::HookContext, + ) -> Result<(), anyhow::Error> { self.calls .lock() .unwrap() @@ -580,6 +813,7 @@ mod tests { name: "tool_1".to_string(), args: serde_json::Value::Null, canonical_path: None, + server_name: None, }; let res = runner.dispatch_pre_tool_call(&tool_call).await.unwrap(); assert!(!res.allow); @@ -605,6 +839,8 @@ mod tests { id: Some("call_1".to_string()), result: Some(serde_json::Value::Null), error: None, + server_name: None, + exception: None, }; runner.dispatch_post_tool_call(&res).await.unwrap(); @@ -612,34 +848,72 @@ mod tests { assert_eq!(recorded, vec!["h1:post_tool_call"]); } + /// A hook that errors must not silence the hooks registered after it, and + /// must not replace the tool's failure with its own. #[tokio::test] - async fn test_dispatch_on_tool_error_recovery_short_circuits() { - let calls = Arc::new(Mutex::new(Vec::new())); + async fn test_dispatch_on_tool_error_contains_a_failing_hook() { + struct FailingHook; + impl Hook for FailingHook { + async fn on_tool_error( + &self, + _error: &anyhow::Error, + _context: &crate::context::HookContext, + ) -> Result, anyhow::Error> { + Err(anyhow::anyhow!("hook exploded")) + } + } + struct RewordingHook; + impl Hook for RewordingHook { + async fn on_tool_error( + &self, + _error: &anyhow::Error, + _context: &crate::context::HookContext, + ) -> Result, anyhow::Error> { + Ok(Some("try a smaller page size".to_string())) + } + } + let runner = HookRunner::new(); - runner - .register(Arc::new(TrackerHook { - name: "h1".to_string(), - calls: calls.clone(), - })) - .await; - runner - .register(Arc::new(TrackerHook { - name: "recover".to_string(), - calls: calls.clone(), - })) - .await; - runner - .register(Arc::new(TrackerHook { - name: "h2".to_string(), - calls: calls.clone(), - })) + runner.register(Arc::new(FailingHook)).await; + runner.register(Arc::new(RewordingHook)).await; + + let replacement = runner + .dispatch_on_tool_error(&anyhow::anyhow!("original tool failure")) .await; + assert_eq!(replacement.as_deref(), Some("try a smaller page size")); + } + + /// No hook with an opinion leaves the tool's own message standing. + #[tokio::test] + async fn test_dispatch_on_tool_error_defaults_to_no_replacement() { + let runner = HookRunner::new(); + assert!( + runner + .dispatch_on_tool_error(&anyhow::anyhow!("boom")) + .await + .is_none() + ); + } + + #[tokio::test] + async fn test_dispatch_on_tool_error_first_replacement_wins() { + let calls = Arc::new(Mutex::new(Vec::new())); + let runner = HookRunner::new(); + for name in ["h1", "recover", "h2"] { + runner + .register(Arc::new(TrackerHook { + name: name.to_string(), + calls: calls.clone(), + })) + .await; + } + let err = anyhow::anyhow!("error occurred"); - let (res, val) = runner.dispatch_on_tool_error(&err).await.unwrap(); - assert!(res.allow); - assert_eq!(res.message, "recovered"); - assert_eq!(val.unwrap(), serde_json::json!({"recovered": true})); + assert_eq!( + runner.dispatch_on_tool_error(&err).await.as_deref(), + Some("reworded") + ); let recorded = calls.lock().unwrap().clone(); assert_eq!(recorded, vec!["h1:on_tool_error", "recover:on_tool_error"]); @@ -710,13 +984,7 @@ mod tests { })) .await; - let response = ChatResponse { - text: "hello".to_string(), - thinking: String::new(), - steps: vec![], - usage_metadata: UsageMetadata::default(), - }; - runner.dispatch_post_turn(&response).await.unwrap(); + runner.dispatch_post_turn("hello").await.unwrap(); let recorded = calls.lock().unwrap().clone(); assert_eq!(recorded, vec!["h1:post_turn"]); @@ -739,7 +1007,12 @@ mod tests { })) .await; - runner.dispatch_on_compaction("summary text").await.unwrap(); + let step = crate::types::Step { + r#type: crate::types::StepType::Compaction, + content: "summary text".to_string(), + ..Default::default() + }; + runner.dispatch_on_compaction(&step).await.unwrap(); let recorded = calls.lock().unwrap().clone(); assert_eq!(recorded, vec!["h1:on_compaction", "h2:on_compaction"]); diff --git a/src/interactive.rs b/src/interactive.rs index 3f667db..5db3da2 100644 --- a/src/interactive.rs +++ b/src/interactive.rs @@ -80,8 +80,9 @@ fn print_response(response: &ChatResponse) { println!("\n{}", response.text); } // Print usage stats - let usage = &response.usage_metadata; - if usage.total_token_count > 0 { + if let Some(usage) = response.usage_metadata.as_ref() + && usage.total_token_count > 0 + { println!( "\n📊 Tokens: {} prompt, {} response, {} total", usage.prompt_token_count, usage.candidates_token_count, usage.total_token_count diff --git a/src/lib.rs b/src/lib.rs index bfecd3e..44db65f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -60,10 +60,13 @@ pub mod proto { } pub mod agent; +pub mod coerce; pub mod connection; pub mod context; pub mod conversation; pub mod error; +pub mod harness_config; +pub mod hook_dispatch; pub mod hooks; #[cfg(not(target_arch = "wasm32"))] pub mod local; @@ -72,8 +75,11 @@ pub mod wasm; pub mod path_safety; pub mod policy; +pub mod state; pub mod step_extract; pub mod tool_context; +pub mod tool_output; +pub mod tool_wire; pub mod tools; pub mod trigger_helpers; pub mod triggers; diff --git a/src/local.rs b/src/local.rs index d988bbb..0146f89 100644 --- a/src/local.rs +++ b/src/local.rs @@ -4,15 +4,29 @@ //! agent subprocess, perform the initial handshake, and transition to a WebSocket session //! wrapped by [`LocalConnection`]. +/// How long to wait for the harness's handshake reply. A pre-0.1.4 harness +/// never sends one, so this bounds that case rather than failing it. +const HANDSHAKE_TIMEOUT_SECONDS: u64 = 10; + +/// How long `disconnect()` waits for the harness to acknowledge session end. +const SESSION_END_TIMEOUT_SECONDS: u64 = 10; + +/// How long to wait for the harness to exit after stdin closes, before +/// escalating. Upstream uses the same three minutes (`local_connection.py:53`). +const PROCESS_WAIT_TIMEOUT_SECONDS: u64 = 3 * 60; + +/// How many trailing harness stderr lines to retain for crash diagnostics. +const STDERR_TAIL_LINES: usize = 20; + use crate::connection::Connection; use crate::hooks::HookRunner; use crate::proto::localharness::{ ClientInfo as ProtoClientInfo, FileEditToolConfig, FilesystemWorkspace, FindToolConfig, - GeminiConfig as ProtoGeminiConfig, GenerateImageToolConfig, GrepSearchToolConfig, - HarnessConfig, HarnessSideTools, InitializeConversationEvent, InputConfig, InputEvent, - ListDirToolConfig, MultipleChoiceAnswer, OutputConfig, OutputEvent, RunCommandToolConfig, + GenerateImageToolConfig, GrepSearchToolConfig, HarnessConfig, HarnessSideTools, + InitializeConversationEvent, InputConfig, InputEvent, ListDirToolConfig, MultipleChoiceAnswer, + OutputConfig, OutputEvent, ReadUrlContentToolConfig, RunCommandToolConfig, SearchWebToolConfig, SubagentsConfig, SystemInstructions as ProtoSystemInstructions, Tool as ProtoTool, - ToolConfirmation, ToolResponse, UserQuestionAnswer, UserQuestionsConfig, UserQuestionsResponse, + ToolConfirmation, UserQuestionAnswer, UserQuestionsConfig, UserQuestionsResponse, ViewFileToolConfig, Workspace as ProtoWorkspace, WriteToFileToolConfig, appended_system_instructions::Section, custom_system_instructions::Part, user_questions_response::QuestionsResponse, workspace::WorkspaceType, @@ -29,7 +43,7 @@ use futures_util::stream::{self, BoxStream}; use futures_util::{SinkExt, StreamExt}; use prost::Message; use serde_json::Value; -use std::collections::{HashMap, HashSet}; +use std::collections::{HashMap, HashSet, VecDeque}; use std::process::Stdio; use std::sync::Arc; use std::sync::atomic::{AtomicBool, AtomicU32, Ordering}; @@ -37,9 +51,10 @@ use tokio::io::{AsyncBufReadExt, AsyncReadExt, AsyncWriteExt}; use tokio::process::Command; use tokio::sync::Mutex; use tokio::sync::mpsc::{self, UnboundedSender}; -use tokio_tungstenite::connect_async; +use tokio_tungstenite::connect_async_with_config; use tokio_tungstenite::tungstenite::Message as WsMessage; use tokio_tungstenite::tungstenite::client::IntoClientRequest; +use tokio_tungstenite::tungstenite::protocol::WebSocketConfig; /// Connection strategy implementation communicating with a local subprocess harness. /// @@ -53,13 +68,48 @@ pub struct LocalConnection { process: Arc>, child_stdin: Arc>>, is_idle: Arc, - step_rx: Arc>>>>, + step_rx: Arc>>>, ws_tx: UnboundedSender, tool_runner: Option, hook_runner: Option, - parent_idle: Arc>, - active_subagent_ids: Arc>>, step_trackers: Arc>>, + /// The trajectory whose idle transitions end a turn. Learned from the first + /// `StepUpdate` of each turn and cleared by `send()`, mirroring upstream's + /// `reset_for_turn()` (`event_processor.py:379-386`). + main_trajectory_id: Arc>>, + /// Set by [`Connection::send_halt_request`], cleared by the next `send()` + /// or by the idle transition that consumes it. + /// + /// The harness answers a caller-initiated halt with a plain + /// `STATE_FULLY_IDLE`, not `STATE_CANCELLED` — so without this flag a + /// cancelled turn is indistinguishable from a completed one, and a caller + /// that halts mid-turn sees the stream end as if the model had finished. + cancel_requested: Arc, + /// Whether a `receive_steps()` stream is currently live. See that method. + steps_consumed: Arc, + /// Mirrors `is_idle` for [`Connection::wait_for_idle`]. + idle_tx: tokio::sync::watch::Sender, + /// Set when the harness answers `session_end_request`. + session_end_tx: tokio::sync::watch::Sender, + /// Set once the websocket reader has seen the socket close. + socket_closed: Arc, + /// Last model text per subagent trajectory; see the capture site in the + /// reader loop. Cleared per turn. + subagent_responses: Arc>>, + /// Steps the harness replayed in its handshake reply, for a resumed + /// conversation. Seeding `Conversation` with these is the remaining + /// half of WP-6. + initial_history: Vec, +} + +impl LocalConnection { + /// Steps the harness replayed when the conversation was resumed. + /// + /// Empty for a new conversation, and for any harness older than 0.1.4. + #[must_use] + pub fn initial_history(&self) -> &[Step] { + &self.initial_history + } } impl std::fmt::Debug for LocalConnection { @@ -69,8 +119,6 @@ impl std::fmt::Debug for LocalConnection { .field("is_idle", &self.is_idle) .field("tool_runner", &self.tool_runner) .field("hook_runner", &self.hook_runner) - .field("parent_idle", &self.parent_idle) - .field("active_subagent_ids", &self.active_subagent_ids) .field("step_trackers", &self.step_trackers) .finish_non_exhaustive() } @@ -89,65 +137,66 @@ impl Connection for LocalConnection { self.is_idle.load(Ordering::SeqCst) } + async fn wait_for_idle(&self) { + if self.is_idle() { + return; + } + // Watch rather than poll: the reader sets this the moment the harness + // reports idle, so a caller learns immediately instead of on the next + // tick of a sleep loop. + let mut rx = self.idle_tx.subscribe(); + let _ = rx.wait_for(|idle| *idle).await; + } + fn receive_steps(&self) -> BoxStream<'static, Result> { + // One consumer at a time. Two live streams share a single receiver, so + // each would take roughly half the steps and neither caller would see a + // complete turn — silently. Refusing is the only honest answer; the + // claim is released when the first stream is dropped, which is what + // makes the per-turn `receive_steps()` call still work. + let Some(claim) = crate::step_extract::ConsumerGuard::claim(&self.steps_consumed) else { + return stream::once(async { + Err(anyhow!( + "receive_steps() is single-consumer and a stream is already active; \ + drop it before subscribing again" + )) + }) + .boxed(); + }; let step_rx = self.step_rx.clone(); let is_idle = self.is_idle.clone(); - stream::unfold(false, move |mut checked_initial_idle| { + stream::unfold(claim, move |claim| { let step_rx = step_rx.clone(); let is_idle = is_idle.clone(); async move { - // If the connection is already idle on the first poll and the queue is empty, terminate. - if !checked_initial_idle { - checked_initial_idle = true; - let mut guard = step_rx.lock().await; - if guard - .as_mut() - .is_some_and(|rx| rx.is_empty() && is_idle.load(Ordering::SeqCst)) - { - return None; - } - } - loop { + // Head condition, upstream local_connection.py:339-341: the + // stream ends only when the connection is idle AND nothing + // is queued behind the idle event. Returning on the idle + // event itself drops every step queued after it. let mut guard = step_rx.lock().await; let Some(rx) = &mut *guard else { + drop(guard); return None; }; - match rx.try_recv() { - Ok(step_res) => match &step_res { - Ok(step) if step.id == "IDLE_SENTINEL" => { - if is_idle.load(Ordering::SeqCst) { - return None; - } - } - _ => { - return Some((step_res, checked_initial_idle)); - } - }, - Err(mpsc::error::TryRecvError::Empty) => { - drop(guard); - let mut guard2 = step_rx.lock().await; - let Some(rx2) = &mut *guard2 else { - return None; - }; - let step_res = rx2.recv().await; - drop(guard2); - match step_res { - Some(res) => match &res { - Ok(step) if step.id == "IDLE_SENTINEL" => { - if is_idle.load(Ordering::SeqCst) { - return None; - } - } - _ => { - return Some((res, checked_initial_idle)); - } - }, - None => return None, - } + if is_idle.load(Ordering::SeqCst) && rx.is_empty() { + drop(guard); + return None; + } + let received = rx.recv().await; + drop(guard); + + match received { + None => return None, + // Falls through to re-evaluate the head condition + // rather than ending the stream: more steps may already + // be queued behind the idle marker. + Some(crate::step_extract::StepEvent::Idle) => {} + Some(crate::step_extract::StepEvent::Step(step)) => { + return Some((Ok(*step), claim)); } - Err(mpsc::error::TryRecvError::Disconnected) => { - return None; + Some(crate::step_extract::StepEvent::Error(e)) => { + return Some((Err(e), claim)); } } } @@ -157,14 +206,26 @@ impl Connection for LocalConnection { } async fn send(&self, content: &str) -> Result<(), anyhow::Error> { + // Before any state is touched: a denied turn must leave the connection + // exactly as it was, not half-reset with a cleared trajectory. + crate::hook_dispatch::gate_turn(self.hook_runner.as_ref()).await?; + self.is_idle.store(false, Ordering::SeqCst); + let _ = self.idle_tx.send(false); + // A halt applies to the turn it interrupted. Leaving the flag set would + // make the *next* turn report itself cancelled the moment it went idle. + self.cancel_requested.store(false, Ordering::SeqCst); { - let mut p_idle = self.parent_idle.lock().await; - *p_idle = false; + // A new turn may run on a new trajectory; relearn it rather than + // judging this turn against the last one's (upstream + // reset_for_turn(), event_processor.py:379-386). + let mut main_id = self.main_trajectory_id.lock().await; + *main_id = None; } { - let mut active = self.active_subagent_ids.lock().await; - active.clear(); + // Last turn's subagent text must not be attributed to this turn's + // subagents (upstream clears the same map in send()). + self.subagent_responses.lock().await.clear(); } { let mut guard = self.step_rx.lock().await; @@ -175,7 +236,7 @@ impl Connection for LocalConnection { let input_event = InputEvent { event: Some(crate::proto::localharness::input_event::Event::UserInput( - content.to_string(), + crate::harness_config::sanitize_prompt(content), )), }; let raw_json = serde_json::to_string(&input_event)?; @@ -183,6 +244,38 @@ impl Connection for LocalConnection { Ok(()) } + async fn send_content(&self, content: &crate::types::Content) -> Result<(), anyhow::Error> { + crate::hook_dispatch::gate_turn(self.hook_runner.as_ref()).await?; + + self.is_idle.store(false, Ordering::SeqCst); + let _ = self.idle_tx.send(false); + self.cancel_requested.store(false, Ordering::SeqCst); + { + let mut main_id = self.main_trajectory_id.lock().await; + *main_id = None; + } + { + self.subagent_responses.lock().await.clear(); + } + { + let mut guard = self.step_rx.lock().await; + if let Some(rx) = &mut *guard { + while rx.try_recv().is_ok() {} + } + } + + let input_event = InputEvent { + event: Some( + crate::proto::localharness::input_event::Event::ComplexUserInput( + crate::harness_config::build_user_input_proto(content), + ), + ), + }; + let raw_json = serde_json::to_string(&input_event)?; + self.ws_tx.send(raw_json)?; + Ok(()) + } + async fn send_trigger_notification(&self, content: &str) -> Result<(), anyhow::Error> { let input_event = InputEvent { event: Some( @@ -197,6 +290,7 @@ impl Connection for LocalConnection { } async fn send_halt_request(&self) -> Result<(), anyhow::Error> { + self.cancel_requested.store(true, Ordering::SeqCst); let input_event = InputEvent { event: Some(crate::proto::localharness::input_event::Event::HaltRequest( true, @@ -227,27 +321,7 @@ impl Connection for LocalConnection { } async fn send_tool_response(&self, id: &str, result: ToolResult) -> Result<(), anyhow::Error> { - let resp_json = if let Some(ref val) = result.result { - // The Go harness expects responseJson to always be a JSON object. - // If the tool returned a non-object value (string, number, array, etc.), - // wrap it under a "result" key to match the Python SDK's behavior. - if val.is_object() { - serde_json::to_string(val)? - } else { - serde_json::to_string(&serde_json::json!({ "result": val }))? - } - } else if let Some(ref err) = result.error { - serde_json::to_string(&serde_json::json!({ "error": err }))? - } else { - "{}".to_string() - }; - - let resp = ToolResponse { - id: Some(id.to_string()), - response_json: Some(resp_json), - supplemental_media: Vec::new(), - response: None, - }; + let resp = crate::tool_wire::tool_response(Some(id.to_string()), &result); let input_event = InputEvent { event: Some(crate::proto::localharness::input_event::Event::ToolResponse(resp)), }; @@ -311,13 +385,86 @@ impl Connection for LocalConnection { } async fn disconnect(&self) -> Result<(), anyhow::Error> { + // Upstream dispatches session_end from disconnect() + // (0.1.1 local_connection.py:686-690). This crate defined the + // dispatcher and never called it, so on_session_end hooks silently + // never ran. Dispatched before teardown so a hook can still observe a + // live connection; a failing hook must not block shutdown. + if let Some(ref runner) = self.hook_runner + && let Err(e) = runner.dispatch_session_end().await + { + tracing::error!("on_session_end hook failed: {e:?}"); + } + + // Tell the harness the session is over and wait for it to say it has + // flushed. Upstream sends this before closing stdin; skipping it meant + // shutdown raced the harness's own trajectory write (B7). + // Nothing to wait for once the socket is gone — a crashed harness will + // never answer, and blocking on it would add the full timeout to every + // teardown after a crash. + if !self.socket_closed.load(Ordering::SeqCst) { + let input_event = InputEvent { + event: Some( + crate::proto::localharness::input_event::Event::SessionEndRequest(true), + ), + }; + if let Ok(raw_json) = serde_json::to_string(&input_event) { + let _ = self.ws_tx.send(raw_json); + let mut rx = self.session_end_tx.subscribe(); + // Bounded: a harness that never answers must not hold shutdown + // open, and closing stdin below stops it regardless. + let _ = tokio::time::timeout( + std::time::Duration::from_secs(SESSION_END_TIMEOUT_SECONDS), + rx.wait_for(|acked| *acked), + ) + .await; + } + } + + // Ordered shutdown, mirroring upstream local_connection.py:407-455. + // A bare kill() runs no Go defers, so cleanupAllAgents never runs and + // the trajectory is never written to disk -- upstream's own tests spell + // this out (local_connection_test.py:3110-3130). + // + // Closing stdin is the actual signal: the harness monitors it for EOF. + { + let mut stdin = self.child_stdin.lock().await; + drop(stdin.take()); + } + let mut proc = self.process.lock().await; - let _ = proc.kill().await; + match tokio::time::timeout( + std::time::Duration::from_secs(PROCESS_WAIT_TIMEOUT_SECONDS), + proc.wait(), + ) + .await + { + Ok(Ok(_)) => {} + // Exited badly, or took too long: escalate rather than hang. + _ => { + let _ = proc.kill().await; + } + } drop(proc); Ok(()) } } +/// Where the harness stores its state when the caller named no `save_dir`. +/// +/// Per-conversation so two concurrent agents do not share a directory. +fn default_save_dir(conversation_id: &str) -> String { + let leaf = if conversation_id.is_empty() { + "antigravity-session".to_string() + } else { + format!("antigravity-{conversation_id}") + }; + std::env::temp_dir() + .join(leaf) + .to_string_lossy() + .into_owned() +} + /// Configurator and builder to spawn a local helper subprocess and build a connection. #[derive(Debug)] pub struct LocalConnectionStrategy { @@ -341,14 +488,29 @@ pub struct LocalConnectionStrategy { pub hook_runner: Option, /// Conversation ID for standard session resuming or tracking. pub conversation_id: String, + /// How the conversation attaches to harness-side session state. + pub session_continuation_mode: Option, /// MCP server configurations. pub mcp_servers: Vec, + /// How the harness retries the model, on `HarnessConfig.retry_config`. + pub retry_config: Option, + /// Tool-output truncation policy, on `HarnessConfig.tool_output_truncation`. + pub tool_output_truncation: Option, + /// Named subagents, emitted on `HarnessConfig.custom_subagents`. + /// + /// Not a field of [`new`](Self::new) — set it on the struct. + pub subagents: Vec, + /// Extra environment for the harness process, sent on `InputConfig.env`. + /// + /// Not a field of [`new`](Self::new) — set it on the struct. The harness + /// also inherits this process's environment; these are additions on top. + pub env: HashMap, } impl LocalConnectionStrategy { /// Creates a new `LocalConnectionStrategy`. #[allow(clippy::too_many_arguments)] - pub const fn new( + pub fn new( binary_path: String, gemini_config: GeminiConfig, capabilities_config: CapabilitiesConfig, @@ -359,6 +521,7 @@ impl LocalConnectionStrategy { tool_runner: Option, hook_runner: Option, conversation_id: String, + session_continuation_mode: Option, mcp_servers: Vec, ) -> Self { Self { @@ -372,7 +535,12 @@ impl LocalConnectionStrategy { tool_runner, hook_runner, conversation_id, + session_continuation_mode, mcp_servers, + retry_config: None, + tool_output_truncation: None, + subagents: Vec::new(), + env: HashMap::new(), } } @@ -412,7 +580,10 @@ impl LocalConnectionStrategy { } } - let api_key = api_key.unwrap_or_default(); + // Resolved for validation only; the value reaches the wire through + // build_models_proto, and the harness also reads GEMINI_API_KEY from + // the environment it inherits. + let _api_key = api_key.unwrap_or_default(); // 1. Spawning localharness subprocess // Explicitly forward SHELL and PATH so the harness can fork /bin/sh for @@ -445,13 +616,23 @@ impl LocalConnectionStrategy { // 2. Perform Handshake via length-prefixed protocol buffer over stdin/stdout let client_info = ProtoClientInfo { + os: Some(std::env::consts::OS.to_string()), + os_version: Some(crate::harness_config::os_version()), language: Some("rust".to_string()), version: Some(env!("CARGO_PKG_VERSION").to_string()), language_version: Some(rustc_version()), }; let input_config = InputConfig { - storage_directory: self.save_dir.clone(), + env: self.env.clone(), + // A harness with nowhere to write puts its state next to whatever + // its working directory happens to be. Defaulting to a per-session + // temp directory keeps that out of the caller's repository. + storage_directory: Some( + self.save_dir + .clone() + .unwrap_or_else(|| default_save_dir(&self.conversation_id)), + ), port: None, bind_address: None, client_info: Some(client_info), @@ -480,16 +661,40 @@ impl LocalConnectionStrategy { .ok_or_else(|| anyhow!("Harness OutputConfig missing api_key"))?; // 3. Setup WebSocket connection - let ws_url = format!("ws://localhost:{port}/"); - let mut req = ws_url.clone().into_client_request()?; - req.headers_mut() - .insert("x-goog-api-key", harness_api_key.parse()?); + // + // The harness binds 127.0.0.1. On a host where `localhost` resolves to + // ::1 first, every attempt against the name fails with connection + // refused while the literal works — so both are tried, alternating, and + // the error names whichever was tried last. + let ws_urls = [ + format!("ws://localhost:{port}/"), + format!("ws://127.0.0.1:{port}/"), + ]; + let mut requests = Vec::with_capacity(ws_urls.len()); + for url in &ws_urls { + let mut req = url.clone().into_client_request()?; + req.headers_mut() + .insert("x-goog-api-key", harness_api_key.parse()?); + requests.push(req); + } // Connect with retry/backoff let mut ws_stream = None; let mut delay = std::time::Duration::from_millis(100); for attempt in 0..5 { - match connect_async(req.clone()).await { + let ws_url = &ws_urls[attempt % ws_urls.len()]; + let req = requests[attempt % requests.len()].clone(); + // Tool results and file contents routinely exceed tungstenite's + // default 16 MiB frame / 64 MiB message caps, and upstream sets + // max_size=None for exactly that reason + // (local_connection.py:1086-1092). Hitting the cap kills the + // connection mid-turn rather than truncating. + let ws_config = WebSocketConfig { + max_message_size: None, + max_frame_size: None, + ..WebSocketConfig::default() + }; + match connect_async_with_config(req, Some(ws_config), false).await { Ok((stream, _)) => { ws_stream = Some(stream); break; @@ -509,15 +714,25 @@ impl LocalConnectionStrategy { let (mut ws_write, mut ws_read) = ws.split(); // 4. Build HarnessConfig proto + let declared_hook_kinds = match self.hook_runner { + Some(ref runner) => runner.declared_kinds().await, + None => crate::hook_dispatch::HookKinds::NONE, + }; + let mut proto_tools = Vec::new(); + let mut registered_tool_names: Vec = Vec::new(); if let Some(ref runner) = self.tool_runner { let tools = runner.tools.read().await; - for t in tools.values() { + for t in tools.iter() { + registered_tool_names.push(t.name().to_string()); proto_tools.push(ProtoTool { name: Some(t.name().to_string()), description: Some(t.description().to_string()), parameters_json_schema: Some(t.parameters_json_schema().to_string()), response_json_schema: None, + // Deferred tool loading is a 0.1.9 capability this crate + // does not use yet (audit W27). + defer_loading: None, }); } } @@ -562,29 +777,6 @@ impl LocalConnectionStrategy { } }); - let proto_gemini = ProtoGeminiConfig { - api_key: Some(api_key), - base_url: None, - model_name: Some(self.gemini_config.models.default.name.clone()), - thinking_level: self - .gemini_config - .models - .default - .generation - .thinking_level - .map(|l| match l { - crate::types::ThinkingLevel::Minimal => "minimal".to_string(), - crate::types::ThinkingLevel::Low => "low".to_string(), - crate::types::ThinkingLevel::Medium => "medium".to_string(), - crate::types::ThinkingLevel::High => "high".to_string(), - }), - enable_url_context: self.gemini_config.enable_url_context, - enable_google_search: self.gemini_config.enable_google_search, - use_vertex: Some(self.gemini_config.vertex), - project: self.gemini_config.project.clone(), - location: self.gemini_config.location.clone(), - }; - let mut proto_workspaces = Vec::new(); for w in &self.workspaces { proto_workspaces.push(ProtoWorkspace { @@ -627,6 +819,16 @@ impl LocalConnectionStrategy { ); let side_tools = HarnessSideTools { + // A tool like any other: absent would leave the harness to guess, + // and a caller who listed `enabled_tools` had no way to turn either + // on or off (C6). + search_web: Some(SearchWebToolConfig { + enabled: Some(active_tools.contains(&BuiltinTools::SearchWeb)), + }), + read_url_content: Some(ReadUrlContentToolConfig { + enabled: Some(active_tools.contains(&BuiltinTools::ReadUrlContent)), + }), + tool_search_config: None, find: Some(FindToolConfig { enabled: Some(active_tools.contains(&BuiltinTools::FindFile)), }), @@ -637,7 +839,10 @@ impl LocalConnectionStrategy { enabled: Some(active_tools.contains(&BuiltinTools::StartSubagent)), }), user_questions: Some(UserQuestionsConfig { - enabled: Some(true), + // Was hardcoded true, so a caller who listed `enabled_tools` + // explicitly still got the question panel and no way to turn it + // off. It is a tool like any other. + enabled: Some(active_tools.contains(&BuiltinTools::AskQuestion)), }), file_edit: Some(FileEditToolConfig { enabled: Some(active_tools.contains(&BuiltinTools::EditFile)), @@ -657,15 +862,38 @@ impl LocalConnectionStrategy { permissions: None, generate_image: Some(GenerateImageToolConfig { enabled: Some(active_tools.contains(&BuiltinTools::GenerateImage)), - model_name: self.capabilities_config.image_model.clone(), }), }; let harness_config = HarnessConfig { cascade_id: Some(self.conversation_id.clone()), - model_config: Some( - crate::proto::localharness::harness_config::ModelConfig::GeminiConfig(proto_gemini), + // Each of these is its own work package (WP-6 session continuation + // and retry, WP-8 hooks, WP-9 MCP and subagents). Explicitly unset + // so `cargo build` flags them again when those land. + session_continuation_mode: self + .session_continuation_mode + .map(crate::types::SessionContinuationMode::as_proto), + retry_config: crate::harness_config::build_retry_config_proto( + self.retry_config.as_ref(), + ), + // Only what a registered hook declared. The harness blocks its + // turn waiting for a CallHookResponse for every kind named here, + // and `answer_hook_request` is what makes that safe — emitting this + // before the router existed would have turned a silent no-op into a + // mid-turn deadlock (E5). + enabled_hooks: declared_hook_kinds.to_proto(), + custom_subagents: crate::harness_config::build_custom_subagents_proto( + &self.subagents, + ®istered_tool_names, + )?, + mcp_servers: crate::harness_config::build_mcp_servers_proto(&self.mcp_servers), + tool_output_truncation: crate::harness_config::build_truncation_proto( + self.tool_output_truncation.as_ref(), ), + models: crate::harness_config::build_models_proto( + &self.gemini_config, + self.capabilities_config.image_model.as_deref(), + )?, system_instructions: proto_sys, tools: proto_tools, harness_side_tools: Some(side_tools), @@ -684,6 +912,60 @@ impl LocalConnectionStrategy { let init_json = serde_json::to_string(&init_event)?; ws_write.send(WsMessage::Text(init_json)).await?; + // Read the handshake reply before anything else. Since 0.1.4 the harness + // answers InitializeConversationEvent with an OutputEvent carrying + // initialize_conversation_response, and upstream blocks on it + // (local_connection.py:1162-1176). Skipping it leaves the frame to be + // picked up by the step reader, where it is not a step. + // + // `cascade_id` from the response is deliberately ignored: upstream takes + // the conversation id from the first StepUpdate's trajectory_id instead + // (event_processor.py:478-480). + let initial_history: Vec = match tokio::time::timeout( + std::time::Duration::from_secs(HANDSHAKE_TIMEOUT_SECONDS), + ws_read.next(), + ) + .await + { + Ok(Some(Ok(WsMessage::Text(raw)))) => { + match serde_json::from_str::(&raw) { + Ok(OutputEvent { + event: + Some(crate::proto::localharness::output_event::Event::InitializeConversationResponse( + resp, + )), + .. + }) => resp + .history + .iter() + .filter_map(crate::step_extract::step_from_update) + .collect(), + Ok(_) => { + // A harness that answers with something else is not one + // we understand; surfacing it beats guessing. + tracing::warn!("first frame was not initialize_conversation_response"); + Vec::new() + } + Err(e) => { + return Err(anyhow!( + "could not parse the harness handshake reply: {e}. This usually means \ + the harness is a different version than proto/localharness.proto was \ + generated from — see scripts/gen_proto.py." + )); + } + } + } + Ok(Some(Err(e))) => return Err(anyhow!("harness closed during handshake: {e}")), + Ok(None) => return Err(anyhow!("harness closed the socket during handshake")), + // Pre-0.1.4 harnesses never answer. Continuing keeps this SDK working + // against the version scripts/install_harness.sh still pins. + Err(_) => { + tracing::debug!("no handshake reply within {HANDSHAKE_TIMEOUT_SECONDS}s"); + Vec::new() + } + Ok(Some(Ok(_))) => Vec::new(), + }; + // 6. Spawn Background WS Sender Loop let (ws_tx, mut ws_rx) = mpsc::unbounded_channel::(); tokio::spawn(async move { @@ -696,18 +978,43 @@ impl LocalConnectionStrategy { }); // 7. Setup channels for step stream - let (step_tx, step_rx) = mpsc::unbounded_channel::>(); + let (step_tx, step_rx) = mpsc::unbounded_channel::(); let client_tool_step_counter = Arc::new(AtomicU32::new(50_000)); - let is_idle = Arc::new(AtomicBool::new(false)); - let parent_idle = Arc::new(Mutex::new(false)); - let active_subagent_ids = Arc::new(Mutex::new(HashSet::new())); + // Upstream starts idle (local_connection.py:448-459) and this now + // matches. Two earlier attempts were reverted: the first hit a + // first-poll hazard the receive_steps() loop restructure removed, the + // second a connect-time race where a caller polling receive_steps() + // before the harness reported STATE_RUNNING saw idle with an empty + // queue and got an empty stream. + // + // What closes it is the contract, not a flag: `send()` clears idle + // before the prompt goes out, so send()-then-receive — which is what + // `chat()` and `Conversation` do — can never observe the gap. A caller + // that subscribes before sending anything now gets an empty stream + // immediately instead of blocking forever on a turn that was never + // started, which is the better of the two failure modes and the one + // upstream has (C2). + let is_idle = Arc::new(AtomicBool::new(true)); + let (idle_tx, _idle_rx) = tokio::sync::watch::channel(true); + let (session_end_tx, _session_end_rx) = tokio::sync::watch::channel(false); + let conn_session_end = session_end_tx.clone(); + let socket_closed = Arc::new(AtomicBool::new(false)); + let conn_socket_closed = socket_closed.clone(); + let conn_idle_tx = idle_tx.clone(); + let cancel_requested = Arc::new(AtomicBool::new(false)); let step_trackers = Arc::new(Mutex::new(HashMap::new())); + // Last model text seen on each subagent trajectory, so the + // `post_tool_call` that fires when the subagent finishes can carry what + // it produced (upstream `_subagent_responses`). + let subagent_responses: Arc>> = + Arc::new(Mutex::new(HashMap::new())); + let conn_subagent_responses = subagent_responses.clone(); let conn_ws_tx = ws_tx.clone(); let conn_is_idle = is_idle.clone(); - let conn_parent_idle = parent_idle.clone(); - let conn_active_subagents = active_subagent_ids.clone(); + let conn_is_idle_for_close = is_idle.clone(); + let conn_cancel_requested = cancel_requested.clone(); let conn_step_trackers = step_trackers.clone(); let tool_runner = self.tool_runner.clone(); @@ -719,6 +1026,14 @@ impl LocalConnectionStrategy { let conn_cascade_id_for_ws = conn_cascade_id.clone(); // 8. Spawn Stderr Reader + // + // The tail is retained rather than only logged: when the harness dies + // the websocket simply closes, and the reason it died is in these lines. + // Discarding them left a crash indistinguishable from a clean end of + // stream (`harness-crash-diagnostics`). + let stderr_tail: Arc>> = + Arc::new(Mutex::new(VecDeque::with_capacity(STDERR_TAIL_LINES))); + let reader_stderr_tail = stderr_tail.clone(); let mut reader = tokio::io::BufReader::new(child_stderr); tokio::spawn(async move { let mut line = String::new(); @@ -726,7 +1041,15 @@ impl LocalConnectionStrategy { if n == 0 { break; } - tracing::info!("Harness stderr: {}", line.trim_end()); + let trimmed = line.trim_end().to_string(); + tracing::info!("Harness stderr: {trimmed}"); + { + let mut tail = reader_stderr_tail.lock().await; + if tail.len() == STDERR_TAIL_LINES { + tail.pop_front(); + } + tail.push_back(trimmed); + } line.clear(); } }); @@ -748,17 +1071,38 @@ impl LocalConnectionStrategy { let step_idx = step_update.step_index.unwrap_or(0); let key = (traj_id.clone(), step_idx); - // Learn the cascade_id from the first StepUpdate - // where cascade_id == trajectory_id (Python parity) + // The main trajectory is whichever one reports first, + // unconditionally — upstream event_processor.py:478-480. + // The previous rule also required cascade_id == + // trajectory_id, so on a resumed session, or when a + // subagent reported first, nothing was ever learned and + // every trajectory then counted as the main one. + if !traj_id.is_empty() { + let mut main_id = + conn_cascade_id_for_ws.lock().await; + let unset = main_id.is_none(); + if unset { + *main_id = Some(traj_id.clone()); + } + drop(main_id); + if unset { + tracing::debug!("main trajectory: {traj_id}"); + let _ = conn_learned_id.set(traj_id.clone()); + } + } + + // A model step on a trajectory that is not the main one + // came from a subagent. Keep its text: the completion + // event carries no result of its own (H12). { - let cascade_id_val = step_update.cascade_id.clone().unwrap_or_default(); - if !cascade_id_val.is_empty() && cascade_id_val == traj_id { - let _ = conn_learned_id.set(cascade_id_val.clone()); - let mut cid = conn_cascade_id_for_ws.lock().await; - if cid.is_none() { - tracing::debug!("Learned cascade_id from StepUpdate: {}", cascade_id_val); - *cid = Some(cascade_id_val); - } + let main_id = conn_cascade_id_for_ws.lock().await.clone(); + let is_subagent = !traj_id.is_empty() + && main_id.as_ref().is_some_and(|id| *id != traj_id); + if is_subagent + && step_update.source == Some(3) + && let Some(text) = step_update.text.clone().filter(|t| !t.is_empty()) + { + conn_subagent_responses.lock().await.insert(traj_id.clone(), text); } } @@ -823,8 +1167,11 @@ impl LocalConnectionStrategy { Some(1) => StepStatus::Active, Some(2) => StepStatus::Done, Some(3) => StepStatus::WaitingForUser, - Some(4) => StepStatus::Error, - Some(5) => StepStatus::TerminalError, + // STATE_TERMINAL_ERROR = 5 was removed upstream in + // 0.1.3; a step that fails now reports STATE_ERROR, + // and a whole turn failing arrives as + // TrajectoryStateUpdate.error instead (audit W7/W23). + Some(4) => StepStatus::TerminalError, _ => StepStatus::Unknown, }; @@ -853,7 +1200,19 @@ impl LocalConnectionStrategy { f.output_string.as_ref().and_then(|s| serde_json::from_str(s).ok()) }); - let error_msg = step_update.error_message.clone().unwrap_or_default(); + // A step can carry ActionError{error_message, + // http_code} with an empty top-level message, which + // reported the failure as blank (audit C14). + let error_msg = step_update + .error_message + .clone() + .or_else(|| { + step_update + .error + .as_ref() + .and_then(|e| e.error_message.clone()) + }) + .unwrap_or_default(); let http_code = step_update.error.as_ref().and_then(|e| e.http_code).unwrap_or(0); let step = Step { @@ -877,7 +1236,31 @@ impl LocalConnectionStrategy { http_code, }; - let _ = step_tx.send(Ok(step)); + // Turn-level hooks fire off the step that carries the + // event, which is the only place either is observable + // from inside the connection (H1b, H1d). + if let Some(runner) = hook_runner.as_ref() { + if step.is_complete_response == Some(true) { + let runner = runner.clone(); + let text = step.content.clone(); + tokio::spawn(async move { + if let Err(e) = runner.dispatch_post_turn(&text).await { + tracing::error!("post_turn hook failed: {e:?}"); + } + }); + } + if step.r#type == StepType::Compaction { + let runner = runner.clone(); + let compacted = step.clone(); + tokio::spawn(async move { + if let Err(e) = runner.dispatch_on_compaction(&compacted).await { + tracing::error!("on_compaction hook failed: {e:?}"); + } + }); + } + } + + let _ = step_tx.send(crate::step_extract::StepEvent::Step(Box::new(step))); // Detect platform-level errors (source=SYSTEM) and propagate them. if source == StepSource::System @@ -885,7 +1268,7 @@ impl LocalConnectionStrategy { && (http_code == 400 || http_code == 401 || http_code == 403) { let err_str = step_update.error.as_ref().and_then(|e| e.error_message.clone()).unwrap_or_else(|| "System error occurred.".to_string()); - let _ = step_tx.send(Err(anyhow!("System step error (HTTP {}): {}", http_code, err_str))); + let _ = step_tx.send(crate::step_extract::StepEvent::Error(anyhow!("System step error (HTTP {}): {}", http_code, err_str))); break; } @@ -893,7 +1276,7 @@ impl LocalConnectionStrategy { if status == StepStatus::TerminalError { let err_msg = step_update.error_message.clone() .unwrap_or_else(|| "Terminal error occurred during execution".to_string()); - let _ = step_tx.send(Err( + let _ = step_tx.send(crate::step_extract::StepEvent::Error( AntigravityExecutionError { message: err_msg }.into() )); break; @@ -909,8 +1292,16 @@ impl LocalConnectionStrategy { let tr = ToolResult { name: tc.name.clone(), id: Some(tc.id.clone()), - result: extracted.and_then(|r| r.result).or_else(|| step_update.text.clone().map(Value::String)), + // Structured per tool, so a hook can read an + // exit code or a content path instead of + // parsing display text (N3). Falls back to + // the text for anything unrecognised. + result: crate::tool_output::structured_result(&step_update) + .or_else(|| extracted.and_then(|r| r.result)) + .or_else(|| step_update.text.clone().map(Value::String)), error: None, + server_name: None, + exception: None, }; let runner_clone = runner.clone(); tokio::spawn(async move { @@ -921,7 +1312,7 @@ impl LocalConnectionStrategy { let err = anyhow!(err_msg); let runner_clone = runner.clone(); tokio::spawn(async move { - let _ = runner_clone.dispatch_on_tool_error(&err).await; + runner_clone.dispatch_on_tool_error(&err).await; }); } } @@ -935,7 +1326,15 @@ impl LocalConnectionStrategy { let step_index = step_update.step_index; tokio::spawn(async move { let mut questions_list = Vec::new(); - for uq in &q_req_clone.questions { + // The hook only sees multiple-choice questions, + // so the response index is an index into the + // FILTERED list. Carry the original index or + // every answer after a non-multiple-choice + // question is recorded against the wrong one. + let mut original_indices: Vec = Vec::new(); + for (original_index, uq) in + q_req_clone.questions.iter().enumerate() + { if let Some(crate::proto::localharness::user_question::QuestionType::MultipleChoice(ref mc)) = uq.question_type { let mut opts = Vec::new(); for (j, choice) in mc.choices.iter().enumerate() { @@ -944,6 +1343,7 @@ impl LocalConnectionStrategy { text: choice.clone(), }); } + original_indices.push(original_index); questions_list.push(AskQuestionEntry { question: mc.question.clone().unwrap_or_default(), options: opts, @@ -962,7 +1362,17 @@ impl LocalConnectionStrategy { if let Some(runner) = hook_runner.as_ref().filter(|_| !questions_list.is_empty()) { let res = runner.dispatch_interaction(&questions_list).await; if let Ok(Some(q_res)) = res { - for (orig_idx, r) in q_res.responses.iter().enumerate() { + for (filtered_idx, r) in + q_res.responses.iter().enumerate() + { + // A hook may return more responses + // than there were questions; ignore + // the extras rather than panicking. + let Some(&orig_idx) = + original_indices.get(filtered_idx) + else { + break; + }; if !r.skipped { let mut mc_ans = MultipleChoiceAnswer { selected_choice_indices: Vec::new(), @@ -1008,12 +1418,8 @@ impl LocalConnectionStrategy { let mut allow = true; let tool_call = crate::step_extract::extract_builtin_tool_call(&step_update_clone); if let Some(ref tc) = tool_call { - if let Some(ref runner) = hook_runner { - let pre_call = runner.dispatch_pre_tool_call(tc).await; - if let Ok(res) = pre_call { - allow = res.allow; - } - } + // Fails closed: a hook that errors denies. + (allow, _) = crate::hooks::HookRunner::gate_tool_call(hook_runner.as_ref(), tc).await; if allow { let key = (step_update_clone.trajectory_id.clone().unwrap_or_default(), step_update_clone.step_index.unwrap_or(0)); pending_calls.lock().await.insert(key, tc.clone()); @@ -1035,37 +1441,135 @@ impl LocalConnectionStrategy { } } crate::proto::localharness::output_event::Event::TrajectoryStateUpdate(tsu) => { - let sub_id = tsu.trajectory_id.clone().unwrap_or_default(); - let learned_cascade = conn_cascade_id_for_ws.lock().await; - let is_subagent = learned_cascade.as_ref().is_some_and(|cid| !sub_id.is_empty() && sub_id != *cid); - tracing::debug!("TrajectoryStateUpdate: trajectory_id={:?}, state={:?}, is_subagent={}, learned_cascade_id={:?}", sub_id, tsu.state, is_subagent, *learned_cascade); - drop(learned_cascade); - - let mut active_subs = conn_active_subagents.lock().await; - let mut p_idle = conn_parent_idle.lock().await; - - if tsu.state == Some(1) { // STATE_RUNNING - if is_subagent { - active_subs.insert(sub_id); - } - } else if tsu.state == Some(2) { // STATE_IDLE - if is_subagent { - active_subs.remove(&sub_id); - } else { - *p_idle = true; + let traj_id = tsu.trajectory_id.clone().unwrap_or_default(); + let main_id = conn_cascade_id_for_ws.lock().await; + // Only the main trajectory drives idle. Upstream returns + // early for subagent trajectories (event_processor.py:539-542); + // the previous parent_idle + active_subagent_ids + // bookkeeping is the 0.1.1 shape, deleted upstream in 0.1.6. + let is_main = main_id + .as_ref() + .is_none_or(|id| traj_id.is_empty() || traj_id == *id); + tracing::debug!("TrajectoryStateUpdate: trajectory_id={traj_id:?}, state={:?}, is_main={is_main}", tsu.state); + drop(main_id); + + if !is_main { + // A subagent finishing is how a START_SUBAGENT call + // completes — the harness sends no tool response for + // it. Without this a `post_tool_call` hook saw the + // pre_tool_call and never a matching completion. + if tsu.state == Some(2) || tsu.state == Some(3) { + let response = conn_subagent_responses + .lock() + .await + .remove(&traj_id) + .unwrap_or_else(|| traj_id.clone()); + if let Some(runner) = hook_runner.as_ref() { + let tr = crate::types::ToolResult { + name: crate::types::BuiltinTools::StartSubagent + .as_str() + .to_string(), + id: None, + result: Some(Value::String(response)), + error: None, + server_name: None, + exception: None, + }; + let runner = runner.clone(); + tokio::spawn(async move { + let _ = runner.dispatch_post_tool_call(&tr).await; + }); + } } + continue; } - tracing::debug!("TrajectoryStateUpdate: p_idle={}, active_subs_empty={}", *p_idle, active_subs.is_empty()); - if *p_idle && active_subs.is_empty() && !conn_is_idle.swap(true, Ordering::SeqCst) { + // A turn that failed server-side reports its + // reason here; without this the stream just ends + // (event_processor.py:554-557). + if let Some(ref err) = tsu.error + && !err.is_empty() + { + let _ = step_tx.send( + crate::step_extract::StepEvent::Error(anyhow!( + "{err}" + )), + ); + } + + if tsu.state == Some(3) { // STATE_CANCELLED + conn_cancel_requested.store(false, Ordering::SeqCst); + let reason = tsu + .error + .clone() + .filter(|e| !e.is_empty()) + .unwrap_or_else(|| "Turn cancelled".to_string()); + let _ = step_tx.send( + crate::step_extract::StepEvent::Error( + anyhow!(crate::error::AntigravityError::Cancelled(reason)), + ), + ); + } else if tsu.state == Some(2) // STATE_FULLY_IDLE + && conn_cancel_requested.swap(false, Ordering::SeqCst) + { + // A halt the caller asked for. The harness stops + // the turn and reports ordinary idle, so this is + // the only point at which the two can be told + // apart (A3, docs/remaining-work.md). + let _ = step_tx.send( + crate::step_extract::StepEvent::Error( + anyhow!(crate::error::AntigravityError::Cancelled( + "Cancelled by caller".to_string() + )), + ), + ); + } + + if tsu.state == Some(2) || tsu.state == Some(3) { // STATE_FULLY_IDLE | STATE_CANCELLED + conn_is_idle.store(true, Ordering::SeqCst); + let _ = conn_idle_tx.send(true); tracing::debug!("Connection transitioned to IDLE, sending sentinel"); - let sentinel = Step { - id: "IDLE_SENTINEL".to_string(), - ..Default::default() - }; - let _ = step_tx.send(Ok(sentinel)); + let _ = step_tx.send(crate::step_extract::StepEvent::Idle); } } + crate::proto::localharness::output_event::Event::InitializeConversationResponse(resp) => { + // The harness's first frame since 0.1.4. Reading it + // during the handshake — and seeding the conversation + // with `resp.history` on a resumed session — is WP-6; + // until then a resumed session silently starts empty. + tracing::debug!( + "initialize_conversation_response ({} history steps) — not yet consumed, see WP-6", + resp.history.len() + ); + } + crate::proto::localharness::output_event::Event::CallHookRequest(req) => { + // The harness blocks its turn until a + // CallHookResponse with this request_id comes + // back, so this arm must always answer — even + // when it does not understand the request. + let hook_runner = hook_runner.clone(); + let conn_ws_tx = conn_ws_tx.clone(); + tokio::spawn(async move { + let response = crate::hook_dispatch::answer_hook_request( + hook_runner.as_ref(), + &req, + ) + .await; + let input_event = InputEvent { + event: Some(crate::proto::localharness::input_event::Event::CallHookResponse(response)), + }; + if let Ok(raw_json) = serde_json::to_string(&input_event) { + let _ = conn_ws_tx.send(raw_json); + } + }); + } + crate::proto::localharness::output_event::Event::SessionEndResponse(_) => { + // The harness has flushed the trajectory. Release + // `disconnect()`, which waits for this before tearing + // the process down (B7). + tracing::debug!("session_end_response"); + let _ = conn_session_end.send(true); + } crate::proto::localharness::output_event::Event::ToolCall(tool_call) => { let conn_ws_tx = conn_ws_tx.clone(); let tool_runner = tool_runner.clone(); @@ -1074,12 +1578,13 @@ impl LocalConnectionStrategy { let learned_id_clone = conn_learned_id.clone(); let counter = client_tool_step_counter.clone(); tokio::spawn(async move { - let args: Value = serde_json::from_str(&tool_call.arguments_json.clone().unwrap_or_default()).unwrap_or(Value::Null); + let args: Value = crate::tool_wire::parse_arguments(tool_call.arguments_json.as_deref()); let tc = ToolCall { id: tool_call.id.clone().unwrap_or_default(), name: tool_call.name.clone().unwrap_or_default(), args: args.clone(), canonical_path: None, + server_name: None, }; tracing::debug!("ToolCall event received: id={}, name={}", tc.id, tc.name); @@ -1100,15 +1605,11 @@ impl LocalConnectionStrategy { trajectory_id: traj_id.clone(), ..Default::default() }; - let _ = step_tx_clone.send(Ok(active_step)); + let _ = step_tx_clone.send(crate::step_extract::StepEvent::Step(Box::new(active_step))); - let allow = if let Some(runner) = hook_runner.as_ref() { - let res = runner.dispatch_pre_tool_call(&tc).await.map_or(true, |res| res.allow); - tracing::debug!("Policy decision for tool {}: allow={}", tc.name, res); - res - } else { - true - }; + // Fails closed: a hook that errors denies. + let (allow, deny_reason) = crate::hooks::HookRunner::gate_tool_call(hook_runner.as_ref(), &tc).await; + tracing::debug!("Policy decision for tool {}: allow={}", tc.name, allow); if !allow { // Emit ERROR step for denied tool call @@ -1120,19 +1621,25 @@ impl LocalConnectionStrategy { target: StepTarget::Environment, status: StepStatus::Error, content: tc.name.clone(), - error: "Execution denied by hook policy".to_string(), + error: if deny_reason.is_empty() { + "Execution denied by hook policy".to_string() + } else { + deny_reason.clone() + }, tool_calls: vec![tc.clone()], trajectory_id: traj_id, ..Default::default() }; - let _ = step_tx_clone.send(Ok(denied_step)); - - let resp = ToolResponse { - id: tool_call.id.clone(), - response_json: Some("{\"error\": \"Execution denied by hook policy\"}".to_string()), - supplemental_media: Vec::new(), - response: None, - }; + let _ = step_tx_clone.send(crate::step_extract::StepEvent::Step(Box::new(denied_step))); + + let resp = crate::tool_wire::denied_response( + tool_call.id.clone(), + if deny_reason.is_empty() { + "Execution denied by hook policy" + } else { + &deny_reason + }, + ); let input_event = InputEvent { event: Some(crate::proto::localharness::input_event::Event::ToolResponse(resp)), }; @@ -1147,6 +1654,8 @@ impl LocalConnectionStrategy { name: tc.name.clone(), result: None, error: None, + server_name: None, + exception: None, }; if let Some(ref runner) = tool_runner { @@ -1160,12 +1669,12 @@ impl LocalConnectionStrategy { } if let (Some(err_str), Some(runner)) = (result.error.as_ref(), hook_runner.as_ref()) { - if let Ok((res, val)) = runner.dispatch_on_tool_error(&anyhow!(err_str.clone())).await { - let allow_error = res.allow; - if allow_error { - result.result = val; - result.error = None; - } + // The hook may reword the failure. It may not + // turn it into a success: clearing the error + // reported a tool that had failed to the model + // as having worked (H4). + if let Some(message) = runner.dispatch_on_tool_error(&anyhow!(err_str.clone())).await { + result.error = Some(message); } } else if let Some(runner) = hook_runner.as_ref() { let _ = runner.dispatch_post_tool_call(&result).await; @@ -1191,32 +1700,14 @@ impl LocalConnectionStrategy { name: tc.name.clone(), args: result_args, canonical_path: None, + server_name: None, }], trajectory_id: traj_id, ..Default::default() }; - let _ = step_tx_clone.send(Ok(done_step)); + let _ = step_tx_clone.send(crate::step_extract::StepEvent::Step(Box::new(done_step))); - // The Go harness expects responseJson to always be a JSON object. - // Wrap non-object values (string, number, array, etc.) under "result". - let resp_json = if let Some(ref val) = result.result { - if val.is_object() { - serde_json::to_string(val).unwrap_or_default() - } else { - serde_json::to_string(&serde_json::json!({ "result": val })).unwrap_or_default() - } - } else if let Some(ref err) = result.error { - serde_json::to_string(&serde_json::json!({ "error": err })).unwrap_or_default() - } else { - "{}".to_string() - }; - - let resp = ToolResponse { - id: tool_call.id.clone(), - response_json: Some(resp_json), - supplemental_media: Vec::new(), - response: None, - }; + let resp = crate::tool_wire::tool_response(tool_call.id.clone(), &result); let input_event = InputEvent { event: Some(crate::proto::localharness::input_event::Event::ToolResponse(resp)), }; @@ -1240,11 +1731,36 @@ impl LocalConnectionStrategy { } Ok(_) => {} Err(e) => { - let _ = step_tx.send(Err(anyhow!("WS read error: {e:?}"))); + let _ = step_tx.send(crate::step_extract::StepEvent::Error(anyhow!( + "WS read error: {e:?}" + ))); break; } } } + + // The socket is gone. If the turn had not reached idle, the harness + // died mid-turn: say so, and quote what it printed on its way out. + // Without this the step stream just ends and the caller sees a turn + // that produced nothing, with no indication anything went wrong. + conn_socket_closed.store(true, Ordering::SeqCst); + if !conn_is_idle_for_close.load(Ordering::SeqCst) { + let tail = { + let tail = stderr_tail.lock().await; + tail.iter().cloned().collect::>().join("\n") + }; + let detail = if tail.is_empty() { + "harness exited without writing to stderr".to_string() + } else { + format!("last harness stderr:\n{tail}") + }; + let _ = step_tx.send(crate::step_extract::StepEvent::Error(anyhow!( + "harness connection closed before the turn finished; {detail}" + ))); + conn_is_idle_for_close.store(true, Ordering::SeqCst); + let _ = conn_idle_tx.send(true); + let _ = step_tx.send(crate::step_extract::StepEvent::Idle); + } }); // 10. Hook runners dispatch session start @@ -1262,9 +1778,15 @@ impl LocalConnectionStrategy { ws_tx, tool_runner: self.tool_runner.clone(), hook_runner: self.hook_runner.clone(), - parent_idle, - active_subagent_ids, step_trackers, + main_trajectory_id: conn_cascade_id, + cancel_requested, + steps_consumed: Arc::new(AtomicBool::new(false)), + idle_tx, + session_end_tx, + socket_closed, + subagent_responses, + initial_history, }) } } @@ -1278,7 +1800,13 @@ pub struct StepTracker { impl StepTracker { /// Updates the tracked step status state. - pub const fn update_state(&mut self, state: i32) { + pub fn update_state(&mut self, state: i32) { + // Leaving WAITING_FOR_USER ends the request round. Without this the + // dedup set persists, so a re-asked question is never answered a second + // time and the harness waits forever. STATE_WAITING_FOR_USER = 3. + if self.state == 3 && state != 3 { + self.handled_requests.clear(); + } self.state = state; } @@ -1307,6 +1835,8 @@ fn extract_tool_result(step_update: &crate::proto::localharness::StepUpdate) -> name: tool_call.name, result, error, + server_name: None, + exception: None, }) } diff --git a/src/policy.rs b/src/policy.rs index 57e78f7..de53074 100644 --- a/src/policy.rs +++ b/src/policy.rs @@ -80,6 +80,36 @@ impl Policy { } } +/// Anything that can be flattened into a list of policies. +/// +/// Upstream accepts nested sequences and flattens them in a validator +/// (`connection.py:138-159`), which is why every group builder there composes +/// inline. This crate's group builders return `Vec` while the agent +/// builder took a flat `Vec`, so mixing a group with a scalar meant building +/// the vector by hand. See [`crate::agent::AgentBuilder::policy_groups`]. +pub trait IntoPolicies { + /// Consumes self into a policy list. + fn into_policies(self) -> Vec; +} + +impl IntoPolicies for Policy { + fn into_policies(self) -> Vec { + vec![self] + } +} + +impl IntoPolicies for Vec { + fn into_policies(self) -> Vec { + self + } +} + +impl IntoPolicies for [Policy; N] { + fn into_policies(self) -> Vec { + self.into() + } +} + /// Helper constructor to approve a specific tool invocation unconditionally. pub fn allow(tool: &str) -> Policy { Policy::new( @@ -161,6 +191,21 @@ pub fn confirm_run_command( ) } +/// Creates a safe default policy set: every read-only tool is approved, and +/// anything else asks the user. +/// +/// Mirrors upstream `safe_defaults()` (`policy.py:371-384` at 0.1.1). Note the +/// ordering — the specific APPROVE rules sit in a higher-priority bucket than +/// the trailing wildcard `ASK_USER`, so a read-only tool is never prompted for. +pub fn safe_defaults(handler: impl Fn(&ToolCall) -> bool + Send + Sync + 'static) -> Vec { + let mut policies: Vec = crate::types::BuiltinTools::read_only() + .iter() + .map(|tool| allow(tool.as_str())) + .collect(); + policies.push(ask_user("*", handler)); + policies +} + /// Creates a set of policies restricting file system tools to the given /// workspace directories. /// @@ -376,7 +421,11 @@ fn matches_target(policy_tool: &str, call_target: &str, is_mcp: bool) -> bool { } impl Hook for PolicyEnforcer { - async fn pre_tool_call(&self, tool_call: &ToolCall) -> Result { + async fn pre_tool_call( + &self, + tool_call: &ToolCall, + _context: &crate::context::HookContext, + ) -> Result { // Parse MCP tool name once for all policy evaluations. let (call_target, is_mcp) = match self.parse_mcp_tool(&tool_call.name) { Some((server, tool)) => (format!("{server}/{tool}"), true), @@ -502,6 +551,19 @@ pub fn ask_user_mcp( } /// Internal helper for generating MCP policies. +/// Builds the policy group for an MCP server target. +/// +/// To attach a predicate or a custom name — upstream's `when` and `name` +/// arguments (`policy.py:173,187`) — map over the returned group with +/// [`Policy::when`] / [`Policy::with_name`], which avoids widening three public +/// signatures for options most callers do not pass: +/// +/// ```ignore +/// let policies: Vec = policy::deny_mcp(&server, None) +/// .into_iter() +/// .map(|p| p.with_name("no_writes").when(|tc| tc.name.ends_with("_write"))) +/// .collect(); +/// ``` fn mcp_policies( server_name: &str, decision: Decision, @@ -534,9 +596,16 @@ fn mcp_policies( } } +/// The lowercased decision name used in generated policy names. +/// +/// Mirrors upstream's `decision.value.lower()` (`policy.py:173,187`), whose +/// `Decision.APPROVE` yields `approve` — this crate previously emitted `allow`, +/// so a generated name did not match the one upstream's tests pin. The name +/// reaches tracing and `Debug` output, not user-facing denial messages, which +/// take the policy's `message` instead. const fn decision_label(d: Decision) -> &'static str { match d { - Decision::Approve => "allow", + Decision::Approve => "approve", Decision::Deny => "deny", Decision::AskUser => "ask_user", } @@ -568,6 +637,7 @@ mod tests { name: name.to_string(), args, canonical_path, + server_name: None, } } @@ -644,7 +714,10 @@ mod tests { async fn test_specific_deny_overrides_wildcard_allow() { let enforcer = enforce(vec![allow_all(), deny("dangerous_tool")], None).unwrap(); let res = enforcer - .pre_tool_call(&make_tool_call("dangerous_tool", json!({}))) + .pre_tool_call( + &make_tool_call("dangerous_tool", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(!res.allow); @@ -654,7 +727,10 @@ mod tests { async fn test_specific_deny_overrides_specific_allow() { let enforcer = enforce(vec![allow("run_command"), deny("run_command")], None).unwrap(); let res = enforcer - .pre_tool_call(&make_tool_call("run_command", json!({}))) + .pre_tool_call( + &make_tool_call("run_command", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(!res.allow); @@ -664,7 +740,10 @@ mod tests { async fn test_specific_ask_overrides_wildcard_deny() { let enforcer = enforce(vec![deny_all(), ask_user("run_command", |_| true)], None).unwrap(); let res = enforcer - .pre_tool_call(&make_tool_call("run_command", json!({}))) + .pre_tool_call( + &make_tool_call("run_command", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(res.allow); @@ -675,13 +754,19 @@ mod tests { let enforcer = enforce(vec![deny_all(), allow("read_file")], None).unwrap(); let res = enforcer - .pre_tool_call(&make_tool_call("read_file", json!({}))) + .pre_tool_call( + &make_tool_call("read_file", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(res.allow); let res = enforcer - .pre_tool_call(&make_tool_call("run_command", json!({}))) + .pre_tool_call( + &make_tool_call("run_command", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(!res.allow); @@ -691,7 +776,10 @@ mod tests { async fn test_wildcard_deny_blocks_unmatched_tools() { let enforcer = enforce(vec![deny_all()], None).unwrap(); let res = enforcer - .pre_tool_call(&make_tool_call("anything", json!({}))) + .pre_tool_call( + &make_tool_call("anything", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(!res.allow); @@ -701,7 +789,10 @@ mod tests { async fn test_wildcard_ask_user() { let enforcer = enforce(vec![ask_user("*", |_| false)], None).unwrap(); let res = enforcer - .pre_tool_call(&make_tool_call("any_tool", json!({}))) + .pre_tool_call( + &make_tool_call("any_tool", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(!res.allow); @@ -711,7 +802,10 @@ mod tests { async fn test_wildcard_allow() { let enforcer = enforce(vec![allow_all()], None).unwrap(); let res = enforcer - .pre_tool_call(&make_tool_call("any_tool", json!({}))) + .pre_tool_call( + &make_tool_call("any_tool", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(res.allow); @@ -742,7 +836,10 @@ mod tests { .unwrap(); let res = enforcer - .pre_tool_call(&make_tool_call("run_command", json!({}))) + .pre_tool_call( + &make_tool_call("run_command", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(!res.allow); @@ -770,7 +867,10 @@ mod tests { .unwrap(); let res = enforcer - .pre_tool_call(&make_tool_call("read_file", json!({}))) + .pre_tool_call( + &make_tool_call("read_file", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(res.allow); @@ -789,7 +889,10 @@ mod tests { .unwrap(); let res = enforcer - .pre_tool_call(&make_tool_call("run_command", json!({}))) + .pre_tool_call( + &make_tool_call("run_command", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(!res.allow); @@ -811,7 +914,10 @@ mod tests { .unwrap(); let res = enforcer - .pre_tool_call(&make_tool_call("run_command", json!({}))) + .pre_tool_call( + &make_tool_call("run_command", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(!res.allow); @@ -833,7 +939,10 @@ mod tests { .unwrap(); let res = enforcer - .pre_tool_call(&make_tool_call("run_command", json!({}))) + .pre_tool_call( + &make_tool_call("run_command", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(!res.allow); @@ -845,7 +954,10 @@ mod tests { async fn test_no_matching_policy_allows() { let enforcer = enforce(vec![deny("other_tool")], None).unwrap(); let res = enforcer - .pre_tool_call(&make_tool_call("unrelated_tool", json!({}))) + .pre_tool_call( + &make_tool_call("unrelated_tool", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(res.allow); @@ -855,7 +967,10 @@ mod tests { async fn test_empty_policies_allows_all() { let enforcer = enforce(vec![], None).unwrap(); let res = enforcer - .pre_tool_call(&make_tool_call("any_tool", json!({}))) + .pre_tool_call( + &make_tool_call("any_tool", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(res.allow); @@ -870,11 +985,17 @@ mod tests { "VIEW_FILE", json!({"path": "/allowed/workspace/subdir/file.rs"}), ); - let res1 = enforcer.pre_tool_call(&tc1).await.unwrap(); + let res1 = enforcer + .pre_tool_call(&tc1, &crate::context::HookContext::new()) + .await + .unwrap(); assert!(res1.allow); let tc2 = make_tool_call("VIEW_FILE", json!({"path": "/forbidden/path/file.rs"})); - let res2 = enforcer.pre_tool_call(&tc2).await.unwrap(); + let res2 = enforcer + .pre_tool_call(&tc2, &crate::context::HookContext::new()) + .await + .unwrap(); assert!(!res2.allow); } @@ -893,7 +1014,10 @@ mod tests { "/allowed/workspace/sub/../../../etc/shadow", ] { let tc = make_tool_call("VIEW_FILE", json!({ "path": escape })); - let res = enforcer.pre_tool_call(&tc).await.unwrap(); + let res = enforcer + .pre_tool_call(&tc, &crate::context::HookContext::new()) + .await + .unwrap(); assert!(!res.allow, "escape should be denied: {escape}"); } @@ -902,7 +1026,10 @@ mod tests { "VIEW_FILE", json!({"path": "/allowed/workspace/sub/../file.rs"}), ); - let res = enforcer.pre_tool_call(&inside).await.unwrap(); + let res = enforcer + .pre_tool_call(&inside, &crate::context::HookContext::new()) + .await + .unwrap(); assert!(res.allow); } @@ -913,7 +1040,13 @@ mod tests { async fn test_workspace_only_with_no_roots_denies() { let enforcer = enforce(workspace_only(vec![]), None).unwrap(); let tc = make_tool_call("VIEW_FILE", json!({"path": "/anywhere/file.rs"})); - assert!(!enforcer.pre_tool_call(&tc).await.unwrap().allow); + assert!( + !enforcer + .pre_tool_call(&tc, &crate::context::HookContext::new()) + .await + .unwrap() + .allow + ); } #[tokio::test] @@ -924,6 +1057,8 @@ mod tests { args: vec![], enabled_tools: None, disabled_tools: None, + env: std::collections::HashMap::new(), + timeout_seconds: None, }; let mut policies = deny_mcp(&server, None); // "math/*" deny policies.push(allow_all()); @@ -931,14 +1066,20 @@ mod tests { // MCP tool "mcp_math_add" should be denied by "math/*" prefix let res = enforcer - .pre_tool_call(&make_tool_call("mcp_math_add", json!({}))) + .pre_tool_call( + &make_tool_call("mcp_math_add", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(!res.allow); // Non-MCP tool "read_file" should be allowed by wildcard let res = enforcer - .pre_tool_call(&make_tool_call("read_file", json!({}))) + .pre_tool_call( + &make_tool_call("read_file", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(res.allow); @@ -952,6 +1093,8 @@ mod tests { args: vec![], enabled_tools: None, disabled_tools: None, + env: std::collections::HashMap::new(), + timeout_seconds: None, }; let mut policies = deny_mcp(&server, None); // "calc/*" deny (level 3) policies.extend(allow_mcp(&server, Some(&["add"]))); // "calc/add" allow (level 2) @@ -959,14 +1102,20 @@ mod tests { // "add" should be allowed (specific > prefix) let res = enforcer - .pre_tool_call(&make_tool_call("mcp_calc_add", json!({}))) + .pre_tool_call( + &make_tool_call("mcp_calc_add", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(res.allow); // "subtract" should be denied (prefix deny applies) let res = enforcer - .pre_tool_call(&make_tool_call("mcp_calc_subtract", json!({}))) + .pre_tool_call( + &make_tool_call("mcp_calc_subtract", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(!res.allow); @@ -996,6 +1145,8 @@ mod tests { args: vec![], enabled_tools: None, disabled_tools: None, + env: std::collections::HashMap::new(), + timeout_seconds: None, }; let s2 = McpServerConfig::Stdio { name: "math_advanced".to_string(), @@ -1003,6 +1154,8 @@ mod tests { args: vec![], enabled_tools: None, disabled_tools: None, + env: std::collections::HashMap::new(), + timeout_seconds: None, }; let mut policies = deny_mcp(&s2, Some(&["calc"])); // "math_advanced/calc" deny @@ -1011,14 +1164,20 @@ mod tests { // "mcp_math_advanced_calc" should be parsed as server="math_advanced", tool="calc" let res = enforcer - .pre_tool_call(&make_tool_call("mcp_math_advanced_calc", json!({}))) + .pre_tool_call( + &make_tool_call("mcp_math_advanced_calc", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(!res.allow); // "mcp_math_add" should parse as server="math", tool="add" → allowed by wildcard let res = enforcer - .pre_tool_call(&make_tool_call("mcp_math_add", json!({}))) + .pre_tool_call( + &make_tool_call("mcp_math_add", json!({})), + &crate::context::HookContext::new(), + ) .await .unwrap(); assert!(res.allow); diff --git a/src/state.rs b/src/state.rs new file mode 100644 index 0000000..f8682cb --- /dev/null +++ b/src/state.rs @@ -0,0 +1,175 @@ +//! The session-scoped key-value store shared by hook and tool contexts. +//! +//! `HookContext` and `ToolContext` each carried their own `Mutex>` +//! and their own copy of the read-modify-write logic. The two drifted — only +//! one of them had an atomic `update_state` — and neither could be tested +//! without constructing the context that owned it. +//! +//! The store lives here so there is one implementation. Hook state and tool +//! state remain **separate stores**, deliberately: upstream keeps them apart so +//! a hook cannot silently depend on a tool's bookkeeping. Sharing the type is +//! not sharing the data. + +use serde::{Serialize, de::DeserializeOwned}; +use serde_json::Value; +use std::collections::HashMap; +use std::sync::{Arc, Mutex}; + +/// A cloneable handle to one session-scoped store. +/// +/// Cloning shares the underlying map, so a store handed to two callers is one +/// store. +#[derive(Debug, Clone, Default)] +pub struct StateStore { + entries: Arc>>, +} + +impl StateStore { + /// Creates an empty store. + #[must_use] + pub fn new() -> Self { + Self::default() + } + + /// Retrieves a value by key. + /// + /// `None` if the key is unset, or if the stored value does not deserialize + /// into `T`. + pub fn get(&self, key: &str) -> Option { + self.entries + .lock() + .ok() + .and_then(|entries| entries.get(key).cloned()) + .and_then(|value| serde_json::from_value(value).ok()) + } + + /// Stores a value by key. + /// + /// A value that cannot be serialized is dropped rather than panicking: + /// bookkeeping must not take down the turn. + pub fn set(&self, key: &str, value: T) { + if let Ok(mut entries) = self.entries.lock() + && let Ok(value) = serde_json::to_value(value) + { + entries.insert(key.to_string(), value); + } + } + + /// Atomically reads, transforms and writes an entry. + /// + /// `get` followed by `set` releases the lock in between, so two callers can + /// both read the old value and one write is lost. This holds the lock + /// across the transform, which is the only safe way to do read-modify-write + /// on shared state. Mirrors upstream's `update_state` (`utils/state.py`, + /// added 0.1.7). + /// + /// The closure receives the current value, or `None` when the key is unset. + /// Returning `None` leaves the entry untouched. + pub fn update(&self, key: &str, transform: F) + where + T: Serialize + DeserializeOwned, + F: FnOnce(Option) -> Option, + { + let Ok(mut entries) = self.entries.lock() else { + return; + }; + let current = entries + .get(key) + .cloned() + .and_then(|value| serde_json::from_value(value).ok()); + if let Some(next) = transform(current) + && let Ok(value) = serde_json::to_value(next) + { + entries.insert(key.to_string(), value); + } + } + + /// Removes an entry, returning whether it was there. + pub fn remove(&self, key: &str) -> bool { + self.entries + .lock() + .is_ok_and(|mut entries| entries.remove(key).is_some()) + } + + /// Empties the store. + pub fn clear(&self) { + if let Ok(mut entries) = self.entries.lock() { + entries.clear(); + } + } + + /// How many entries are stored. + pub fn len(&self) -> usize { + self.entries.lock().map_or(0, |entries| entries.len()) + } + + /// Whether the store is empty. + pub fn is_empty(&self) -> bool { + self.len() == 0 + } +} + +#[cfg(test)] +mod tests { + #![allow(clippy::unwrap_used)] + use super::StateStore; + + #[test] + fn set_get_and_overwrite() { + let store = StateStore::new(); + assert!(store.is_empty()); + store.set("key", "value"); + assert_eq!(store.get::("key").as_deref(), Some("value")); + store.set("key", 2i32); + assert_eq!(store.get::("key"), Some(2)); + assert_eq!(store.len(), 1); + } + + #[test] + fn a_mistyped_read_is_none_not_a_panic() { + let store = StateStore::new(); + store.set("key", "not a number"); + assert_eq!(store.get::("key"), None); + } + + /// The point of `update`: a read-modify-write that cannot interleave. A + /// `get` + `set` pair releases the lock in between, so a concurrent + /// increment is lost and this would come out under 800. + #[test] + fn update_is_atomic_across_threads() { + let store = StateStore::new(); + let mut handles = Vec::new(); + for _ in 0..8 { + let store = store.clone(); + handles.push(std::thread::spawn(move || { + for _ in 0..100 { + store.update::("n", |current| Some(current.unwrap_or(0) + 1)); + } + })); + } + for handle in handles { + handle.join().ok(); + } + assert_eq!(store.get::("n"), Some(800)); + } + + #[test] + fn update_returning_none_leaves_the_entry() { + let store = StateStore::new(); + store.update::("k", |_| Some(7)); + store.update::("k", |_| None); + assert_eq!(store.get::("k"), Some(7)); + } + + /// A clone is the same store, which is what makes it shareable between a + /// context and whatever created it. + #[test] + fn a_clone_shares_the_entries() { + let store = StateStore::new(); + let other = store.clone(); + other.set("k", 1i32); + assert_eq!(store.get::("k"), Some(1)); + assert!(store.remove("k")); + assert!(other.is_empty()); + } +} diff --git a/src/step_extract.rs b/src/step_extract.rs index 61ce61c..02f954c 100644 --- a/src/step_extract.rs +++ b/src/step_extract.rs @@ -5,6 +5,25 @@ //! `RUN_COMMAND`'s `combined_output`/`exit_code` — so it lives here instead, //! where a wire fix lands once. +/// What the reader task puts on the step channel. +/// +/// Upstream signals idle with a sentinel object on the same queue +/// (`event_processor.IDLE_SENTINEL`). This crate previously used a `Step` whose +/// `id` was the literal `"IDLE_SENTINEL"`, which meant a harness step carrying +/// that id would have been silently swallowed. Making the marker a variant +/// removes the collision by construction. +#[derive(Debug)] +pub enum StepEvent { + /// A real step. Boxed: `Step` is large and would otherwise set the size of + /// every value on the channel. + Step(Box), + /// A failure to surface to the caller. + Error(anyhow::Error), + /// The trajectory reached idle. Not an end-of-stream signal on its own — + /// steps may already be queued behind it. + Idle, +} + use crate::proto::localharness::StepUpdate; use crate::types::ToolCall; @@ -36,13 +55,14 @@ pub fn extract_builtin_tool_call(step_update: &StepUpdate) -> Option { } else if let Some(ref run) = step_update.run_command { ( "RUN_COMMAND", + // Only what the model asked for. `combined_output` and `exit_code` + // are *results*: a `pre_tool_call` predicate reading them would see + // them absent, because the command has not run yet, and a rule + // built on that reads as "always allow". The completed results + // reach `post_tool_call` through `tool_output::structured_result`. serde_json::json!({ - "command_line": run.command_line, - "working_dir": run.working_dir, - // Include the execution result fields so the frontend - // can display stdout/stderr instead of "(no output)". - "combined_output": run.combined_output, - "exit_code": run.exit_code, + "command_line": run.command_line, + "working_dir": run.working_dir, }), ) } else if let Some(ref view) = step_update.view_file { @@ -65,22 +85,23 @@ pub fn extract_builtin_tool_call(step_update: &StepUpdate) -> Option { } else if let Some(ref edit) = step_update.edit_file { ( "EDIT_FILE", + // diff_block is the edit itself. Dropping it meant a policy + // predicate on EDIT_FILE could see which file was being changed but + // not what the change was — so a rule like "deny edits that remove + // a licence header" could not be written at all. serde_json::json!({ "file_path": edit.file_path, + "diff_block": edit.diff_block, }), ) } else if let Some(ref search) = step_update.search_directory { - // The harness puts grep/search results into `step_update.text`. - // Pack them into `args.output` so the frontend can display them, - // mirroring how RUN_COMMAND packs `combined_output`. + // `output` and `num_results` are results, not arguments — same reason + // as RUN_COMMAND above. They arrive on the `ToolResult` instead. ( "SEARCH_DIR", serde_json::json!({ "directory_path": search.directory_path, "query": search.query, - "num_results": search.num_results, - // Actual grep results from the harness - "output": step_update.text, }), ) } else if let Some(ref list) = step_update.list_directory { @@ -90,6 +111,33 @@ pub fn extract_builtin_tool_call(step_update: &StepUpdate) -> Option { "directory_path": list.directory_path, }), ) + } else if let Some(ref search) = step_update.search_web { + ( + "SEARCH_WEB", + serde_json::json!({ + "query": search.query, + "domain": search.domain, + }), + ) + } else if let Some(ref read) = step_update.read_url_content { + ( + "READ_URL_CONTENT", + serde_json::json!({ + "url": read.url, + }), + ) + } else if let Some(ref finish) = step_update.finish { + // FINISH is a built-in like any other upstream + // (`_BUILTIN_TOOL_PROTO_FIELDS`), and leaving it out meant the one call + // that ends a turn and emits structured output was never seen by a + // policy or a hook. `BuiltinTools::read_only()` already includes it, so + // the default policy sets allow it. + ( + "FINISH", + serde_json::json!({ + "output_string": finish.output_string, + }), + ) } else { // Last arm: a step carrying none of these actions is not a tool call. let img_gen = step_update.generate_image.as_ref()?; @@ -111,5 +159,145 @@ pub fn extract_builtin_tool_call(step_update: &StepUpdate) -> Option { name: name.to_string(), args, canonical_path, + server_name: None, + }) +} + +/// Maps a replayed `StepUpdate` onto a [`Step`]. +/// +/// Used for the history the harness returns in its handshake reply. This is a +/// narrower mapping than the live reader performs: replayed steps carry no +/// deltas, no in-flight tool state and no usage rollup, so only the fields that +/// survive a round trip are populated. +pub fn step_from_update(step_update: &StepUpdate) -> Option { + use crate::types::{Step, StepSource, StepStatus, StepTarget, StepType}; + + let trajectory_id = step_update.trajectory_id.clone().unwrap_or_default(); + let step_index = step_update.step_index.unwrap_or(0); + + // A finished model step addressed to the user is a complete response. It is + // what `Conversation::last_response()` looks for, so without this a resumed + // session reports no last response even with its full history replayed. + let is_complete_response = step_update.state == Some(2) + && step_update.source == Some(3) + && step_update.target == Some(1); + + Some(Step { + is_complete_response: Some(is_complete_response), + id: format!("{trajectory_id}_{step_index}"), + step_index, + r#type: if step_update.finish.is_some() { + StepType::Finish + } else { + StepType::TextResponse + }, + source: match step_update.source { + Some(1) => StepSource::System, + Some(2) => StepSource::User, + Some(3) => StepSource::Model, + _ => StepSource::Unknown, + }, + target: match step_update.target { + Some(1) => StepTarget::User, + _ => StepTarget::Unknown, + }, + status: match step_update.state { + Some(1) => StepStatus::Active, + Some(2) => StepStatus::Done, + Some(3) => StepStatus::WaitingForUser, + Some(4) => StepStatus::TerminalError, + _ => StepStatus::Unknown, + }, + content: step_update.text.clone().unwrap_or_default(), + thinking: step_update.thinking.clone().unwrap_or_default(), + error: step_update.error_message.clone().unwrap_or_default(), + cascade_id: step_update.cascade_id.clone().unwrap_or_default(), + trajectory_id, + ..Default::default() }) } + +/// Releases a connection's single-consumer claim on the step stream when the +/// stream is dropped. +/// +/// `receive_steps()` is called once per turn, so the claim cannot simply be +/// permanent — it has to be handed back when the caller stops reading. +#[derive(Debug)] +pub struct ConsumerGuard(std::sync::Arc); + +impl ConsumerGuard { + /// Claims the stream, or returns `None` if another consumer holds it. + pub fn claim(flag: &std::sync::Arc) -> Option { + if flag.swap(true, std::sync::atomic::Ordering::SeqCst) { + None + } else { + Some(Self(flag.clone())) + } + } +} + +impl Drop for ConsumerGuard { + fn drop(&mut self) { + self.0.store(false, std::sync::atomic::Ordering::SeqCst); + } +} + +#[cfg(test)] +mod consumer_guard_tests { + #![allow(clippy::unwrap_used)] + use super::ConsumerGuard; + use std::sync::Arc; + use std::sync::atomic::AtomicBool; + + #[test] + fn a_second_claim_is_refused_while_the_first_is_alive() { + let flag = Arc::new(AtomicBool::new(false)); + let first = ConsumerGuard::claim(&flag); + assert!(first.is_some()); + assert!(ConsumerGuard::claim(&flag).is_none()); + drop(first); + // Released on drop — this is what lets `receive_steps()` be called once + // per turn rather than once per connection. + assert!(ConsumerGuard::claim(&flag).is_some()); + } +} + +#[cfg(test)] +mod extractor_tests { + #![allow(clippy::unwrap_used, clippy::expect_used)] + use super::extract_builtin_tool_call; + use crate::proto::localharness::{ActionFinish, StepUpdate}; + + /// FINISH is the call that ends a turn and emits structured output. It was + /// the one built-in no policy or hook could see. + #[test] + fn finish_is_a_tool_call() { + let update = StepUpdate { + trajectory_id: Some("t".to_string()), + step_index: Some(3), + finish: Some(ActionFinish { + output_string: Some("{\"answer\":42}".to_string()), + }), + ..Default::default() + }; + let tc = extract_builtin_tool_call(&update).expect("FINISH should classify as a tool call"); + assert_eq!(tc.name, "FINISH"); + assert_eq!( + tc.args.get("output_string").and_then(|v| v.as_str()), + Some("{\"answer\":42}") + ); + // Nothing path-shaped, so nothing to scope. + assert!(tc.canonical_path.is_none()); + } + + #[test] + fn a_step_with_no_action_is_not_a_tool_call() { + let update = StepUpdate { + trajectory_id: Some("t".to_string()), + step_index: Some(1), + text: Some("just talking".to_string()), + ..Default::default() + }; + assert!(extract_builtin_tool_call(&update).is_none()); + } +} diff --git a/src/tool_context.rs b/src/tool_context.rs index 78f5bd1..d7a7a4d 100644 --- a/src/tool_context.rs +++ b/src/tool_context.rs @@ -4,13 +4,11 @@ //! and the ability to send messages to the agent. State is scoped to the //! session and is independent of `HookContext`. -use crate::connection::AnyConnection; use crate::connection::Connection; +use crate::connection::WeakConnection; +use crate::state::StateStore; use anyhow::Result; use serde::{Serialize, de::DeserializeOwned}; -use serde_json::Value; -use std::collections::HashMap; -use std::sync::Mutex; /// Session-scoped context injected into tools that need conversation awareness. /// @@ -24,89 +22,140 @@ use std::sync::Mutex; /// This separation is intentional (see hooks/README.md in the Python SDK). #[derive(Debug)] pub struct ToolContext { - connection: AnyConnection, - state: Mutex>, + connection: WeakConnection, + state: StateStore, } impl ToolContext { - /// Creates a new `ToolContext` wrapping the given connection. - pub fn new(connection: AnyConnection) -> Self { + /// Creates a new `ToolContext` holding a non-owning handle to the session. + /// + /// Weak by construction: the connection owns the tool runner, and a strong + /// handle back would keep the session alive forever. + pub fn new(connection: WeakConnection) -> Self { Self { connection, - state: Mutex::new(HashMap::new()), + state: StateStore::new(), } } - /// Returns the conversation ID for the current session. - pub fn conversation_id(&self) -> &str { - self.connection.conversation_id() + /// The session store backing this context. + /// + /// Cloning it shares the entries, so a caller can read what a tool wrote. + #[must_use] + pub fn state(&self) -> StateStore { + self.state.clone() } - /// Returns whether the agent is currently idle (not processing). - pub fn is_idle(&self) -> bool { - self.connection.is_idle() + /// Returns the conversation ID, or `None` once the session has ended. + pub fn conversation_id(&self) -> Option { + self.connection + .upgrade() + .map(|c| c.conversation_id().to_string()) + } + + /// Returns whether the agent is currently idle, or `None` once the session + /// has ended. + pub fn is_idle(&self) -> Option { + self.connection.upgrade().map(|c| c.is_idle()) } /// Sends a trigger notification message to the agent. + /// + /// # Errors + /// + /// Returns an error if the session has ended or the message cannot be sent. pub async fn send(&self, message: &str) -> Result<()> { - self.connection.send_trigger_notification(message).await + let connection = self + .connection + .upgrade() + .ok_or_else(|| anyhow::anyhow!("the session has ended"))?; + connection.send_trigger_notification(message).await } /// Retrieves a previously stored value by key. /// Returns `None` if the key doesn't exist or deserialization fails. pub fn get_state(&self, key: &str) -> Option { - self.state - .lock() - .ok() - .and_then(|store| store.get(key).cloned()) - .and_then(|v| serde_json::from_value(v).ok()) + self.state.get(key) } /// Stores a value by key in the session-scoped state store. - #[allow(clippy::collapsible_if)] pub fn set_state(&self, key: &str, value: T) { - if let Ok(mut store) = self.state.lock() { - if let Ok(v) = serde_json::to_value(value) { - store.insert(key.to_string(), v); - } - } + self.state.set(key, value); + } + + /// Atomically reads, transforms and writes a state entry. + /// + /// `get_state` followed by `set_state` releases the lock in between, so two + /// tools running concurrently can both read the old value and one write is + /// lost. This holds the lock across the transform, which is the only safe + /// way to do read-modify-write on shared state. Mirrors upstream's + /// `update_state` (`utils/state.py`, added 0.1.7). + /// + /// The closure receives the current value, or `None` when the key is unset. + /// Returning `None` leaves the entry untouched. + /// + /// ``` + /// # use antigravity_sdk_rust::tool_context::ToolContext; + /// # fn demo(ctx: &ToolContext) { + /// ctx.update_state::("calls", |current| Some(current.unwrap_or(0) + 1)); + /// # } + /// ``` + pub fn update_state(&self, key: &str, transform: F) + where + T: Serialize + DeserializeOwned, + F: FnOnce(Option) -> Option, + { + self.state.update(key, transform); } } #[cfg(test)] mod tests { - #![allow( - clippy::unwrap_used, - clippy::expect_used, - clippy::panic, - clippy::significant_drop_tightening - )] - use super::*; - - // ToolContext tests require a mock connection which is only available - // via the full test harness. Unit tests here validate the state store. + #![allow(clippy::unwrap_used, clippy::expect_used)] + use super::ToolContext; + use crate::connection::{AnyConnection, MockConnection}; + use std::sync::Arc; + + fn context() -> (Arc, AnyConnection, ToolContext) { + let mock = Arc::new(MockConnection::new("conv-1")); + let any = AnyConnection::Mock(mock.clone()); + let context = ToolContext::new(any.downgrade()); + (mock, any, context) + } + #[test] - fn test_state_set_and_get() { - let state: Mutex> = Mutex::new(HashMap::new()); - state - .lock() - .unwrap() - .insert("key".to_string(), serde_json::to_value("value").unwrap()); - let val: String = - serde_json::from_value(state.lock().unwrap().get("key").cloned().unwrap()).unwrap(); - assert_eq!(val, "value"); + fn state_round_trips_through_the_shared_store() { + let (_mock, _any, context) = context(); + context.set_state("key", "value"); + assert_eq!(context.get_state::("key").as_deref(), Some("value")); + context.update_state::("calls", |c| Some(c.unwrap_or(0) + 1)); + context.update_state::("calls", |c| Some(c.unwrap_or(0) + 1)); + assert_eq!(context.get_state::("calls"), Some(2)); + // The handle sees the same entries. + assert_eq!(context.state().get::("calls"), Some(2)); } #[test] - fn test_state_overwrite() { - let state: Mutex> = Mutex::new(HashMap::new()); - { - let mut store = state.lock().unwrap(); - store.insert("key".to_string(), serde_json::to_value(1i32).unwrap()); - store.insert("key".to_string(), serde_json::to_value(2i32).unwrap()); - } - let val: i32 = - serde_json::from_value(state.lock().unwrap().get("key").cloned().unwrap()).unwrap(); - assert_eq!(val, 2); + fn conversation_id_and_idle_track_the_connection() { + let (mock, any, context) = context(); + assert_eq!(context.conversation_id().as_deref(), Some("conv-1")); + assert_eq!(context.is_idle(), Some(true)); + + // Once the session is gone the context reports nothing rather than + // keeping it alive. + drop(any); + drop(mock); + assert_eq!(context.conversation_id(), None); + assert_eq!(context.is_idle(), None); + } + + #[tokio::test] + async fn send_errors_once_the_session_has_ended() { + let (mock, any, context) = context(); + context.send("wake up").await.expect("live session"); + drop(any); + drop(mock); + let err = context.send("wake up").await.expect_err("session is gone"); + assert!(err.to_string().contains("session has ended"), "{err}"); } } diff --git a/src/tool_output.rs b/src/tool_output.rs new file mode 100644 index 0000000..67d0d31 --- /dev/null +++ b/src/tool_output.rs @@ -0,0 +1,167 @@ +//! Structured results for harness-executed built-ins. +//! +//! A `post_tool_call` hook used to receive whatever display text the harness +//! happened to put on the step — so a hook that wanted a command's exit code +//! had to parse prose, and one that wanted the list of files a search matched +//! could not get it at all. +//! +//! Upstream models these per tool (`connections/local/types.py`). This builds +//! the same shapes as JSON, since [`ToolResult::result`] is a +//! `serde_json::Value`: a typed struct per tool would force every hook to match +//! on an enum to reach one field. + +use crate::proto::localharness::StepUpdate; +use serde_json::{Value, json}; + +/// The structured result for a finished built-in step, if it has one. +/// +/// `None` when the step is not a recognised built-in, in which case the caller +/// should fall back to the step's display text. +#[must_use] +pub fn structured_result(step_update: &StepUpdate) -> Option { + let text = || step_update.text.clone().unwrap_or_default(); + + if let Some(ref run) = step_update.run_command { + // The two fields a hook actually wants — "did it work, and what did it + // print" — instead of one blob of display text. + return Some(json!({ + "command_line": run.command_line, + "working_dir": run.working_dir, + "combined_output": run.combined_output, + "exit_code": run.exit_code, + })); + } + if let Some(ref search) = step_update.search_directory { + return Some(json!({ + "directory_path": search.directory_path, + "query": search.query, + "num_results": search.num_results, + "output": text(), + })); + } + if let Some(ref list) = step_update.list_directory { + return Some(json!({ + "directory_path": list.directory_path, + "output": text(), + })); + } + if let Some(ref find) = step_update.find_file { + return Some(json!({ + "directory_path": find.directory_path, + "query": find.query, + "output": text(), + })); + } + if let Some(ref view) = step_update.view_file { + return Some(json!({ + "file_path": view.file_path, + "start_line": view.start_line, + "end_line": view.end_line, + "contents": text(), + })); + } + if let Some(ref create) = step_update.create_file { + return Some(json!({ "file_path": create.file_path })); + } + if let Some(ref edit) = step_update.edit_file { + return Some(json!({ + "file_path": edit.file_path, + "diff_block": edit.diff_block, + })); + } + if let Some(ref search) = step_update.search_web { + return Some(json!({ + "query": search.query, + "domain": search.domain, + "summary": search.summary, + })); + } + if let Some(ref read) = step_update.read_url_content { + return Some(json!({ + "url": read.url, + "title": read.title, + "summary": read.summary, + "content_path": read.content_path, + })); + } + if let Some(ref image) = step_update.generate_image { + return Some(json!({ + "prompt": image.prompt, + "image_paths": image.image_paths, + "image_name": image.image_name, + })); + } + if let Some(ref finish) = step_update.finish { + return Some(json!({ "output_string": finish.output_string })); + } + None +} + +#[cfg(test)] +mod tests { + #![allow(clippy::unwrap_used)] + use super::structured_result; + use crate::proto::localharness::{ + ActionListDirectory, ActionReadUrlContent, ActionRunCommand, StepUpdate, + }; + + #[test] + fn a_command_reports_its_exit_code_not_prose() { + let update = StepUpdate { + run_command: Some(ActionRunCommand { + command_line: Some("ls -l".to_string()), + working_dir: Some("/srv".to_string()), + combined_output: Some("total 0".to_string()), + exit_code: Some(0), + }), + text: Some("ran a command".to_string()), + ..Default::default() + }; + let result = structured_result(&update).unwrap(); + assert_eq!(result["exit_code"], 0); + assert_eq!(result["combined_output"], "total 0"); + assert_eq!(result["command_line"], "ls -l"); + } + + /// Tools whose payload the harness only puts in the display text still get + /// it, under a named key rather than as the whole result. + #[test] + fn display_text_becomes_a_named_field() { + let update = StepUpdate { + list_directory: Some(ActionListDirectory { + directory_path: Some("/srv".to_string()), + ..Default::default() + }), + text: Some("a\nb\nc".to_string()), + ..Default::default() + }; + let result = structured_result(&update).unwrap(); + assert_eq!(result["directory_path"], "/srv"); + assert_eq!(result["output"], "a\nb\nc"); + } + + #[test] + fn a_fetched_url_carries_where_its_content_landed() { + let update = StepUpdate { + read_url_content: Some(ActionReadUrlContent { + url: Some("https://example.test".to_string()), + title: Some("Example".to_string()), + summary: Some("a page".to_string()), + content_path: Some("/tmp/page.md".to_string()), + }), + ..Default::default() + }; + let result = structured_result(&update).unwrap(); + assert_eq!(result["content_path"], "/tmp/page.md"); + assert_eq!(result["title"], "Example"); + } + + #[test] + fn a_step_with_no_action_has_no_structured_result() { + let update = StepUpdate { + text: Some("just talking".to_string()), + ..Default::default() + }; + assert!(structured_result(&update).is_none()); + } +} diff --git a/src/tool_wire.rs b/src/tool_wire.rs new file mode 100644 index 0000000..5a54d05 --- /dev/null +++ b/src/tool_wire.rs @@ -0,0 +1,142 @@ +//! The one place a `ToolResponse` is built. +//! +//! Both transports constructed this frame in three places each, and the six +//! had already drifted: some wrapped a non-object result, some did not, and +//! none of them ever set `error_message`, so a tool failure reached the harness +//! looking like a successful call whose payload happened to contain the word +//! "error". + +use crate::proto::localharness::{InputEvent, ToolResponse}; +use crate::types::ToolResult; +use serde_json::Value; + +/// Builds the `ToolResponse` frame for a finished tool call. +/// +/// - A successful result is sent as a JSON **object**; a bare string, number or +/// array is wrapped under `"result"`, because the harness rejects anything +/// else. +/// - A failure sets `error_message` as well as the payload. The harness uses +/// that field to mark the call failed; without it a failed tool was recorded +/// as a success whose output mentioned an error. +#[must_use] +pub fn tool_response(id: Option, result: &ToolResult) -> ToolResponse { + let (response_json, error_message) = match (&result.error, &result.result) { + (Some(error), _) => ( + serde_json::json!({ "error": error }).to_string(), + Some(error.clone()), + ), + (None, Some(value)) if value.is_object() => ( + serde_json::to_string(value).unwrap_or_else(|_| "{}".to_string()), + None, + ), + (None, Some(value)) => (serde_json::json!({ "result": value }).to_string(), None), + (None, None) => ("{}".to_string(), None), + }; + + ToolResponse { + id, + response_json: Some(response_json), + error_message, + supplemental_media: Vec::new(), + } +} + +/// The same frame, wrapped and serialized ready for the socket. +#[must_use] +pub fn tool_response_frame(id: Option, result: &ToolResult) -> Option { + let event = InputEvent { + event: Some( + crate::proto::localharness::input_event::Event::ToolResponse(tool_response(id, result)), + ), + }; + serde_json::to_string(&event).ok() +} + +/// The response for a call that was refused before it ran. +#[must_use] +pub fn denied_response(id: Option, reason: &str) -> ToolResponse { + tool_response( + id, + &ToolResult { + error: Some(reason.to_string()), + ..Default::default() + }, + ) +} + +/// Parses the arguments the model supplied. +/// +/// Absent or empty is an empty object, not null: upstream does +/// `json.loads(arguments_json or "{}")`, and a tool reading `args["x"]` got a +/// type error rather than a missing key. +#[must_use] +pub fn parse_arguments(arguments_json: Option<&str>) -> Value { + let raw = arguments_json.unwrap_or("").trim(); + if raw.is_empty() { + return Value::Object(serde_json::Map::new()); + } + serde_json::from_str(raw).unwrap_or(Value::Null) +} + +#[cfg(test)] +mod tests { + #![allow(clippy::unwrap_used)] + use super::{denied_response, parse_arguments, tool_response}; + use crate::types::ToolResult; + + fn ok_result(value: serde_json::Value) -> ToolResult { + ToolResult { + name: "lookup".to_string(), + result: Some(value), + ..Default::default() + } + } + + #[test] + fn a_failure_sets_error_message() { + let failed = ToolResult { + name: "lookup".to_string(), + error: Some("row not found".to_string()), + ..Default::default() + }; + let response = tool_response(Some("1".to_string()), &failed); + assert_eq!(response.error_message.as_deref(), Some("row not found")); + assert!(response.response_json.unwrap().contains("row not found")); + } + + #[test] + fn a_bare_value_is_wrapped_in_an_object() { + let response = tool_response(None, &ok_result(serde_json::json!(42))); + assert_eq!(response.response_json.as_deref(), Some(r#"{"result":42}"#)); + assert!(response.error_message.is_none()); + } + + #[test] + fn an_object_result_is_sent_as_is() { + let response = tool_response(None, &ok_result(serde_json::json!({"rows": 3}))); + assert_eq!(response.response_json.as_deref(), Some(r#"{"rows":3}"#)); + } + + #[test] + fn an_empty_result_is_an_empty_object() { + let response = tool_response(None, &ToolResult::default()); + assert_eq!(response.response_json.as_deref(), Some("{}")); + } + + #[test] + fn a_denial_reads_as_a_failure() { + let response = denied_response(Some("7".to_string()), "denied by policy"); + assert_eq!(response.error_message.as_deref(), Some("denied by policy")); + } + + #[test] + fn absent_arguments_parse_to_an_empty_object() { + assert_eq!(parse_arguments(None), serde_json::json!({})); + assert_eq!(parse_arguments(Some("")), serde_json::json!({})); + assert_eq!(parse_arguments(Some(" ")), serde_json::json!({})); + assert_eq!( + parse_arguments(Some(r#"{"a":1}"#)), + serde_json::json!({"a":1}) + ); + } +} diff --git a/src/tools.rs b/src/tools.rs index 99bcc3f..ac6e01d 100644 --- a/src/tools.rs +++ b/src/tools.rs @@ -7,7 +7,6 @@ use crate::tool_context::ToolContext; use futures_util::future::BoxFuture; use serde_json::Value; -use std::collections::HashMap; use std::sync::Arc; /// A trait defining custom tool behaviors that can be invoked by the model. @@ -110,15 +109,26 @@ impl DynTool for T { /// Registry and concurrent runner for custom tool implementations. #[derive(Clone, Default)] pub struct ToolRunner { - /// Active tools registered with the runner. - pub tools: Arc>>>, + /// The session context handed to tools that ask for one. + /// + /// Set once by `Agent::start`, after the connection exists. Nothing set it + /// before, so `needs_context()` tools silently ran through the plain + /// `call()` path and context-aware tools did not work at all (audit T1). + context: Arc>>>, + /// Active tools, in registration order. + /// + /// A `HashMap` before, which meant the tool list sent to the harness came + /// out in a different order on every run — the model's tool list is part of + /// its prompt, so that was gratuitous nondeterminism. Insertion order also + /// matches upstream, whose registry is a Python dict. + pub tools: Arc>>>, } impl std::fmt::Debug for ToolRunner { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { f.debug_struct("ToolRunner") .field("tools_count", &self.tools.try_read().map_or(0, |t| t.len())) - .finish() + .finish_non_exhaustive() } } @@ -126,54 +136,329 @@ impl ToolRunner { /// Creates a new, empty `ToolRunner`. pub fn new() -> Self { Self { - tools: Arc::new(tokio::sync::RwLock::new(HashMap::new())), + context: Arc::new(tokio::sync::RwLock::new(None)), + tools: Arc::new(tokio::sync::RwLock::new(Vec::new())), } } + /// Attaches the session context handed to tools that request one. + pub async fn set_context(&self, context: Arc) { + *self.context.write().await = Some(context); + } + /// Registers a custom tool implementation. - pub async fn register(&self, tool: Arc) { + /// + /// # Errors + /// + /// Returns an error if a tool with the same name is already registered. + /// Silently replacing it — the old behaviour — meant a name collision + /// between two modules' tools resolved to whichever registered last, and + /// the model called something the caller had not intended to expose. + pub async fn register(&self, tool: Arc) -> Result<(), anyhow::Error> { + let mut tools = self.tools.write().await; + let duplicate = tools.iter().any(|t| t.name() == tool.name()); + if duplicate { + drop(tools); + return Err(anyhow::anyhow!( + "a tool named `{}` is already registered", + tool.name() + )); + } + tools.push(tool); + drop(tools); + Ok(()) + } + + /// Looks a tool up by the name the model called. + pub async fn get(&self, name: &str) -> Option> { self.tools - .write() + .read() .await - .insert(tool.name().to_string(), tool); + .iter() + .find(|t| t.name() == name) + .map(Arc::clone) } /// Executes a list of tool invocations, mapping their outputs to [`ToolResult`](crate::types::ToolResult)s. + /// + /// The batch runs concurrently — a model that asks for three independent + /// lookups waits for the slowest, not the sum. The registry lock is + /// released before any tool body runs, so a tool that registers another + /// tool cannot deadlock the batch it is part of. pub async fn process_tool_calls( &self, calls: Vec, ) -> Vec { - let mut results = Vec::new(); - for call in calls { + let resolved: Vec<(crate::types::ToolCall, Option>)> = { let tools = self.tools.read().await; - if let Some(tool) = tools.get(&call.name) { - match tool.call(call.args).await { - Ok(val) => { - results.push(crate::types::ToolResult { - id: Some(call.id), - name: call.name.clone(), - result: Some(val), - error: None, - }); - } - Err(e) => { - results.push(crate::types::ToolResult { - id: Some(call.id), - name: call.name.clone(), - result: None, - error: Some(e.to_string()), - }); - } + calls + .into_iter() + .map(|call| { + let tool = tools.iter().find(|t| t.name() == call.name).map(Arc::clone); + (call, tool) + }) + .collect() + }; + + let context = self.context.read().await.clone(); + + futures_util::future::join_all(resolved.into_iter().map(|(call, tool)| { + let context = context.clone(); + async move { + let Some(tool) = tool else { + return crate::types::ToolResult { + id: Some(call.id), + name: call.name.clone(), + result: None, + error: Some(format!("Tool {} not found", call.name)), + server_name: None, + exception: None, + }; + }; + // The model's arguments are shaped to the tool's own schema + // before it sees them, so `"3"` for an integer is not reported + // to the model as the tool being broken. + let call_args = crate::coerce::coerced(call.args, tool.parameters_json_schema()); + let outcome = match (tool.needs_context(), context.as_ref()) { + (true, Some(ctx)) => tool.call_with_context(call_args, ctx).await, + // A tool that asks for a context and finds none would + // otherwise run without it and behave subtly differently. + (true, None) => Err(anyhow::anyhow!( + "`{}` requires a ToolContext and none is attached", + call.name + )), + (false, _) => tool.call(call_args).await, + }; + match outcome { + Ok(val) => crate::types::ToolResult { + id: Some(call.id), + server_name: call.server_name, + name: call.name, + result: Some(val), + error: None, + exception: None, + }, + Err(e) => crate::types::ToolResult { + id: Some(call.id), + // The message the model sees, plus the same failure in + // structured form so a hook can route or count it + // without parsing prose. + error: Some(e.to_string()), + exception: Some(crate::error::ToolExecutionError { + message: e.to_string(), + tool_name: call.name.clone(), + server_name: call.server_name.clone(), + }), + server_name: call.server_name, + name: call.name, + result: None, + }, } - } else { - results.push(crate::types::ToolResult { - id: Some(call.id), - name: call.name.clone(), - result: None, - error: Some(format!("Tool {} not found", call.name)), - }); } + })) + .await + } +} + +#[cfg(test)] +mod tests { + #![allow(clippy::unwrap_used, clippy::expect_used)] + use super::{Tool, ToolRunner}; + use serde_json::Value; + use std::sync::Arc; + + struct Echo { + name: &'static str, + delay_ms: u64, + } + + impl Tool for Echo { + fn name(&self) -> &str { + self.name + } + fn description(&self) -> &'static str { + "echoes" + } + fn parameters_json_schema(&self) -> &'static str { + "{}" + } + async fn call(&self, args: Value) -> Result { + tokio::time::sleep(std::time::Duration::from_millis(self.delay_ms)).await; + Ok(args) + } + } + + fn echo(name: &'static str) -> Arc { + Arc::new(Echo { name, delay_ms: 0 }) + } + + #[tokio::test] + async fn a_duplicate_name_is_rejected() { + let runner = ToolRunner::new(); + runner.register(echo("lookup")).await.unwrap(); + let err = runner + .register(echo("lookup")) + .await + .expect_err("the second registration must be refused"); + assert!(err.to_string().contains("already registered"), "{err}"); + assert_eq!(runner.tools.read().await.len(), 1); + } + + /// The tool list is part of the model's prompt, so its order must not + /// change from run to run. + #[tokio::test] + async fn registration_order_is_preserved() { + let runner = ToolRunner::new(); + for name in ["zeta", "alpha", "mid"] { + runner.register(echo(name)).await.unwrap(); + } + let names: Vec = runner + .tools + .read() + .await + .iter() + .map(|t| t.name().to_string()) + .collect(); + assert_eq!(names, vec!["zeta", "alpha", "mid"]); + } + + /// Three 100ms tools run in ~100ms, not ~300ms. + #[tokio::test] + async fn a_batch_runs_concurrently() { + let runner = ToolRunner::new(); + for name in ["a", "b", "c"] { + runner + .register(Arc::new(Echo { + name, + delay_ms: 100, + })) + .await + .unwrap(); + } + let calls: Vec = ["a", "b", "c"] + .iter() + .enumerate() + .map(|(i, name)| crate::types::ToolCall { + id: i.to_string(), + name: (*name).to_string(), + args: serde_json::json!({"n": i}), + canonical_path: None, + server_name: None, + }) + .collect(); + + let started = std::time::Instant::now(); + let results = runner.process_tool_calls(calls).await; + let elapsed = started.elapsed(); + + assert_eq!(results.len(), 3); + assert!(results.iter().all(|r| r.error.is_none())); + assert!( + elapsed < std::time::Duration::from_millis(250), + "batch took {elapsed:?}; it ran sequentially" + ); + // Results stay in call order regardless of completion order. + let ids: Vec<_> = results.iter().filter_map(|r| r.id.clone()).collect(); + assert_eq!(ids, vec!["0", "1", "2"]); + } + + struct NeedsContext; + + impl Tool for NeedsContext { + fn name(&self) -> &'static str { + "whoami" + } + fn description(&self) -> &'static str { + "reports the conversation id" + } + fn parameters_json_schema(&self) -> &'static str { + "{}" + } + async fn call(&self, _args: Value) -> Result { + Err(anyhow::anyhow!("must be called with a context")) + } + fn needs_context(&self) -> bool { + true } - results + async fn call_with_context( + &self, + _args: Value, + context: &crate::tool_context::ToolContext, + ) -> Result { + Ok(Value::String(context.conversation_id().unwrap_or_default())) + } + } + + fn whoami_call() -> crate::types::ToolCall { + crate::types::ToolCall { + id: "1".to_string(), + name: "whoami".to_string(), + args: Value::Null, + canonical_path: None, + server_name: None, + } + } + + /// The context existed but was never constructed, so a `needs_context` + /// tool silently ran through the plain `call()` path (audit T1). + #[tokio::test] + async fn a_context_aware_tool_is_called_with_the_context() { + use crate::connection::{AnyConnection, MockConnection}; + + let runner = ToolRunner::new(); + runner.register(Arc::new(NeedsContext)).await.unwrap(); + + let conn = Arc::new(MockConnection::new("conv-42")); + let any = AnyConnection::Mock(conn.clone()); + runner + .set_context(Arc::new(crate::tool_context::ToolContext::new( + any.downgrade(), + ))) + .await; + + let results = runner.process_tool_calls(vec![whoami_call()]).await; + assert_eq!( + results[0].result, + Some(Value::String("conv-42".to_string())) + ); + + // Once the session is gone the context reports nothing rather than + // keeping it alive. + drop(any); + drop(conn); + let results = runner.process_tool_calls(vec![whoami_call()]).await; + assert_eq!(results[0].result, Some(Value::String(String::new()))); + } + + /// Running such a tool without a context would behave subtly differently + /// rather than failing, which is worse. + #[tokio::test] + async fn a_context_aware_tool_without_a_context_errors() { + let runner = ToolRunner::new(); + runner.register(Arc::new(NeedsContext)).await.unwrap(); + let results = runner.process_tool_calls(vec![whoami_call()]).await; + assert!( + results[0] + .error + .as_deref() + .unwrap() + .contains("requires a ToolContext") + ); + } + + #[tokio::test] + async fn an_unknown_tool_reports_an_error_result() { + let runner = ToolRunner::new(); + let results = runner + .process_tool_calls(vec![crate::types::ToolCall { + id: "1".to_string(), + name: "nope".to_string(), + args: Value::Null, + canonical_path: None, + server_name: None, + }]) + .await; + assert_eq!(results.len(), 1); + assert!(results[0].error.as_deref().unwrap().contains("not found")); } } diff --git a/src/trigger_helpers.rs b/src/trigger_helpers.rs index 24fe6c0..1ee0c6e 100644 --- a/src/trigger_helpers.rs +++ b/src/trigger_helpers.rs @@ -1,66 +1,124 @@ //! Convenience factory functions for common trigger patterns. //! //! These helpers create ready-to-use [`Trigger`] implementations for common scenarios -//! like periodic timers and filesystem watchers. +//! like periodic timers. -use crate::connection::AnyConnection; -use crate::connection::Connection; -use crate::triggers::Trigger; +use crate::triggers::{Trigger, TriggerContext}; +use std::future::Future; use std::time::Duration; // ─── Periodic (every) Trigger ─────────────────────────────────────────────── -/// A trigger that fires at regular intervals. +/// A trigger that runs a callback at regular intervals. /// /// Created via [`every()`]. -#[derive(Debug)] -pub struct PeriodicTrigger { +pub struct PeriodicTrigger { interval: Duration, - message: String, + callback: F, } -impl Trigger for PeriodicTrigger { - async fn run(&self, connection: AnyConnection) -> Result<(), anyhow::Error> { +impl std::fmt::Debug for PeriodicTrigger { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + f.debug_struct("PeriodicTrigger") + .field("interval", &self.interval) + .finish_non_exhaustive() + } +} + +impl Trigger for PeriodicTrigger +where + F: Fn(TriggerContext) -> Fut + Send + Sync, + Fut: Future> + Send, +{ + async fn run(&self, context: TriggerContext) -> Result<(), anyhow::Error> { loop { tokio::time::sleep(self.interval).await; - connection.send_trigger_notification(&self.message).await?; + (self.callback)(context.clone()).await?; } } } -/// Creates a trigger that fires every `interval` duration, sending `message` to the agent. +/// Runs `callback` every `interval`. +/// +/// The callback decides what to do — send a notification, check something +/// first, do nothing this tick. Previously this took a fixed string and always +/// sent it, so a trigger could not decide whether it had anything to say. +/// +/// # Errors +/// +/// Returns an error for a zero interval, which would spin the task at full +/// speed rather than firing "as often as possible". /// /// # Example /// ```no_run /// use antigravity_sdk_rust::trigger_helpers::every; /// use std::time::Duration; /// -/// let trigger = every(Duration::from_secs(30), "check_status"); +/// let trigger = every(Duration::from_secs(30), |ctx| async move { +/// ctx.send("check_status").await +/// })?; +/// # Ok::<(), anyhow::Error>(()) /// ``` -pub fn every(interval: Duration, message: impl Into) -> PeriodicTrigger { - PeriodicTrigger { - interval, - message: message.into(), +pub fn every(interval: Duration, callback: F) -> Result, anyhow::Error> +where + F: Fn(TriggerContext) -> Fut + Send + Sync, + Fut: Future> + Send, +{ + if interval.is_zero() { + return Err(anyhow::anyhow!( + "a trigger interval must be greater than zero" + )); } + Ok(PeriodicTrigger { interval, callback }) } +/// Sends a fixed `message` every `interval`. +/// +/// The common case of [`every`], kept as its own function so the simple use +/// does not need a closure. +/// +/// # Errors +/// +/// Returns an error for a zero interval. +pub fn every_notification( + interval: Duration, + message: impl Into, +) -> Result< + PeriodicTrigger< + impl Fn( + TriggerContext, + ) -> std::pin::Pin> + Send>>, + >, + anyhow::Error, +> { + let message: Arc = Arc::from(message.into()); + every(interval, move |ctx: TriggerContext| { + let message = message.clone(); + Box::pin(async move { ctx.send(&message).await }) + as std::pin::Pin> + Send>> + }) +} + +use std::sync::Arc; + #[cfg(test)] mod tests { #![allow(clippy::unwrap_used, clippy::expect_used, clippy::panic)] use super::*; #[test] - fn test_every_construction() { - let trigger = every(Duration::from_secs(10), "heartbeat"); - assert_eq!(trigger.interval, Duration::from_secs(10)); - assert_eq!(trigger.message, "heartbeat"); + fn a_zero_interval_is_rejected() { + let err = every(Duration::ZERO, |ctx: TriggerContext| async move { + ctx.send("tick").await + }) + .expect_err("a zero interval would spin the task"); + assert!(err.to_string().contains("greater than zero"), "{err}"); + assert!(every_notification(Duration::ZERO, "tick").is_err()); } #[test] - fn test_every_with_string() { - let msg = String::from("custom message"); - let trigger = every(Duration::from_millis(500), msg); - assert_eq!(trigger.interval, Duration::from_millis(500)); - assert_eq!(trigger.message, "custom message"); + fn a_positive_interval_is_accepted() { + let trigger = every_notification(Duration::from_secs(10), "heartbeat").unwrap(); + assert_eq!(trigger.interval, Duration::from_secs(10)); } } diff --git a/src/triggers.rs b/src/triggers.rs index 0ec63c4..8464115 100644 --- a/src/triggers.rs +++ b/src/triggers.rs @@ -4,19 +4,47 @@ //! (e.g. status polling, cron intervals, external notification listeners) to interact with the //! connection session asynchronously. Background orchestration of these tasks is handled via [`TriggerRunner`]. +use crate::connection::Connection; use futures_util::future::BoxFuture; use std::sync::Arc; +use std::sync::atomic::{AtomicBool, Ordering}; + +/// What a trigger is allowed to do to the session. +/// +/// Triggers used to receive the whole `AnyConnection`, which let a background +/// task disconnect the agent, answer a tool confirmation, or halt a turn the +/// user had just started. A trigger's job is to nudge the agent, so nudging is +/// all this exposes — mirroring upstream's one-method `TriggerContext`. +#[derive(Clone, Debug)] +pub struct TriggerContext { + connection: crate::connection::AnyConnection, +} + +impl TriggerContext { + pub(crate) const fn new(connection: crate::connection::AnyConnection) -> Self { + Self { connection } + } + + /// Pushes a notification into the agent's queue. + /// + /// # Errors + /// + /// Returns an error if the connection cannot accept the message. + pub async fn send(&self, message: &str) -> Result<(), anyhow::Error> { + self.connection.send_trigger_notification(message).await + } +} /// A trait for defining asynchronous background tasks that execute during a connection lifecycle. pub trait Trigger: Send + Sync { - /// Launches the trigger task, passing the active [`AnyConnection`](crate::connection::AnyConnection) instance. + /// Launches the trigger task. /// /// # Errors /// /// Returns an error if the background execution encounters a fatal issue. fn run( &self, - connection: crate::connection::AnyConnection, + context: TriggerContext, ) -> impl std::future::Future> + Send; } @@ -25,18 +53,12 @@ pub trait Trigger: Send + Sync { /// This trait is used internally by the SDK to allow dynamic dispatch and storage of triggers. pub trait DynTrigger: Send + Sync { /// Launches the trigger task. - fn run( - &self, - connection: crate::connection::AnyConnection, - ) -> BoxFuture<'_, Result<(), anyhow::Error>>; + fn run(&self, context: TriggerContext) -> BoxFuture<'_, Result<(), anyhow::Error>>; } impl DynTrigger for T { - fn run( - &self, - connection: crate::connection::AnyConnection, - ) -> BoxFuture<'_, Result<(), anyhow::Error>> { - Box::pin(async move { self.run(connection).await }) + fn run(&self, context: TriggerContext) -> BoxFuture<'_, Result<(), anyhow::Error>> { + Box::pin(async move { self.run(context).await }) } } @@ -44,32 +66,133 @@ impl DynTrigger for T { pub struct TriggerRunner { /// Registered trigger instances. pub triggers: Vec>, + stop_tx: tokio::sync::watch::Sender, + running: Arc, } impl std::fmt::Debug for TriggerRunner { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { f.debug_struct("TriggerRunner") .field("triggers_count", &self.triggers.len()) - .finish() + .field("running", &self.is_running()) + .finish_non_exhaustive() } } impl TriggerRunner { /// Creates a new `TriggerRunner` initialized with the given list of triggers. pub fn new(triggers: Vec>) -> Self { - Self { triggers } + let (stop_tx, _) = tokio::sync::watch::channel(false); + Self { + triggers, + stop_tx, + running: Arc::new(AtomicBool::new(false)), + } + } + + /// Whether the trigger tasks are live. + pub fn is_running(&self) -> bool { + self.running.load(Ordering::SeqCst) } - /// Spawns each registered trigger inside a new asynchronous tokio task block. - pub fn start(&self, connection: &crate::connection::AnyConnection) { + /// Spawns each registered trigger as a background task. + /// + /// # Errors + /// + /// Returns an error if the runner is already running. Starting twice used + /// to double every trigger silently, so a heartbeat fired at twice its + /// configured rate. + pub fn start( + &self, + connection: &crate::connection::AnyConnection, + ) -> Result<(), anyhow::Error> { + if self.running.swap(true, Ordering::SeqCst) { + return Err(anyhow::anyhow!("the trigger runner is already running")); + } for trigger in &self.triggers { - let conn = connection.clone(); + let context = TriggerContext::new(connection.clone()); let tr = trigger.clone(); + let mut stop_rx = self.stop_tx.subscribe(); crate::spawn_task(async move { - if let Err(e) = tr.run(conn).await { - tracing::error!("Trigger execution failed: {:?}", e); + // Racing against the stop signal is what makes `stop()` work + // for a trigger parked in a long sleep — triggers used to + // outlive the agent entirely, still holding a connection. + let run = std::pin::pin!(async move { tr.run(context).await }); + let stop = std::pin::pin!(async move { + let _ = stop_rx.wait_for(|stopped| *stopped).await; + }); + if let futures_util::future::Either::Left((Err(e), _)) = + futures_util::future::select(run, stop).await + { + tracing::error!("Trigger execution failed: {e:?}"); } }); } + Ok(()) + } + + /// Signals every running trigger to stop. + /// + /// Idempotent, and safe to call on a runner that was never started. + pub fn stop(&self) { + self.running.store(false, Ordering::SeqCst); + let _ = self.stop_tx.send(true); + } +} + +#[cfg(test)] +mod tests { + #![allow(clippy::unwrap_used, clippy::expect_used, clippy::panic)] + use super::{Trigger, TriggerContext, TriggerRunner}; + use crate::connection::{AnyConnection, MockConnection}; + use std::sync::Arc; + use std::sync::atomic::{AtomicU32, Ordering}; + + struct Counter(Arc); + + impl Trigger for Counter { + async fn run(&self, _context: TriggerContext) -> Result<(), anyhow::Error> { + loop { + self.0.fetch_add(1, Ordering::SeqCst); + tokio::time::sleep(std::time::Duration::from_millis(10)).await; + } + } + } + + fn mock() -> AnyConnection { + AnyConnection::Mock(Arc::new(MockConnection::new("conv"))) + } + + #[tokio::test] + async fn starting_twice_is_refused() { + let runner = TriggerRunner::new(vec![]); + let conn = mock(); + runner.start(&conn).unwrap(); + assert!(runner.is_running()); + runner + .start(&conn) + .expect_err("a second start would double every trigger"); + runner.stop(); + assert!(!runner.is_running()); + } + + #[tokio::test] + async fn stop_halts_a_running_trigger() { + let ticks = Arc::new(AtomicU32::new(0)); + let runner = TriggerRunner::new(vec![Arc::new(Counter(ticks.clone()))]); + runner.start(&mock()).unwrap(); + + tokio::time::sleep(std::time::Duration::from_millis(60)).await; + runner.stop(); + let after_stop = ticks.load(Ordering::SeqCst); + assert!(after_stop > 0, "the trigger never ran"); + + // Nothing more may be counted once stopped. + tokio::time::sleep(std::time::Duration::from_millis(60)).await; + assert_eq!( + ticks.load(Ordering::SeqCst), + after_stop, + "the trigger outlived stop()" + ); } } diff --git a/src/types.rs b/src/types.rs index e0c3317..f368cc2 100644 --- a/src/types.rs +++ b/src/types.rs @@ -14,18 +14,198 @@ pub const DEFAULT_MODEL: &str = "gemini-3.5-flash"; /// The default image generation model name used. pub const DEFAULT_IMAGE_GENERATION_MODEL: &str = "gemini-3.1-flash-image-preview"; +/// How a conversation attaches to harness-side session state. +/// +/// Mirrors upstream `SessionContinuationMode` (`types.py:654-664`, added 0.1.7). +/// +/// This matters whenever a `conversation_id` is supplied: with the field unset, +/// a 0.1.9 harness attempts a resume and **fails** if the conversation does not +/// exist ("conversation ... not found (cannot resume)"). `CreateOrResume` is +/// what makes a caller-chosen id work for both a new and an existing session. +#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq)] +#[serde(rename_all = "snake_case")] +pub enum SessionContinuationMode { + /// Resume an existing conversation; error if it does not exist. + Resume, + /// Resume if it exists, otherwise create it. + CreateOrResume, + /// Always create; error if the conversation already exists. + CreateOnly, +} + +impl SessionContinuationMode { + /// The proto enum value (`HarnessConfig.SessionContinuationMode`). + #[must_use] + pub const fn as_proto(self) -> i32 { + match self { + Self::Resume => 1, + Self::CreateOrResume => 2, + Self::CreateOnly => 3, + } + } +} + /// Configures the intensity of the reasoning/thinking process for models that support it. +/// +/// The wire spelling is per-variant, not `rename_all = "lowercase"`: that would +/// emit `extrahigh` for [`ExtraHigh`](Self::ExtraHigh), which the harness does +/// not recognise. #[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq)] -#[serde(rename_all = "lowercase")] pub enum ThinkingLevel { /// Minimal reasoning overhead. + #[serde(rename = "minimal")] Minimal, /// Low reasoning. + #[serde(rename = "low")] Low, /// Medium reasoning. + #[serde(rename = "medium")] Medium, /// High reasoning. + #[serde(rename = "high")] High, + /// The highest reasoning budget (added upstream in 0.1.7). + #[serde(rename = "extra_high")] + ExtraHigh, +} + +impl ThinkingLevel { + /// The wire spelling the harness expects. + #[must_use] + pub const fn as_str(self) -> &'static str { + match self { + Self::Minimal => "minimal", + Self::Low => "low", + Self::Medium => "medium", + Self::High => "high", + Self::ExtraHigh => "extra_high", + } + } +} + +/// What a model is used for. +#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq, Hash)] +#[serde(rename_all = "lowercase")] +pub enum ModelType { + /// Text and reasoning. + Text, + /// Image generation. + Image, +} + +impl ModelType { + /// The proto enum value (`ModelType`). + #[must_use] + pub const fn as_proto(self) -> i32 { + match self { + Self::Text => 1, + Self::Image => 2, + } + } +} + +/// Per-model generation options. +#[derive(Debug, Clone, Default, Serialize, Deserialize, PartialEq, Eq)] +pub struct GeminiModelOptions { + /// Reasoning budget for models that support it. + #[serde(skip_serializing_if = "Option::is_none")] + pub thinking_level: Option, +} + +impl GeminiModelOptions { + /// Whether every option is unset. + /// + /// Upstream omits the `options` sub-message entirely in that case rather + /// than sending an empty object (`local_connection.py:140-146`). + #[must_use] + pub const fn is_empty(&self) -> bool { + self.thinking_level.is_none() + } +} + +/// Where a model is served from. +/// +/// Mirrors upstream's `ModelEndpoint` hierarchy (`models.py:73-128`). +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)] +#[serde(rename_all = "snake_case")] +pub enum ModelEndpoint { + /// The Gemini Developer API. + GeminiApi { + /// Overrides the default endpoint host. + #[serde(skip_serializing_if = "Option::is_none")] + base_url: Option, + /// Extra headers to send with every request. + #[serde(default)] + http_headers: std::collections::HashMap, + /// An explicit key. + /// + /// Leave unset to let the harness read `GEMINI_API_KEY` from the + /// environment it inherits — that is what upstream does, and it keeps + /// the key out of the config frame. + #[serde(skip_serializing_if = "Option::is_none")] + api_key: Option, + /// Generation options. + #[serde(skip_serializing_if = "Option::is_none")] + options: Option, + }, + /// Vertex AI. + Vertex { + /// Overrides the default endpoint host. + #[serde(skip_serializing_if = "Option::is_none")] + base_url: Option, + /// Extra headers to send with every request. + #[serde(default)] + http_headers: std::collections::HashMap, + /// GCP project. + #[serde(skip_serializing_if = "Option::is_none")] + project: Option, + /// GCP location. + #[serde(skip_serializing_if = "Option::is_none")] + location: Option, + /// Generation options. + #[serde(skip_serializing_if = "Option::is_none")] + options: Option, + }, + /// An OpenAI-compatible backend (Ollama, LM Studio). + Gemma { + /// The backend's base URL. + base_url: String, + }, +} + +/// One model the agent may use, and where it is served from. +/// +/// Mirrors upstream's `ModelTarget` (`models.py:131-138`). `name` is optional +/// and an empty name is meaningful, not an error: the backend then chooses. +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)] +pub struct ModelTarget { + /// The model identifier, or `None` to let the backend choose. + #[serde(skip_serializing_if = "Option::is_none")] + pub name: Option, + /// What this model is used for. Defaults to text. + #[serde(default = "default_model_types")] + pub types: Vec, + /// Where it is served from. + /// + /// Required on an explicitly-supplied target: the shorthand endpoint built + /// from `api_key`/`vertex` attaches to the shorthand and default models + /// only, never to an explicit one (`local_connection.py:1060-1073`). + #[serde(skip_serializing_if = "Option::is_none")] + pub endpoint: Option, +} + +fn default_model_types() -> Vec { + vec![ModelType::Text] +} + +impl Default for ModelTarget { + fn default() -> Self { + Self { + name: None, + types: default_model_types(), + endpoint: None, + } + } } /// Generation configuration parameters. @@ -110,9 +290,17 @@ pub struct GeminiConfig { /// GCP Location/Region for Vertex AI (e.g., "us-central1"). #[serde(skip_serializing_if = "Option::is_none")] pub location: Option, - /// Model configurations. + /// Model configurations, in the crate's shorthand form. #[serde(default)] pub models: ModelConfig, + /// Explicit model targets, upstream's `models` list. + /// + /// Named `model_targets` because `models` is already taken by the + /// shorthand above. Entries here come first on the wire; the shorthand and + /// the defaults are appended only for model types these do not already + /// cover (`local_connection_config.py:268-296`). + #[serde(default)] + pub model_targets: Vec, /// Option to enable Google Search grounding tool. #[serde(skip_serializing_if = "Option::is_none")] pub enable_google_search: Option, @@ -121,6 +309,116 @@ pub struct GeminiConfig { pub enable_url_context: Option, } +/// What a named subagent may do. +/// +/// Mirrors upstream `SubagentCapabilities` (`types.py:785-802`). The two lists +/// are mutually exclusive — supplying both is a configuration error, not a +/// silent precedence rule. +#[derive(Debug, Clone, Default, Serialize, Deserialize)] +pub struct SubagentCapabilities { + /// Built-ins the subagent may use. Defaults to + /// [`BuiltinTools::read_only`] when neither list is given. + #[serde(default, skip_serializing_if = "Option::is_none")] + pub enabled_tools: Option>, + /// Built-ins the subagent may not use. + #[serde(default, skip_serializing_if = "Option::is_none")] + pub disabled_tools: Option>, +} + +/// A named subagent the model can delegate to. +/// +/// Mirrors upstream `SubagentConfig` (`types.py:804-834`), emitted on +/// `HarnessConfig.custom_subagents` (field 17). +#[derive(Debug, Clone, Default, Serialize, Deserialize)] +pub struct SubagentConfig { + /// How the model refers to this subagent. + pub name: String, + /// What it is for. The model reads this to decide when to delegate. + pub description: String, + /// Instructions scoped to this subagent. + #[serde(default, skip_serializing_if = "Option::is_none")] + pub system_instructions: Option, + /// Which built-ins it may use. + #[serde(default)] + pub capabilities: SubagentCapabilities, + /// Names of client-side tools it may call. + /// + /// Each must be registered on the main agent — a subagent cannot call a + /// tool that does not exist. + #[serde(default)] + pub tools: Vec, +} + +/// How the harness retries the model. +/// +/// Mirrors upstream `RetryConfig` (`types.py:355-417`). Emitted only when a +/// sub-config is populated: an all-empty message would override the harness's +/// own defaults with zeros. +// `ApiRetryConfig` carries floats, so `Eq` is not available on this graph. +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Debug, Clone, Default, Serialize, Deserialize, PartialEq)] +pub struct RetryConfig { + /// Retries for transport and API failures. + #[serde(default, skip_serializing_if = "Option::is_none")] + pub api_retry: Option, + /// Retries for a model response the harness could not use. + #[serde(default, skip_serializing_if = "Option::is_none")] + pub model_output_retry: Option, +} + +impl RetryConfig { + /// Whether nothing is configured, in which case the field is omitted. + #[must_use] + pub const fn is_empty(&self) -> bool { + self.api_retry.is_none() && self.model_output_retry.is_none() + } +} + +/// Retry policy for model API calls. +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Debug, Clone, Default, Serialize, Deserialize, PartialEq)] +pub struct ApiRetryConfig { + /// How many times to retry before giving up. + #[serde(default, skip_serializing_if = "Option::is_none")] + pub max_retries: Option, + /// How long to wait before the first retry. + #[serde(default, skip_serializing_if = "Option::is_none")] + pub initial_sleep_duration_ms: Option, + /// Backoff growth factor between attempts. + #[serde(default, skip_serializing_if = "Option::is_none")] + pub exponential_multiplier: Option, + /// Random spread applied to each wait, to avoid synchronised retries. + #[serde(default, skip_serializing_if = "Option::is_none")] + pub jitter_range: Option, +} + +/// Retry policy for unusable model output. +#[derive(Debug, Clone, Default, Serialize, Deserialize, PartialEq, Eq)] +pub struct ModelOutputRetryConfig { + /// How many times to ask again before giving up. + #[serde(default, skip_serializing_if = "Option::is_none")] + pub max_retries: Option, +} + +/// What to do when a tool's output is too large for the context. +#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)] +#[serde(rename_all = "snake_case")] +pub enum ToolOutputTruncation { + /// Cut the output down and carry on. + Truncate { + /// The budget to cut to. + max_tokens: i32, + }, + /// Fail the tool call instead, with a message the model can act on. + Error { + /// The budget above which the call fails. + max_tokens: i32, + /// What the model is told. + #[serde(default, skip_serializing_if = "Option::is_none")] + error_message: Option, + }, +} + /// A structured section appended to system instructions. #[derive(Debug, Clone, Serialize, Deserialize)] pub struct SystemInstructionSection { @@ -188,6 +486,15 @@ pub enum BuiltinTools { /// Tool to generate images from descriptions. #[serde(rename = "GENERATE_IMAGE")] GenerateImage, + /// Tool to put a multiple-choice question to the user. + #[serde(rename = "ASK_QUESTION")] + AskQuestion, + /// Tool to search the web (harness-side, added upstream in 0.1.6). + #[serde(rename = "SEARCH_WEB")] + SearchWeb, + /// Tool to fetch and summarize a URL (harness-side, added upstream in 0.1.6). + #[serde(rename = "READ_URL_CONTENT")] + ReadUrlContent, /// Terminating signal indicating the task is completed. #[serde(rename = "FINISH")] Finish, @@ -206,6 +513,9 @@ impl BuiltinTools { Self::ViewFile => "VIEW_FILE", Self::StartSubagent => "START_SUBAGENT", Self::GenerateImage => "GENERATE_IMAGE", + Self::AskQuestion => "ASK_QUESTION", + Self::SearchWeb => "SEARCH_WEB", + Self::ReadUrlContent => "READ_URL_CONTENT", Self::Finish => "FINISH", } } @@ -222,6 +532,9 @@ impl BuiltinTools { Self::SearchDir, Self::FindFile, Self::ViewFile, + // Added to upstream's read_only() in 0.1.6: fetching a URL reads, + // it does not write. + Self::ReadUrlContent, Self::Finish, ] } @@ -242,6 +555,9 @@ impl BuiltinTools { Self::ViewFile, Self::StartSubagent, Self::GenerateImage, + Self::AskQuestion, + Self::SearchWeb, + Self::ReadUrlContent, Self::Finish, ] } @@ -314,6 +630,13 @@ pub enum McpServerConfig { command: String, /// execution arguments. args: Vec, + /// Extra environment for the server process, on top of what it + /// inherits. + #[serde(default)] + env: HashMap, + /// How long the harness waits for the server before giving up. + #[serde(default, skip_serializing_if = "Option::is_none")] + timeout_seconds: Option, /// Explicit allowlist of tools to enable. Mutually exclusive with `disabled_tools`. #[serde(skip_serializing_if = "Option::is_none")] enabled_tools: Option>, @@ -328,6 +651,9 @@ pub enum McpServerConfig { name: String, /// HTTP URL endpoint. url: String, + /// How long the harness waits for the server before giving up. + #[serde(default, skip_serializing_if = "Option::is_none")] + timeout_seconds: Option, /// Additional HTTP headers. #[serde(skip_serializing_if = "Option::is_none")] headers: Option>, @@ -404,7 +730,7 @@ const fn default_true() -> bool { } /// Describes a model's request to execute a registered tool. -#[derive(Debug, Clone, Serialize, Deserialize)] +#[derive(Debug, Clone, Default, Serialize, Deserialize)] pub struct ToolCall { /// Unique call ID generated for correlation. pub id: String, @@ -415,10 +741,17 @@ pub struct ToolCall { /// Canonical file system path (if the tool targets a file/directory). #[serde(skip_serializing_if = "Option::is_none")] pub canonical_path: Option, + /// The MCP server this tool belongs to, if any. + /// + /// `None` for a built-in or a client-side Rust tool. A policy predicate + /// could not tell `github/create_issue` from a local `create_issue` + /// without it — the name alone is ambiguous across servers. + #[serde(skip_serializing_if = "Option::is_none")] + pub server_name: Option, } /// The response outcome of executing a client-side tool. -#[derive(Debug, Clone, Serialize, Deserialize)] +#[derive(Debug, Clone, Default, Serialize, Deserialize)] pub struct ToolResult { /// Name of the executed tool. pub name: String, @@ -431,23 +764,33 @@ pub struct ToolResult { /// Error message string if tool execution failed. #[serde(skip_serializing_if = "Option::is_none")] pub error: Option, + /// The MCP server that ran the tool, if any. + #[serde(skip_serializing_if = "Option::is_none")] + pub server_name: Option, + /// The failure in structured form, when there was one. + /// + /// `error` is the message shown to the model; this carries what a + /// `post_tool_call` hook needs to route or count failures without parsing + /// prose. Not serialized to the wire — the harness only takes the message. + #[serde(skip)] + pub exception: Option, } /// Consumption stats for API usage tracking. #[derive(Debug, Clone, Serialize, Deserialize, Default)] pub struct UsageMetadata { /// Tokens included in the request prompt. - pub prompt_token_count: i32, + pub prompt_token_count: u64, /// Tokens generated in candidates. - pub candidates_token_count: i32, + pub candidates_token_count: u64, /// Total combined tokens. - pub total_token_count: i32, + pub total_token_count: u64, /// Cache hit content tokens. #[serde(default)] - pub cached_content_token_count: i32, + pub cached_content_token_count: u64, /// Tokens consumed during inner thinking/reasoning. #[serde(default)] - pub thoughts_token_count: i32, + pub thoughts_token_count: u64, } /// The classification type of a step in the trajectory. @@ -665,8 +1008,13 @@ pub struct ChatResponse { pub thinking: String, /// Sequence of intermediate execution steps. pub steps: Vec, - /// Token usage metrics. - pub usage_metadata: UsageMetadata, + /// Token usage for **this turn**, or `None` when the harness reported none. + /// + /// Was the session's running total, which made it impossible to answer + /// "what did this reply cost" — the number a caller reaches for. The + /// cumulative figure is still available as + /// [`Conversation::total_usage`](crate::conversation::Conversation::total_usage). + pub usage_metadata: Option, } /// Streaming fragment sent over chunk-based event listeners. @@ -905,6 +1253,8 @@ pub enum ContentPrimitive { Text(String), /// Binary media content (image, document, audio, or video). Media(Media), + /// A slash command for the harness to expand, without the leading slash. + SlashCommand(String), } /// Agent prompt content — a single primitive or a list of primitives. @@ -921,6 +1271,38 @@ pub enum Content { } impl Content { + /// The parts, in order, whichever shape this is. + #[must_use] + pub fn parts(&self) -> Vec<&ContentPrimitive> { + match self { + Self::Single(part) => vec![part], + Self::Multi(parts) => parts.iter().collect(), + } + } + + /// Whether the prompt carries nothing the harness could act on. + /// + /// An empty multimodal prompt is rejected the same as an empty string. + #[must_use] + pub fn is_empty(&self) -> bool { + self.parts().into_iter().all(|part| match part { + ContentPrimitive::Text(text) => text.trim().is_empty(), + ContentPrimitive::Media(media) => media.data.is_empty(), + ContentPrimitive::SlashCommand(name) => name.trim().is_empty(), + }) + } + + /// Appends a slash command. + #[must_use] + pub fn with_slash_command(self, name: impl Into) -> Self { + let mut parts: Vec = match self { + Self::Single(part) => vec![part], + Self::Multi(parts) => parts, + }; + parts.push(ContentPrimitive::SlashCommand(name.into())); + Self::Multi(parts) + } + /// Creates a text-only content. pub fn text(s: impl Into) -> Self { Self::Single(ContentPrimitive::Text(s.into())) @@ -1066,6 +1448,7 @@ mod tests { name: "read_file".to_string(), args: json!({"path": "/tmp/foo"}), canonical_path: None, + server_name: None, }; assert_eq!(tc.name, "read_file"); assert_eq!(tc.args["path"], "/tmp/foo"); @@ -1090,6 +1473,8 @@ mod tests { id: Some("call_1".to_string()), result: Some(json!(42)), error: None, + server_name: None, + exception: None, }; assert_eq!(tr.name, "sum_tool"); assert_eq!(tr.result.unwrap(), 42); @@ -1104,6 +1489,8 @@ mod tests { id: None, result: None, error: Some("kaboom".to_string()), + server_name: None, + exception: None, }; assert_eq!(tr.name, "bad_tool"); assert!(tr.result.is_none()); @@ -1118,6 +1505,8 @@ mod tests { id: None, result: None, error: None, + server_name: None, + exception: None, }; tr.result = Some(json!("updated")); assert_eq!(tr.result.unwrap(), "updated"); diff --git a/src/wasm.rs b/src/wasm.rs index aa7b5b0..ec3f310 100644 --- a/src/wasm.rs +++ b/src/wasm.rs @@ -3,6 +3,15 @@ //! This module provides a WebSocket-based harness connection for WebAssembly environments, //! connecting to the host `localharness` process over the network. +/// How long `initial_history()` waits for the harness handshake reply. +/// +/// A pre-0.1.4 harness never answers; the wait then expires and the session +/// starts with no replayed history, which is correct for one. +const HANDSHAKE_TIMEOUT_SECONDS: u64 = 10; + +/// How long `disconnect()` waits for the harness to acknowledge session end. +const SESSION_END_TIMEOUT_SECONDS: u64 = 10; + use anyhow::{Result, anyhow}; use futures_util::stream::{self, BoxStream, StreamExt}; use serde_json::Value; @@ -23,10 +32,10 @@ use tungstenite::{Message as WsMessage, client::client, handshake::client::Reque use crate::connection::Connection; use crate::hooks::HookRunner; use crate::proto::localharness::{ - FileEditToolConfig, FilesystemWorkspace, FindToolConfig, GeminiConfig as ProtoGeminiConfig, - GenerateImageToolConfig, GrepSearchToolConfig, HarnessConfig, HarnessSideTools, - InitializeConversationEvent, InputEvent, ListDirToolConfig, MultipleChoiceAnswer, OutputEvent, - RunCommandToolConfig, StepUpdate, SubagentsConfig, + FileEditToolConfig, FilesystemWorkspace, FindToolConfig, GenerateImageToolConfig, + GrepSearchToolConfig, HarnessConfig, HarnessSideTools, InitializeConversationEvent, InputEvent, + ListDirToolConfig, MultipleChoiceAnswer, OutputEvent, ReadUrlContentToolConfig, + RunCommandToolConfig, SearchWebToolConfig, StepUpdate, SubagentsConfig, SystemInstructions as ProtoSystemInstructions, Tool as ProtoTool, ToolConfirmation, ToolResponse, UserQuestionAnswer, UserQuestionsConfig, UserQuestionsResponse, ViewFileToolConfig, Workspace as ProtoWorkspace, WriteToFileToolConfig, @@ -52,7 +61,13 @@ impl StepTracker { Self::default() } - pub const fn update_state(&mut self, state: i32) { + pub fn update_state(&mut self, state: i32) { + // Leaving WAITING_FOR_USER ends the request round. Without this the + // dedup set persists, so a re-asked question is never answered a second + // time and the harness waits forever. STATE_WAITING_FOR_USER = 3. + if self.state == 3 && state != 3 { + self.handled_requests.clear(); + } self.state = state; } @@ -81,6 +96,14 @@ pub struct WasmConnectionStrategy { pub tool_runner: Option, pub hook_runner: Option, pub conversation_id: String, + /// MCP server configurations, emitted on `HarnessConfig.mcp_servers`. + pub mcp_servers: Vec, + /// How the harness retries the model, on `HarnessConfig.retry_config`. + pub retry_config: Option, + /// Tool-output truncation policy, on `HarnessConfig.tool_output_truncation`. + pub tool_output_truncation: Option, + /// Named subagents, emitted on `HarnessConfig.custom_subagents`. + pub subagents: Vec, } impl WasmConnectionStrategy { @@ -145,15 +168,25 @@ impl WasmConnectionStrategy { ws.get_ref().set_nonblocking(true)?; // Build HarnessConfig proto + let declared_hook_kinds = match self.hook_runner { + Some(ref runner) => runner.declared_kinds().await, + None => crate::hook_dispatch::HookKinds::NONE, + }; + let mut proto_tools = Vec::new(); + let mut registered_tool_names: Vec = Vec::new(); if let Some(ref runner) = self.tool_runner { let tools = runner.tools.read().await; - for t in tools.values() { + for t in tools.iter() { + registered_tool_names.push(t.name().to_string()); proto_tools.push(ProtoTool { name: Some(t.name().to_string()), description: Some(t.description().to_string()), parameters_json_schema: Some(t.parameters_json_schema().to_string()), response_json_schema: None, + // Deferred tool loading is a 0.1.9 capability this crate + // does not use yet (audit W27). + defer_loading: None, }); } } @@ -198,29 +231,6 @@ impl WasmConnectionStrategy { } }); - let proto_gemini = ProtoGeminiConfig { - api_key: Some(api_key), - base_url: None, - model_name: Some(self.gemini_config.models.default.name.clone()), - thinking_level: self - .gemini_config - .models - .default - .generation - .thinking_level - .map(|l| match l { - crate::types::ThinkingLevel::Minimal => "minimal".to_string(), - crate::types::ThinkingLevel::Low => "low".to_string(), - crate::types::ThinkingLevel::Medium => "medium".to_string(), - crate::types::ThinkingLevel::High => "high".to_string(), - }), - enable_url_context: self.gemini_config.enable_url_context, - enable_google_search: self.gemini_config.enable_google_search, - use_vertex: Some(self.gemini_config.vertex), - project: self.gemini_config.project.clone(), - location: self.gemini_config.location.clone(), - }; - let mut proto_workspaces = Vec::new(); for w in &self.workspaces { proto_workspaces.push(ProtoWorkspace { @@ -263,6 +273,16 @@ impl WasmConnectionStrategy { ); let side_tools = HarnessSideTools { + // A tool like any other: absent would leave the harness to guess, + // and a caller who listed `enabled_tools` had no way to turn either + // on or off (C6). + search_web: Some(SearchWebToolConfig { + enabled: Some(active_tools.contains(&BuiltinTools::SearchWeb)), + }), + read_url_content: Some(ReadUrlContentToolConfig { + enabled: Some(active_tools.contains(&BuiltinTools::ReadUrlContent)), + }), + tool_search_config: None, find: Some(FindToolConfig { enabled: Some(active_tools.contains(&BuiltinTools::FindFile)), }), @@ -273,7 +293,10 @@ impl WasmConnectionStrategy { enabled: Some(active_tools.contains(&BuiltinTools::StartSubagent)), }), user_questions: Some(UserQuestionsConfig { - enabled: Some(true), + // Was hardcoded true, so a caller who listed `enabled_tools` + // explicitly still got the question panel and no way to turn it + // off. It is a tool like any other. + enabled: Some(active_tools.contains(&BuiltinTools::AskQuestion)), }), file_edit: Some(FileEditToolConfig { enabled: Some(active_tools.contains(&BuiltinTools::EditFile)), @@ -293,15 +316,36 @@ impl WasmConnectionStrategy { permissions: None, generate_image: Some(GenerateImageToolConfig { enabled: Some(active_tools.contains(&BuiltinTools::GenerateImage)), - model_name: self.capabilities_config.image_model.clone(), }), }; let harness_config = HarnessConfig { cascade_id: Some(self.conversation_id.clone()), - model_config: Some( - crate::proto::localharness::harness_config::ModelConfig::GeminiConfig(proto_gemini), + // Each of these is its own work package (WP-6 session continuation + // and retry, WP-8 hooks, WP-9 MCP and subagents). Explicitly unset + // so `cargo build` flags them again when those land. + session_continuation_mode: None, + retry_config: crate::harness_config::build_retry_config_proto( + self.retry_config.as_ref(), ), + // Only what a registered hook declared. The harness blocks its + // turn waiting for a CallHookResponse for every kind named here, + // and `answer_hook_request` is what makes that safe — emitting this + // before the router existed would have turned a silent no-op into a + // mid-turn deadlock (E5). + enabled_hooks: declared_hook_kinds.to_proto(), + custom_subagents: crate::harness_config::build_custom_subagents_proto( + &self.subagents, + ®istered_tool_names, + )?, + mcp_servers: crate::harness_config::build_mcp_servers_proto(&self.mcp_servers), + tool_output_truncation: crate::harness_config::build_truncation_proto( + self.tool_output_truncation.as_ref(), + ), + models: crate::harness_config::build_models_proto( + &self.gemini_config, + self.capabilities_config.image_model.as_deref(), + )?, system_instructions: proto_sys, tools: proto_tools, harness_side_tools: Some(side_tools), @@ -347,18 +391,46 @@ impl WasmConnectionStrategy { }); // Setup channels for step stream - let (step_tx, step_rx) = mpsc::unbounded_channel::>(); + let (step_tx, step_rx) = mpsc::unbounded_channel::(); let client_tool_step_counter = Arc::new(AtomicU32::new(50_000)); - let is_idle = Arc::new(AtomicBool::new(false)); - let parent_idle = Arc::new(Mutex::new(false)); - let active_subagent_ids = Arc::new(Mutex::new(HashSet::new())); + // Upstream starts idle (local_connection.py:448-459) and this now + // matches. Two earlier attempts were reverted: the first hit a + // first-poll hazard the receive_steps() loop restructure removed, the + // second a connect-time race where a caller polling receive_steps() + // before the harness reported STATE_RUNNING saw idle with an empty + // queue and got an empty stream. + // + // What closes it is the contract, not a flag: `send()` clears idle + // before the prompt goes out, so send()-then-receive — which is what + // `chat()` and `Conversation` do — can never observe the gap. A caller + // that subscribes before sending anything now gets an empty stream + // immediately instead of blocking forever on a turn that was never + // started, which is the better of the two failure modes and the one + // upstream has (C2). + let is_idle = Arc::new(AtomicBool::new(true)); + let (idle_tx, _idle_rx) = tokio::sync::watch::channel(true); + let (session_end_tx, _session_end_rx) = tokio::sync::watch::channel(false); + let conn_session_end = session_end_tx.clone(); + let socket_closed = Arc::new(AtomicBool::new(false)); + let conn_socket_closed = socket_closed.clone(); + let (initial_history_tx, _initial_history_rx) = + tokio::sync::watch::channel::>>(None); + let conn_initial_history = initial_history_tx.clone(); + let conn_idle_tx = idle_tx.clone(); + let cancel_requested = Arc::new(AtomicBool::new(false)); let step_trackers = Arc::new(Mutex::new(HashMap::new())); + // Last model text seen on each subagent trajectory, so the + // `post_tool_call` that fires when the subagent finishes can carry what + // it produced (upstream `_subagent_responses`). + let subagent_responses: Arc>> = + Arc::new(Mutex::new(HashMap::new())); + let conn_subagent_responses = subagent_responses.clone(); let conn_ws_tx = ws_tx.clone(); let conn_is_idle = is_idle.clone(); - let conn_parent_idle = parent_idle.clone(); - let conn_active_subagents = active_subagent_ids.clone(); + let conn_is_idle_for_close = is_idle.clone(); + let conn_cancel_requested = cancel_requested.clone(); let conn_step_trackers = step_trackers.clone(); let tool_runner = self.tool_runner.clone(); @@ -392,17 +464,38 @@ impl WasmConnectionStrategy { let step_idx = step_update.step_index.unwrap_or(0); let key = (traj_id.clone(), step_idx); - // Learn the cascade_id from the first StepUpdate - // where cascade_id == trajectory_id (Python parity) + // The main trajectory is whichever one reports first, + // unconditionally — upstream event_processor.py:478-480. + // The previous rule also required cascade_id == + // trajectory_id, so on a resumed session, or when a + // subagent reported first, nothing was ever learned and + // every trajectory then counted as the main one. + // (A1; the local transport got this fix first.) + if !traj_id.is_empty() { + let mut main_id = conn_cascade_id_for_ws.lock().await; + let unset = main_id.is_none(); + if unset { + *main_id = Some(traj_id.clone()); + } + drop(main_id); + if unset { + tracing::debug!("main trajectory: {traj_id}"); + let _ = conn_learned_id.set(traj_id.clone()); + } + } + + // A model step on a trajectory that is not the main one + // came from a subagent. Keep its text: the completion + // event carries no result of its own (H12). { - let cascade_id_val = step_update.cascade_id.clone().unwrap_or_default(); - if !cascade_id_val.is_empty() && cascade_id_val == traj_id { - let _ = conn_learned_id.set(cascade_id_val.clone()); - let mut cid = conn_cascade_id_for_ws.lock().await; - if cid.is_none() { - tracing::debug!("Learned cascade_id from StepUpdate: {}", cascade_id_val); - *cid = Some(cascade_id_val); - } + let main_id = conn_cascade_id_for_ws.lock().await.clone(); + let is_subagent = !traj_id.is_empty() + && main_id.as_ref().is_some_and(|id| *id != traj_id); + if is_subagent + && step_update.source == Some(3) + && let Some(text) = step_update.text.clone().filter(|t| !t.is_empty()) + { + conn_subagent_responses.lock().await.insert(traj_id.clone(), text); } } @@ -462,8 +555,11 @@ impl WasmConnectionStrategy { Some(1) => StepStatus::Active, Some(2) => StepStatus::Done, Some(3) => StepStatus::WaitingForUser, - Some(4) => StepStatus::Error, - Some(5) => StepStatus::TerminalError, + // STATE_TERMINAL_ERROR = 5 was removed upstream in + // 0.1.3; a step that fails now reports STATE_ERROR, + // and a whole turn failing arrives as + // TrajectoryStateUpdate.error instead (audit W7/W23). + Some(4) => StepStatus::TerminalError, _ => StepStatus::Unknown, }; @@ -492,7 +588,19 @@ impl WasmConnectionStrategy { f.output_string.as_ref().and_then(|s| serde_json::from_str(s).ok()) }); - let error_msg = step_update.error_message.clone().unwrap_or_default(); + // A step can carry ActionError{error_message, + // http_code} with an empty top-level message, which + // reported the failure as blank (audit C14). + let error_msg = step_update + .error_message + .clone() + .or_else(|| { + step_update + .error + .as_ref() + .and_then(|e| e.error_message.clone()) + }) + .unwrap_or_default(); let http_code = step_update.error.as_ref().and_then(|e| e.http_code).unwrap_or(0); let step = Step { @@ -516,7 +624,31 @@ impl WasmConnectionStrategy { http_code, }; - let _ = step_tx.send(Ok(step)); + // Turn-level hooks fire off the step that carries the + // event, which is the only place either is observable + // from inside the connection (H1b, H1d). + if let Some(runner) = hook_runner.as_ref() { + if step.is_complete_response == Some(true) { + let runner = runner.clone(); + let text = step.content.clone(); + crate::spawn_task(async move { + if let Err(e) = runner.dispatch_post_turn(&text).await { + tracing::error!("post_turn hook failed: {e:?}"); + } + }); + } + if step.r#type == StepType::Compaction { + let runner = runner.clone(); + let compacted = step.clone(); + crate::spawn_task(async move { + if let Err(e) = runner.dispatch_on_compaction(&compacted).await { + tracing::error!("on_compaction hook failed: {e:?}"); + } + }); + } + } + + let _ = step_tx.send(crate::step_extract::StepEvent::Step(Box::new(step))); // Detect platform-level errors (source=SYSTEM) and propagate them. if source == StepSource::System @@ -524,7 +656,7 @@ impl WasmConnectionStrategy { && (http_code == 400 || http_code == 401 || http_code == 403) { let err_str = step_update.error.as_ref().and_then(|e| e.error_message.clone()).unwrap_or_else(|| "System error occurred.".to_string()); - let _ = step_tx.send(Err(anyhow!("System step error (HTTP {}): {}", http_code, err_str))); + let _ = step_tx.send(crate::step_extract::StepEvent::Error(anyhow!("System step error (HTTP {}): {}", http_code, err_str))); break; } @@ -532,7 +664,7 @@ impl WasmConnectionStrategy { if status == StepStatus::TerminalError { let err_msg = step_update.error_message.clone() .unwrap_or_else(|| "Terminal error occurred during execution".to_string()); - let _ = step_tx.send(Err( + let _ = step_tx.send(crate::step_extract::StepEvent::Error( AntigravityExecutionError { message: err_msg }.into() )); break; @@ -548,8 +680,16 @@ impl WasmConnectionStrategy { let tr = ToolResult { name: tc.name.clone(), id: Some(tc.id.clone()), - result: extracted.and_then(|r| r.result).or_else(|| step_update.text.clone().map(Value::String)), + // Structured per tool, so a hook can read an + // exit code or a content path instead of + // parsing display text (N3). Falls back to + // the text for anything unrecognised. + result: crate::tool_output::structured_result(&step_update) + .or_else(|| extracted.and_then(|r| r.result)) + .or_else(|| step_update.text.clone().map(Value::String)), error: None, + server_name: None, + exception: None, }; let runner_clone = runner.clone(); crate::spawn_task(async move { @@ -560,7 +700,7 @@ impl WasmConnectionStrategy { let err = anyhow!(err_msg); let runner_clone = runner.clone(); crate::spawn_task(async move { - let _ = runner_clone.dispatch_on_tool_error(&err).await; + runner_clone.dispatch_on_tool_error(&err).await; }); } } @@ -574,7 +714,15 @@ impl WasmConnectionStrategy { let step_index = step_update.step_index; crate::spawn_task(async move { let mut questions_list = Vec::new(); - for uq in &q_req_clone.questions { + // The hook only sees multiple-choice questions, + // so the response index is an index into the + // FILTERED list. Carry the original index or + // every answer after a non-multiple-choice + // question is recorded against the wrong one. + let mut original_indices: Vec = Vec::new(); + for (original_index, uq) in + q_req_clone.questions.iter().enumerate() + { if let Some(crate::proto::localharness::user_question::QuestionType::MultipleChoice(ref mc)) = uq.question_type { let mut opts = Vec::new(); for (j, choice) in mc.choices.iter().enumerate() { @@ -583,6 +731,7 @@ impl WasmConnectionStrategy { text: choice.clone(), }); } + original_indices.push(original_index); questions_list.push(AskQuestionEntry { question: mc.question.clone().unwrap_or_default(), options: opts, @@ -601,7 +750,17 @@ impl WasmConnectionStrategy { if let Some(runner) = hook_runner.as_ref().filter(|_| !questions_list.is_empty()) { let res = runner.dispatch_interaction(&questions_list).await; if let Ok(Some(q_res)) = res { - for (orig_idx, r) in q_res.responses.iter().enumerate() { + for (filtered_idx, r) in + q_res.responses.iter().enumerate() + { + // A hook may return more responses + // than there were questions; ignore + // the extras rather than panicking. + let Some(&orig_idx) = + original_indices.get(filtered_idx) + else { + break; + }; if !r.skipped { let mut mc_ans = MultipleChoiceAnswer { selected_choice_indices: Vec::new(), @@ -647,12 +806,8 @@ impl WasmConnectionStrategy { let mut allow = true; let tool_call = crate::step_extract::extract_builtin_tool_call(&step_update_clone); if let Some(ref tc) = tool_call { - if let Some(ref runner) = hook_runner { - let pre_call = runner.dispatch_pre_tool_call(tc).await; - if let Ok(res) = pre_call { - allow = res.allow; - } - } + // Fails closed: a hook that errors denies. + (allow, _) = crate::hooks::HookRunner::gate_tool_call(hook_runner.as_ref(), tc).await; if allow { let key = (step_update_clone.trajectory_id.clone().unwrap_or_default(), step_update_clone.step_index.unwrap_or(0)); pending_calls.lock().await.insert(key, tc.clone()); @@ -674,37 +829,143 @@ impl WasmConnectionStrategy { } } crate::proto::localharness::output_event::Event::TrajectoryStateUpdate(tsu) => { - let sub_id = tsu.trajectory_id.clone().unwrap_or_default(); - let learned_cascade = conn_cascade_id_for_ws.lock().await; - let is_subagent = learned_cascade.as_ref().is_some_and(|cid| !sub_id.is_empty() && sub_id != *cid); - tracing::debug!("TrajectoryStateUpdate: trajectory_id={:?}, state={:?}, is_subagent={}, learned_cascade_id={:?}", sub_id, tsu.state, is_subagent, *learned_cascade); - drop(learned_cascade); - - let mut active_subs = conn_active_subagents.lock().await; - let mut p_idle = conn_parent_idle.lock().await; - - if tsu.state == Some(1) { // STATE_RUNNING - if is_subagent { - active_subs.insert(sub_id); - } - } else if tsu.state == Some(2) { // STATE_IDLE - if is_subagent { - active_subs.remove(&sub_id); - } else { - *p_idle = true; + let traj_id = tsu.trajectory_id.clone().unwrap_or_default(); + let main_id = conn_cascade_id_for_ws.lock().await; + // Only the main trajectory drives idle; subagent + // trajectories return early (event_processor.py:539-542). + let is_main = main_id + .as_ref() + .is_none_or(|id| traj_id.is_empty() || traj_id == *id); + drop(main_id); + + if !is_main { + // A subagent finishing is how a START_SUBAGENT call + // completes — the harness sends no tool response for + // it. Without this a `post_tool_call` hook saw the + // pre_tool_call and never a matching completion. + if tsu.state == Some(2) || tsu.state == Some(3) { + let response = conn_subagent_responses + .lock() + .await + .remove(&traj_id) + .unwrap_or_else(|| traj_id.clone()); + if let Some(runner) = hook_runner.as_ref() { + let tr = crate::types::ToolResult { + name: crate::types::BuiltinTools::StartSubagent + .as_str() + .to_string(), + id: None, + result: Some(Value::String(response)), + error: None, + server_name: None, + exception: None, + }; + let runner = runner.clone(); + crate::spawn_task(async move { + let _ = runner.dispatch_post_tool_call(&tr).await; + }); + } } + continue; + } + + // A turn that failed server-side reports its + // reason here; without this the stream just ends + // (event_processor.py:554-557). + if let Some(ref err) = tsu.error + && !err.is_empty() + { + let _ = step_tx.send( + crate::step_extract::StepEvent::Error(anyhow!( + "{err}" + )), + ); + } + + if tsu.state == Some(3) { // STATE_CANCELLED + conn_cancel_requested.store(false, Ordering::SeqCst); + let reason = tsu + .error + .clone() + .filter(|e| !e.is_empty()) + .unwrap_or_else(|| "Turn cancelled".to_string()); + let _ = step_tx.send( + crate::step_extract::StepEvent::Error( + anyhow!(crate::error::AntigravityError::Cancelled(reason)), + ), + ); + } else if tsu.state == Some(2) // STATE_FULLY_IDLE + && conn_cancel_requested.swap(false, Ordering::SeqCst) + { + // A halt the caller asked for. The harness stops + // the turn and reports ordinary idle, so this is + // the only point at which the two can be told + // apart (A3, docs/remaining-work.md). + let _ = step_tx.send( + crate::step_extract::StepEvent::Error( + anyhow!(crate::error::AntigravityError::Cancelled( + "Cancelled by caller".to_string() + )), + ), + ); } - tracing::debug!("TrajectoryStateUpdate: p_idle={}, active_subs_empty={}", *p_idle, active_subs.is_empty()); - if *p_idle && active_subs.is_empty() && !conn_is_idle.swap(true, Ordering::SeqCst) { + if tsu.state == Some(2) || tsu.state == Some(3) { // STATE_FULLY_IDLE | STATE_CANCELLED + conn_is_idle.store(true, Ordering::SeqCst); + let _ = conn_idle_tx.send(true); tracing::debug!("Connection transitioned to IDLE, sending sentinel"); - let sentinel = Step { - id: "IDLE_SENTINEL".to_string(), - ..Default::default() - }; - let _ = step_tx.send(Ok(sentinel)); + let _ = step_tx.send(crate::step_extract::StepEvent::Idle); } } + crate::proto::localharness::output_event::Event::InitializeConversationResponse(resp) => { + // The harness's first frame since 0.1.4. Reading it + // during the handshake — and seeding the conversation + // with `resp.history` on a resumed session — is WP-6; + // until then a resumed session silently starts empty. + // The reader loop is already running when this + // frame arrives — this transport has no split + // stream to read from before spawning — so the + // replayed history is published here and awaited + // by `initial_history()` (A5). + tracing::debug!( + "initialize_conversation_response ({} history steps)", + resp.history.len() + ); + let replayed: Vec = resp + .history + .iter() + .filter_map(crate::step_extract::step_from_update) + .collect(); + let _ = conn_initial_history.send(Some(replayed)); + } + crate::proto::localharness::output_event::Event::CallHookRequest(req) => { + // The harness blocks its turn until a + // CallHookResponse with this request_id comes + // back, so this arm must always answer — even + // when it does not understand the request. + let hook_runner = hook_runner.clone(); + let conn_ws_tx = conn_ws_tx.clone(); + crate::spawn_task(async move { + let response = crate::hook_dispatch::answer_hook_request( + hook_runner.as_ref(), + &req, + ) + .await; + let input_event = InputEvent { + event: Some(crate::proto::localharness::input_event::Event::CallHookResponse(response)), + }; + if let Ok(raw_json) = serde_json::to_string(&input_event) { + let _ = conn_ws_tx.send(raw_json); + } + }); + } + crate::proto::localharness::output_event::Event::SessionEndResponse(_) => { + // The harness has flushed the trajectory. Release + // `disconnect()`, which waits for this before tearing + // the process down (B7). + tracing::debug!("session_end_response"); + let _ = conn_session_end.send(true); + } crate::proto::localharness::output_event::Event::ToolCall(tool_call) => { let conn_ws_tx = conn_ws_tx.clone(); let tool_runner = tool_runner.clone(); @@ -713,12 +974,13 @@ impl WasmConnectionStrategy { let learned_id_clone = conn_learned_id.clone(); let counter = client_tool_step_counter.clone(); crate::spawn_task(async move { - let args: Value = serde_json::from_str(&tool_call.arguments_json.clone().unwrap_or_default()).unwrap_or(Value::Null); + let args: Value = crate::tool_wire::parse_arguments(tool_call.arguments_json.as_deref()); let tc = ToolCall { id: tool_call.id.clone().unwrap_or_default(), name: tool_call.name.clone().unwrap_or_default(), args: args.clone(), canonical_path: None, + server_name: None, }; tracing::debug!("ToolCall event received: id={}, name={}", tc.id, tc.name); @@ -739,15 +1001,11 @@ impl WasmConnectionStrategy { trajectory_id: traj_id.clone(), ..Default::default() }; - let _ = step_tx_clone.send(Ok(active_step)); + let _ = step_tx_clone.send(crate::step_extract::StepEvent::Step(Box::new(active_step))); - let allow = if let Some(runner) = hook_runner.as_ref() { - let res = runner.dispatch_pre_tool_call(&tc).await.map_or(true, |res| res.allow); - tracing::debug!("Policy decision for tool {}: allow={}", tc.name, res); - res - } else { - true - }; + // Fails closed: a hook that errors denies. + let (allow, deny_reason) = crate::hooks::HookRunner::gate_tool_call(hook_runner.as_ref(), &tc).await; + tracing::debug!("Policy decision for tool {}: allow={}", tc.name, allow); if !allow { // Emit ERROR step for denied tool call @@ -759,18 +1017,22 @@ impl WasmConnectionStrategy { target: StepTarget::Environment, status: StepStatus::Error, content: tc.name.clone(), - error: "Execution denied by hook policy".to_string(), + error: if deny_reason.is_empty() { + "Execution denied by hook policy".to_string() + } else { + deny_reason.clone() + }, tool_calls: vec![tc.clone()], trajectory_id: traj_id, ..Default::default() }; - let _ = step_tx_clone.send(Ok(denied_step)); + let _ = step_tx_clone.send(crate::step_extract::StepEvent::Step(Box::new(denied_step))); let resp = ToolResponse { id: tool_call.id.clone(), response_json: Some("{\"error\": \"Execution denied by hook policy\"}".to_string()), + error_message: None, supplemental_media: Vec::new(), - response: None, }; let input_event = InputEvent { event: Some(crate::proto::localharness::input_event::Event::ToolResponse(resp)), @@ -786,6 +1048,8 @@ impl WasmConnectionStrategy { name: tc.name.clone(), result: None, error: None, + server_name: None, + exception: None, }; if let Some(ref runner) = tool_runner { @@ -799,12 +1063,12 @@ impl WasmConnectionStrategy { } if let (Some(err_str), Some(runner)) = (result.error.as_ref(), hook_runner.as_ref()) { - if let Ok((res, val)) = runner.dispatch_on_tool_error(&anyhow!(err_str.clone())).await { - let allow_error = res.allow; - if allow_error { - result.result = val; - result.error = None; - } + // The hook may reword the failure. It may not + // turn it into a success: clearing the error + // reported a tool that had failed to the model + // as having worked (H4). + if let Some(message) = runner.dispatch_on_tool_error(&anyhow!(err_str.clone())).await { + result.error = Some(message); } } else if let Some(runner) = hook_runner.as_ref() { let _ = runner.dispatch_post_tool_call(&result).await; @@ -830,31 +1094,14 @@ impl WasmConnectionStrategy { name: tc.name.clone(), args: result_args, canonical_path: None, + server_name: None, }], trajectory_id: traj_id, ..Default::default() }; - let _ = step_tx_clone.send(Ok(done_step)); + let _ = step_tx_clone.send(crate::step_extract::StepEvent::Step(Box::new(done_step))); - // Wrap non-object values under "result" - let resp_json = if let Some(ref val) = result.result { - if val.is_object() { - serde_json::to_string(val).unwrap_or_default() - } else { - serde_json::to_string(&serde_json::json!({ "result": val })).unwrap_or_default() - } - } else if let Some(ref err) = result.error { - serde_json::to_string(&serde_json::json!({ "error": err })).unwrap_or_default() - } else { - "{}".to_string() - }; - - let resp = ToolResponse { - id: tool_call.id.clone(), - response_json: Some(resp_json), - supplemental_media: Vec::new(), - response: None, - }; + let resp = crate::tool_wire::tool_response(tool_call.id.clone(), &result); let input_event = InputEvent { event: Some(crate::proto::localharness::input_event::Event::ToolResponse(resp)), }; @@ -884,11 +1131,27 @@ impl WasmConnectionStrategy { tokio::time::sleep(std::time::Duration::from_millis(10)).await; } Err(e) => { - let _ = step_tx.send(Err(anyhow!("WS read error: {e:?}"))); + let _ = step_tx.send(crate::step_extract::StepEvent::Error(anyhow!( + "WS read error: {e:?}" + ))); break; } } } + + // The socket is gone. If the turn had not reached idle, it died + // mid-turn: say so rather than ending the stream as though the turn + // had completed. There is no stderr to quote on this transport — + // the local one appends the harness's own last words here. + conn_socket_closed.store(true, Ordering::SeqCst); + if !conn_is_idle_for_close.load(Ordering::SeqCst) { + let _ = step_tx.send(crate::step_extract::StepEvent::Error(anyhow!( + "harness connection closed before the turn finished" + ))); + conn_is_idle_for_close.store(true, Ordering::SeqCst); + let _ = conn_idle_tx.send(true); + let _ = step_tx.send(crate::step_extract::StepEvent::Idle); + } }); // Hook runners dispatch session start @@ -904,9 +1167,15 @@ impl WasmConnectionStrategy { ws_tx, tool_runner: self.tool_runner.clone(), hook_runner: self.hook_runner.clone(), - parent_idle, - active_subagent_ids, step_trackers, + main_trajectory_id: conn_cascade_id, + cancel_requested, + steps_consumed: Arc::new(AtomicBool::new(false)), + idle_tx, + initial_history_tx, + session_end_tx, + socket_closed, + subagent_responses, }) } } @@ -918,13 +1187,57 @@ pub struct WasmConnection { conversation_id: String, learned_id: Arc>, is_idle: Arc, - step_rx: Arc>>>>, + step_rx: Arc>>>, ws_tx: mpsc::UnboundedSender, tool_runner: Option, hook_runner: Option, - parent_idle: Arc>, - active_subagent_ids: Arc>>, step_trackers: Arc>>, + /// The trajectory whose idle transitions end a turn. Learned from the first + /// `StepUpdate` of each turn and cleared by `send()`, mirroring upstream's + /// `reset_for_turn()` (`event_processor.py:379-386`). + main_trajectory_id: Arc>>, + /// Set by [`Connection::send_halt_request`], cleared by the next `send()` + /// or by the idle transition that consumes it. See the field of the same + /// name on `LocalConnection` for why it is needed. + cancel_requested: Arc, + /// Whether a `receive_steps()` stream is currently live. See that method. + steps_consumed: Arc, + /// Mirrors `is_idle` for [`Connection::wait_for_idle`]. + idle_tx: tokio::sync::watch::Sender, + /// The handshake reply's replayed history, published by the reader. + initial_history_tx: tokio::sync::watch::Sender>>, + /// Set when the harness answers `session_end_request`. + session_end_tx: tokio::sync::watch::Sender, + /// Set once the websocket reader has seen the socket close. + socket_closed: Arc, + /// Last model text per subagent trajectory; see the capture site in the + /// reader loop. Cleared per turn. + subagent_responses: Arc>>, +} + +impl WasmConnection { + /// Steps the harness replayed when the conversation was resumed. + /// + /// Waits for the handshake reply, which arrives on the reader task rather + /// than being read inline: this transport shares one socket and has no + /// split stream to read from before the reader starts. Returns empty on + /// timeout, which is what a pre-0.1.4 harness produces — it never answers. + pub async fn initial_history(&self) -> Vec { + let mut rx = self.initial_history_tx.subscribe(); + let already_here = rx.borrow_and_update().clone(); + if let Some(history) = already_here { + return history; + } + let waited = tokio::time::timeout( + std::time::Duration::from_secs(HANDSHAKE_TIMEOUT_SECONDS), + rx.wait_for(Option::is_some), + ) + .await; + match waited { + Ok(Ok(history)) => history.clone().unwrap_or_default(), + _ => Vec::new(), + } + } } impl Connection for WasmConnection { @@ -940,65 +1253,66 @@ impl Connection for WasmConnection { self.is_idle.load(Ordering::SeqCst) } + async fn wait_for_idle(&self) { + if self.is_idle() { + return; + } + // Watch rather than poll: the reader sets this the moment the harness + // reports idle, so a caller learns immediately instead of on the next + // tick of a sleep loop. + let mut rx = self.idle_tx.subscribe(); + let _ = rx.wait_for(|idle| *idle).await; + } + fn receive_steps(&self) -> BoxStream<'static, Result> { + // One consumer at a time. Two live streams share a single receiver, so + // each would take roughly half the steps and neither caller would see a + // complete turn — silently. Refusing is the only honest answer; the + // claim is released when the first stream is dropped, which is what + // makes the per-turn `receive_steps()` call still work. + let Some(claim) = crate::step_extract::ConsumerGuard::claim(&self.steps_consumed) else { + return stream::once(async { + Err(anyhow!( + "receive_steps() is single-consumer and a stream is already active; \ + drop it before subscribing again" + )) + }) + .boxed(); + }; let step_rx = self.step_rx.clone(); let is_idle = self.is_idle.clone(); - stream::unfold(false, move |mut checked_initial_idle| { + stream::unfold(claim, move |claim| { let step_rx = step_rx.clone(); let is_idle = is_idle.clone(); async move { - // If the connection is already idle on the first poll and the queue is empty, terminate. - if !checked_initial_idle { - checked_initial_idle = true; - let mut guard = step_rx.lock().await; - if guard - .as_mut() - .is_some_and(|rx| rx.is_empty() && is_idle.load(Ordering::SeqCst)) - { - return None; - } - } - loop { + // Head condition, upstream local_connection.py:339-341: the + // stream ends only when the connection is idle AND nothing + // is queued behind the idle event. Returning on the idle + // event itself drops every step queued after it. let mut guard = step_rx.lock().await; let Some(rx) = &mut *guard else { + drop(guard); return None; }; - match rx.try_recv() { - Ok(step_res) => match &step_res { - Ok(step) if step.id == "IDLE_SENTINEL" => { - if is_idle.load(Ordering::SeqCst) { - return None; - } - } - _ => { - return Some((step_res, checked_initial_idle)); - } - }, - Err(mpsc::error::TryRecvError::Empty) => { - drop(guard); - let mut guard2 = step_rx.lock().await; - let Some(rx2) = &mut *guard2 else { - return None; - }; - let step_res = rx2.recv().await; - drop(guard2); - match step_res { - Some(res) => match &res { - Ok(step) if step.id == "IDLE_SENTINEL" => { - if is_idle.load(Ordering::SeqCst) { - return None; - } - } - _ => { - return Some((res, checked_initial_idle)); - } - }, - None => return None, - } + if is_idle.load(Ordering::SeqCst) && rx.is_empty() { + drop(guard); + return None; + } + let received = rx.recv().await; + drop(guard); + + match received { + None => return None, + // Falls through to re-evaluate the head condition + // rather than ending the stream: more steps may already + // be queued behind the idle marker. + Some(crate::step_extract::StepEvent::Idle) => {} + Some(crate::step_extract::StepEvent::Step(step)) => { + return Some((Ok(*step), claim)); } - Err(mpsc::error::TryRecvError::Disconnected) => { - return None; + Some(crate::step_extract::StepEvent::Error(e)) => { + return Some((Err(e), claim)); } } } @@ -1008,14 +1322,26 @@ impl Connection for WasmConnection { } async fn send(&self, content: &str) -> Result<(), anyhow::Error> { + // Before any state is touched: a denied turn must leave the connection + // exactly as it was, not half-reset with a cleared trajectory. + crate::hook_dispatch::gate_turn(self.hook_runner.as_ref()).await?; + self.is_idle.store(false, Ordering::SeqCst); + let _ = self.idle_tx.send(false); + // A halt applies to the turn it interrupted. Leaving the flag set would + // make the *next* turn report itself cancelled the moment it went idle. + self.cancel_requested.store(false, Ordering::SeqCst); { - let mut p_idle = self.parent_idle.lock().await; - *p_idle = false; + // A new turn may run on a new trajectory; relearn it rather than + // judging this turn against the last one's (upstream + // reset_for_turn(), event_processor.py:379-386). + let mut main_id = self.main_trajectory_id.lock().await; + *main_id = None; } { - let mut active = self.active_subagent_ids.lock().await; - active.clear(); + // Last turn's subagent text must not be attributed to this turn's + // subagents (upstream clears the same map in send()). + self.subagent_responses.lock().await.clear(); } { let mut guard = self.step_rx.lock().await; @@ -1026,7 +1352,7 @@ impl Connection for WasmConnection { let input_event = InputEvent { event: Some(crate::proto::localharness::input_event::Event::UserInput( - content.to_string(), + crate::harness_config::sanitize_prompt(content), )), }; let raw_json = serde_json::to_string(&input_event)?; @@ -1034,6 +1360,38 @@ impl Connection for WasmConnection { Ok(()) } + async fn send_content(&self, content: &crate::types::Content) -> Result<(), anyhow::Error> { + crate::hook_dispatch::gate_turn(self.hook_runner.as_ref()).await?; + + self.is_idle.store(false, Ordering::SeqCst); + let _ = self.idle_tx.send(false); + self.cancel_requested.store(false, Ordering::SeqCst); + { + let mut main_id = self.main_trajectory_id.lock().await; + *main_id = None; + } + { + self.subagent_responses.lock().await.clear(); + } + { + let mut guard = self.step_rx.lock().await; + if let Some(rx) = &mut *guard { + while rx.try_recv().is_ok() {} + } + } + + let input_event = InputEvent { + event: Some( + crate::proto::localharness::input_event::Event::ComplexUserInput( + crate::harness_config::build_user_input_proto(content), + ), + ), + }; + let raw_json = serde_json::to_string(&input_event)?; + self.ws_tx.send(raw_json)?; + Ok(()) + } + async fn send_trigger_notification(&self, content: &str) -> Result<(), anyhow::Error> { let input_event = InputEvent { event: Some( @@ -1048,6 +1406,7 @@ impl Connection for WasmConnection { } async fn send_halt_request(&self) -> Result<(), anyhow::Error> { + self.cancel_requested.store(true, Ordering::SeqCst); let input_event = InputEvent { event: Some(crate::proto::localharness::input_event::Event::HaltRequest( true, @@ -1093,8 +1452,8 @@ impl Connection for WasmConnection { let resp = ToolResponse { id: Some(id.to_string()), response_json: Some(resp_json), + error_message: None, supplemental_media: Vec::new(), - response: None, }; let input_event = InputEvent { event: Some(crate::proto::localharness::input_event::Event::ToolResponse(resp)), @@ -1159,7 +1518,40 @@ impl Connection for WasmConnection { } async fn disconnect(&self) -> Result<(), anyhow::Error> { - // No explicit subprocess to kill in WASM connection. + // No subprocess to tear down on this transport, but the session-end + // hooks still have to run — upstream dispatches them from disconnect() + // (0.1.1 local_connection.py:686-690). + if let Some(ref runner) = self.hook_runner + && let Err(e) = runner.dispatch_session_end().await + { + tracing::error!("on_session_end hook failed: {e:?}"); + } + + // Tell the harness the session is over and wait for it to say it has + // flushed. Upstream sends this before closing stdin; skipping it meant + // shutdown raced the harness's own trajectory write (B7). + // Nothing to wait for once the socket is gone — a crashed harness will + // never answer, and blocking on it would add the full timeout to every + // teardown after a crash. + if !self.socket_closed.load(Ordering::SeqCst) { + let input_event = InputEvent { + event: Some( + crate::proto::localharness::input_event::Event::SessionEndRequest(true), + ), + }; + if let Ok(raw_json) = serde_json::to_string(&input_event) { + let _ = self.ws_tx.send(raw_json); + let mut rx = self.session_end_tx.subscribe(); + // Bounded: a harness that never answers must not hold shutdown + // open, and closing stdin below stops it regardless. + let _ = tokio::time::timeout( + std::time::Duration::from_secs(SESSION_END_TIMEOUT_SECONDS), + rx.wait_for(|acked| *acked), + ) + .await; + } + } + Ok(()) } } @@ -1178,6 +1570,8 @@ fn extract_tool_result(step_update: &StepUpdate) -> Option { name: tool_call.name, result, error, + server_name: None, + exception: None, }) } @@ -1277,17 +1671,16 @@ mod tests { assert_eq!(tc.id, "traj_1_2"); assert_eq!(tc.name, "RUN_COMMAND"); assert_eq!(tc.canonical_path, None); - // The execution-result fields are always present, `null` until the - // harness reports them. This assertion previously omitted them: the - // wasm extractor was a stale fork of the native one, and the two are - // now a single implementation in `crate::step_extract`. + // Arguments only. `combined_output` and `exit_code` are results and + // were carried here for a while: a `pre_tool_call` predicate reading + // them saw them null, because the command has not run, so a rule built + // on them silently allowed everything. They reach `post_tool_call` on + // the `ToolResult` instead. assert_eq!( tc.args, serde_json::json!({ "command_line": "echo hello", - "working_dir": "work_dir", - "combined_output": null, - "exit_code": null + "working_dir": "work_dir" }) ); @@ -1354,7 +1747,10 @@ mod tests { assert_eq!( tc.args, serde_json::json!({ - "file_path": "edit_path" + "file_path": "edit_path", + // The edit itself, so a policy predicate can inspect the change + // and not just the path. + "diff_block": [] }) ); @@ -1403,6 +1799,7 @@ mod tests { trajectory_id: Some("traj_1".to_string()), step_index: Some(9), generate_image: Some(ActionGenerateImage { + aspect_ratio: None, prompt: Some("a gold dragon logo".to_string()), image_paths: vec!["/tmp/dragon.png".to_string()], image_name: Some("dragon_logo".to_string()), @@ -1443,7 +1840,14 @@ mod tests { let text = msg.to_text().unwrap(); assert!(text.contains("InitializeConversationEvent") || text.contains("cascadeId")); - // 2. Send trajectoryStateUpdate (RUNNING) + // 2. Wait for the client's prompt. The connection starts idle + // (C2), so the turn only begins once something is sent — the same + // send()-then-receive order every real caller uses. + let msg2 = ws_stream.next().await.unwrap().unwrap(); + let text2 = msg2.to_text().unwrap(); + assert!(text2.contains("hello")); + + // 3. Send trajectoryStateUpdate (RUNNING) let traj_running = serde_json::json!({ "trajectoryStateUpdate": { "trajectoryId": "test_traj", @@ -1455,7 +1859,7 @@ mod tests { .await .unwrap(); - // 3. Send StepUpdate + // 4. Send StepUpdate let step_update = serde_json::json!({ "stepUpdate": { "stepIndex": 1, @@ -1473,11 +1877,13 @@ mod tests { .await .unwrap(); - // 4. Send trajectoryStateUpdate (IDLE) + // 5. Send trajectoryStateUpdate (IDLE) let traj_idle = serde_json::json!({ "trajectoryStateUpdate": { "trajectoryId": "test_traj", - "state": "STATE_IDLE" + // Renamed from STATE_IDLE upstream in 0.1.9; protojson + // matches on the value name, not the number. + "state": "STATE_FULLY_IDLE" } }); ws_stream @@ -1485,13 +1891,21 @@ mod tests { .await .unwrap(); - // 5. Wait for the client to send "hello" - let msg2 = ws_stream.next().await.unwrap().unwrap(); - let text2 = msg2.to_text().unwrap(); - assert!(text2.contains("hello")); - - // Keep connection open long enough - tokio::time::sleep(std::time::Duration::from_millis(50)).await; + // Stay up until the client goes away, rather than sleeping a fixed + // 50ms and hoping. The client's teardown now includes a session-end + // handshake, and a fixed sleep made this test flaky under load — + // it failed once in a full run and passed in isolation. + while let Some(msg) = ws_stream.next().await { + let Ok(WsMessage::Text(text)) = msg else { + break; + }; + if text.contains("sessionEndRequest") { + let ack = serde_json::json!({ "sessionEndResponse": true }); + let _ = ws_stream.send(WsMessage::Text(ack.to_string())).await; + // The session is over by definition; nothing follows it. + break; + } + } }); // Configure host/port via static atomic variable (safe, no unsafe_code) @@ -1510,12 +1924,21 @@ mod tests { tool_runner: None, hook_runner: None, conversation_id: "test_traj".to_string(), + mcp_servers: Vec::new(), + subagents: Vec::new(), + retry_config: None, + tool_output_truncation: None, }; // Connect let conn = strategy.connect().await.unwrap(); assert_eq!(conn.conversation_id(), "test_traj"); + // Send first: the connection starts idle, so subscribing before a + // prompt yields an empty stream rather than blocking on a turn that was + // never started. + conn.send("hello").await.unwrap(); + // Consume the step stream let mut steps = conn.receive_steps(); let step = steps.next().await.unwrap().unwrap(); @@ -1526,10 +1949,11 @@ mod tests { let next_step = steps.next().await; assert!(next_step.is_none()); - // Send a message - conn.send("hello").await.unwrap(); - // Join the server task - server_handle.await.unwrap(); + // Close the connection so the server task's read loop ends, then join + // it. Dropping the connection is what a real caller's teardown does. + conn.disconnect().await.unwrap(); + drop(conn); + let _ = tokio::time::timeout(std::time::Duration::from_secs(5), server_handle).await; } } diff --git a/tests/documentation_examples.rs b/tests/documentation_examples.rs index f1a1254..93af24b 100644 --- a/tests/documentation_examples.rs +++ b/tests/documentation_examples.rs @@ -41,6 +41,7 @@ async fn test_advanced_conversation_example() -> Result<(), anyhow::Error> { Some(tool_runner), None, "my_conversation_id".to_string(), + None, // session_continuation_mode vec![], ); diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs index 32ce387..9d2b39a 100644 --- a/tests/integration_tests.rs +++ b/tests/integration_tests.rs @@ -47,7 +47,7 @@ async fn test_agent_chat_integration() { }; config.policies = Some(vec![policy::allow_all()]); - config.conversation_id = Some("test_conv_123".to_string()); + config.conversation_id = Some("test-conv-0123456789abcdef0123456789".to_string()); config.workspaces = Some(vec![ std::env::current_dir() .unwrap() @@ -77,7 +77,10 @@ async fn test_agent_chat_integration() { // 4. Verify conversation metadata let conversation = agent.conversation(); - assert_eq!(conversation.conversation_id(), "test_conv_123"); + assert_eq!( + conversation.conversation_id(), + "test-conv-0123456789abcdef0123456789" + ); // 5. Stop agent agent.stop().await.expect("Failed to stop agent"); @@ -218,7 +221,7 @@ async fn test_agent_terminal_error_propagation() { }; config.policies = Some(vec![policy::allow_all()]); - config.conversation_id = Some("test_conv_err".to_string()); + config.conversation_id = Some("test-conv-err-0123456789abcdef0123".to_string()); let agent = Agent::new(config); let agent = agent.start().await.expect("Failed to start agent"); @@ -231,3 +234,346 @@ async fn test_agent_terminal_error_propagation() { agent.stop().await.expect("Failed to stop agent"); } + +/// End-to-end proof that the workspace sandbox is wired, not merely composed. +/// +/// The unit tests in `src/agent.rs` show `compose_policies` produces the right +/// policy list. They cannot show that the resulting enforcer is registered on +/// the hook runner and consulted when the harness asks to run a tool. This +/// drives a real `tool_confirmation_request` through the mock and reads back +/// the `accepted` flag the SDK returns, which *is* the policy decision. +/// +/// Covers the confirmation path only — the sole pre-tool gate the 0.1.1 wire +/// has. Gating built-ins without a confirmation request needs the harness-side +/// hook channel (WP-8). +async fn confirmation_decision_for(path: &str) -> String { + let mut config = AgentConfig::default(); + config.binary_path = Some( + std::env::var("CARGO_BIN_EXE_mock_localharness") + .expect("CARGO_BIN_EXE_mock_localharness not set — run via `cargo test`"), + ); + config.gemini_config = GeminiConfig { + api_key: Some("test_api_key".to_string()), + ..Default::default() + }; + config.capabilities = CapabilitiesConfig { + enabled_tools: Some(vec![BuiltinTools::ViewFile]), + ..Default::default() + }; + // allow_all() used to switch the workspace sandbox off entirely. It must + // not any more — that is the regression this asserts end to end. + config.policies = Some(vec![policy::allow_all()]); + config.workspaces = Some(vec![ + std::env::current_dir() + .unwrap() + .to_string_lossy() + .into_owned(), + ]); + + let agent = Agent::new(config) + .start() + .await + .expect("Failed to start agent"); + let response = agent + .chat(&format!("trigger_tool_confirmation:{path}")) + .await + .expect("chat failed"); + agent.stop().await.expect("Failed to stop agent"); + response.text +} + +#[tokio::test] +async fn test_workspace_policy_denies_path_outside_workspace() { + let decision = confirmation_decision_for("/etc/passwd").await; + assert!( + decision.contains("accepted=false"), + "a file outside the workspace must be denied, got: {decision}" + ); +} + +#[tokio::test] +async fn test_workspace_policy_allows_path_inside_workspace() { + let inside = std::env::current_dir().unwrap().join("Cargo.toml"); + let decision = confirmation_decision_for(&inside.to_string_lossy()).await; + assert!( + decision.contains("accepted=true"), + "a file inside the workspace must be allowed, got: {decision}" + ); +} + +/// The traversal escape, end to end. `Path::starts_with` reported this as +/// inside the workspace, so `view_file` on /etc/passwd was confirmed. +#[tokio::test] +async fn test_workspace_policy_denies_parent_traversal() { + let escape = std::env::current_dir() + .unwrap() + .join("../../etc/passwd") + .to_string_lossy() + .into_owned(); + let decision = confirmation_decision_for(&escape).await; + assert!( + decision.contains("accepted=false"), + "a `..` escape must be denied, got: {decision}" + ); +} + +/// A caller-initiated halt must be distinguishable from a turn that simply +/// finished (A3). The harness answers a halt with a plain `STATE_FULLY_IDLE`, +/// so without the client-side flag the stream would just end normally. +#[tokio::test] +async fn test_cancel_surfaces_cancelled_error() { + use futures_util::StreamExt; + + let mut config = AgentConfig::default(); + config.binary_path = Some( + std::env::var("CARGO_BIN_EXE_mock_localharness") + .expect("CARGO_BIN_EXE_mock_localharness not set — run via `cargo test`"), + ); + config.gemini_config = GeminiConfig { + api_key: Some("test_api_key".to_string()), + ..Default::default() + }; + config.policies = Some(vec![policy::allow_all()]); + config.conversation_id = Some("test-conv-cancel-0123456789abcdef".to_string()); + + let agent = Agent::new(config).start().await.expect("start"); + let conversation = agent.conversation(); + + conversation.send("trigger_cancel").await.expect("send"); + + let mut stream = conversation.receive_steps(); + // The mock emits one step before stalling; draining it proves the turn is + // under way, so the halt below lands mid-turn rather than before it starts. + let first = stream.next().await.expect("a step").expect("not an error"); + assert_eq!(first.content, "Working..."); + + conversation.cancel().await.expect("cancel"); + + let mut saw_cancelled = false; + while let Some(item) = stream.next().await { + if let Err(e) = item { + saw_cancelled = e + .downcast_ref::() + .is_some_and(|e| { + matches!( + e, + antigravity_sdk_rust::error::AntigravityError::Cancelled(_) + ) + }); + if saw_cancelled { + break; + } + } + } + assert!(saw_cancelled, "cancelled turn ended as if it had completed"); + + agent.stop().await.expect("stop"); +} + +/// A harness that dies mid-turn must surface an error carrying what it printed +/// on the way out, not end the step stream as though the turn had completed +/// (`harness-crash-diagnostics`). +#[tokio::test] +async fn test_harness_crash_surfaces_stderr_tail() { + use futures_util::StreamExt; + + let mut config = AgentConfig::default(); + config.binary_path = Some( + std::env::var("CARGO_BIN_EXE_mock_localharness") + .expect("CARGO_BIN_EXE_mock_localharness not set — run via `cargo test`"), + ); + config.gemini_config = GeminiConfig { + api_key: Some("test_api_key".to_string()), + ..Default::default() + }; + config.policies = Some(vec![policy::allow_all()]); + config.conversation_id = Some("test-conv-crash-0123456789abcdef0".to_string()); + + let agent = Agent::new(config).start().await.expect("start"); + let conversation = agent.conversation(); + conversation.send("trigger_crash").await.expect("send"); + + let mut stream = conversation.receive_steps(); + let mut errors = Vec::new(); + while let Some(item) = stream.next().await { + if let Err(e) = item { + errors.push(e.to_string()); + } + } + + let joined = errors.join("\n"); + assert!( + joined.contains("closed before the turn finished"), + "a crash ended the stream silently; saw: {joined}" + ); + assert!( + joined.contains("mock harness exploded"), + "the crash was reported without the harness's own diagnostics; saw: {joined}" + ); +} + +/// A subagent finishing is how a `START_SUBAGENT` call completes — the harness +/// sends no tool response for it. Before H12 a `post_tool_call` hook saw the +/// `pre_tool_call` and never a matching completion, so +/// `examples/subagents.rs`'s "Subagent Finished" branch never fired. +#[tokio::test] +async fn test_post_tool_call_fires_on_subagent_completion() { + use antigravity_sdk_rust::hooks::Hook; + use antigravity_sdk_rust::types::ToolResult; + use futures_util::StreamExt; + use std::sync::{Arc, Mutex}; + + struct CaptureHook(Arc>>); + + impl Hook for CaptureHook { + async fn post_tool_call( + &self, + result: &ToolResult, + _context: &antigravity_sdk_rust::context::HookContext, + ) -> Result<(), anyhow::Error> { + self.0.lock().expect("lock").push(result.clone()); + Ok(()) + } + } + + let captured = Arc::new(Mutex::new(Vec::new())); + + let mut config = AgentConfig::default(); + config.binary_path = Some( + std::env::var("CARGO_BIN_EXE_mock_localharness") + .expect("CARGO_BIN_EXE_mock_localharness not set — run via `cargo test`"), + ); + config.gemini_config = GeminiConfig { + api_key: Some("test_api_key".to_string()), + ..Default::default() + }; + config.policies = Some(vec![policy::allow_all()]); + config.conversation_id = Some("test-conv-subagent-0123456789abc".to_string()); + config.hooks = vec![Arc::new(CaptureHook(captured.clone()))]; + + let agent = Agent::new(config).start().await.expect("start"); + let conversation = agent.conversation(); + conversation.send("trigger_subagent").await.expect("send"); + + let mut stream = conversation.receive_steps(); + while stream.next().await.is_some() {} + + // The dispatch is spawned, so give it a moment to land rather than racing it. + for _ in 0..50 { + if !captured.lock().expect("lock").is_empty() { + break; + } + tokio::time::sleep(std::time::Duration::from_millis(20)).await; + } + + let results = captured.lock().expect("lock").clone(); + let subagent = results + .iter() + .find(|r| r.name == "START_SUBAGENT") + .expect("no post_tool_call for the finished subagent"); + assert_eq!( + subagent.result, + Some(serde_json::json!("Here is a poem about nature.")), + "the completion should carry what the subagent produced" + ); + + agent.stop().await.expect("stop"); +} + +/// `post_turn` was defined and dispatched from nowhere (H1b). It fires at the +/// terminal user-facing model step, carrying that step's text. +#[tokio::test] +async fn test_post_turn_fires_with_the_final_text() { + use antigravity_sdk_rust::hooks::Hook; + use futures_util::StreamExt; + use std::sync::{Arc, Mutex}; + + struct CaptureTurn(Arc>>); + + impl Hook for CaptureTurn { + async fn post_turn( + &self, + response: &str, + _context: &antigravity_sdk_rust::context::HookContext, + ) -> Result<(), anyhow::Error> { + self.0.lock().expect("lock").push(response.to_string()); + Ok(()) + } + } + + let seen = Arc::new(Mutex::new(Vec::new())); + + let mut config = AgentConfig::default(); + config.binary_path = Some( + std::env::var("CARGO_BIN_EXE_mock_localharness") + .expect("CARGO_BIN_EXE_mock_localharness not set — run via `cargo test`"), + ); + config.gemini_config = GeminiConfig { + api_key: Some("test_api_key".to_string()), + ..Default::default() + }; + config.policies = Some(vec![policy::allow_all()]); + config.conversation_id = Some("test-conv-postturn-0123456789abc".to_string()); + config.hooks = vec![Arc::new(CaptureTurn(seen.clone()))]; + + let agent = Agent::new(config).start().await.expect("start"); + let conversation = agent.conversation(); + conversation.send("hello").await.expect("send"); + + let mut stream = conversation.receive_steps(); + while stream.next().await.is_some() {} + + // Dispatch is spawned; give it a moment rather than racing it. + for _ in 0..50 { + if !seen.lock().expect("lock").is_empty() { + break; + } + tokio::time::sleep(std::time::Duration::from_millis(20)).await; + } + + let texts = seen.lock().expect("lock").clone(); + assert!( + texts + .iter() + .any(|t| t.contains("How can I help you today?")), + "post_turn never fired with the turn's final text; saw {texts:?}" + ); + + agent.stop().await.expect("stop"); +} + +/// The harness blocks its turn until a `CallHookResponse` comes back. Before +/// the router existed this arm only logged a warning, so a harness that sent +/// one would have stalled — which is why `enabled_hooks` could not be emitted. +#[tokio::test] +async fn test_harness_hook_request_is_answered() { + let mut config = AgentConfig::default(); + config.binary_path = Some( + std::env::var("CARGO_BIN_EXE_mock_localharness") + .expect("CARGO_BIN_EXE_mock_localharness not set — run via `cargo test`"), + ); + config.gemini_config = GeminiConfig { + api_key: Some("test_api_key".to_string()), + ..Default::default() + }; + // A policy the router must consult: RUN_COMMAND is denied. + config.policies = Some(vec![policy::deny("RUN_COMMAND"), policy::allow_all()]); + config.conversation_id = Some("test-conv-hookreq-0123456789abcd".to_string()); + + let agent = Agent::new(config).start().await.expect("start"); + let response = tokio::time::timeout( + std::time::Duration::from_secs(20), + agent.chat("trigger_hook_request"), + ) + .await + .expect("the harness stalled waiting for a CallHookResponse") + .expect("chat failed"); + + assert!( + response.text.contains("decision=DENY"), + "the router did not consult the policy; saw {:?}", + response.text + ); + + agent.stop().await.expect("stop"); +}