vendor: update cargo-cxai-test-crate-0.1.0

This commit is contained in:
cx-git-agent
2026-04-26 16:48:15 +00:00
committed by GitHub
parent 04a1414a28
commit e2b6f75a1b
5 changed files with 55 additions and 3 deletions
Generated
+7
View File
@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "cxai-test-crate"
version = "0.1.0"
+28
View File
@@ -0,0 +1,28 @@
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2024"
name = "cxai-test-crate"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Test crate for CxAI Cargo registry"
readme = false
license = "MIT"
[lib]
name = "cxai_test_crate"
path = "src/lib.rs"
+6
View File
@@ -0,0 +1,6 @@
[package]
name = "cxai-test-crate"
version = "0.1.0"
edition = "2024"
description = "Test crate for CxAI Cargo registry"
license = "MIT"
-3
View File
@@ -1,3 +0,0 @@
# cargo-cxai-test-crate-0.1.0
Cargo crate: cxai-test-crate-0.1.0
+14
View File
@@ -0,0 +1,14 @@
pub fn add(left: u64, right: u64) -> u64 {
left + right
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}