| [package] | |
| name = "seb_reasoning" | |
| version = "1.0.0" | |
| edition = "2021" | |
| description = "L6 Agent-to-Agent Reasoning Protocol for SEB" | |
| authors = ["SnapKitty <SNAPKITTYWEST>"] | |
| license = "Apache-2.0" | |
| [dependencies] | |
| tokio = { version = "1.35", features = ["full"] } | |
| serde = { version = "1.0", features = ["derive"] } | |
| serde_json = "1.0" | |
| blake3 = "1.5" | |
| chrono = { version = "0.4", features = ["serde"] } | |
| uuid = { version = "1.6", features = ["v4", "serde"] } | |
| tracing = "0.1" | |
| tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] } | |
| bytes = "1.5" | |
| async-trait = "0.1" | |
| futures = "0.3" | |
| nom = "7.1" | |
| linked-hash-map = "0.5" | |
| [dev-dependencies] | |
| tokio-test = "0.4" | |
| proptest = "1.4" | |
| tempfile = "3.8" | |
| [lib] | |
| name = "seb_reasoning" | |
| path = "src/lib.rs" | |