ae2e07e626
- Python: pyproject.toml, pytest suite (unit + integration), README, examples - JavaScript: package.json, TypeScript definitions, node:test suite, README, examples - Nim: integration tests, examples, README, improved nimble tasks - Rust: fixed nodelay/localhost IPv6 bug, integration tests, examples, README - Added GitHub Actions CI for all 4 clients against Docker server - Added docker-compose.test.yml for local integration testing - Added .gitignore for each client
22 lines
555 B
TOML
22 lines
555 B
TOML
[package]
|
|
name = "baradb"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
authors = ["BaraDB Team <team@baradb.dev>"]
|
|
description = "Official Rust client for BaraDB — binary protocol client"
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/barabadb/baradadb"
|
|
documentation = "https://docs.baradb.dev"
|
|
readme = "README.md"
|
|
keywords = ["database", "baradb", "multimodal", "client", "wire-protocol"]
|
|
categories = ["database", "network-programming"]
|
|
rust-version = "1.70"
|
|
|
|
[dependencies]
|
|
|
|
[dev-dependencies]
|
|
|
|
[[example]]
|
|
name = "basic"
|
|
path = "examples/basic.rs"
|