├── .clippy.toml ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── examples ├── README.md ├── cli.rs └── ingest-hn.rs ├── rust-toolchain ├── shell.nix ├── src ├── annotations.rs ├── annotations │ ├── client.rs │ ├── model.rs │ ├── requests.rs │ └── tests.rs ├── client.rs ├── datasets.rs ├── datasets │ ├── client.rs │ ├── model.rs │ └── model │ │ └── table.rs ├── error.rs ├── http.rs ├── lib.rs ├── limits.rs ├── serde.rs ├── users.rs └── users │ ├── client.rs │ └── model.rs └── tests ├── cursor.rs └── datasets.rs /.clippy.toml: -------------------------------------------------------------------------------- 1 | msrv = "1.60.0" -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/examples/cli.rs -------------------------------------------------------------------------------- /examples/ingest-hn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/examples/ingest-hn.rs -------------------------------------------------------------------------------- /rust-toolchain: -------------------------------------------------------------------------------- 1 | stable -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/shell.nix -------------------------------------------------------------------------------- /src/annotations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/annotations.rs -------------------------------------------------------------------------------- /src/annotations/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/annotations/client.rs -------------------------------------------------------------------------------- /src/annotations/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/annotations/model.rs -------------------------------------------------------------------------------- /src/annotations/requests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/annotations/requests.rs -------------------------------------------------------------------------------- /src/annotations/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/annotations/tests.rs -------------------------------------------------------------------------------- /src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/client.rs -------------------------------------------------------------------------------- /src/datasets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/datasets.rs -------------------------------------------------------------------------------- /src/datasets/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/datasets/client.rs -------------------------------------------------------------------------------- /src/datasets/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/datasets/model.rs -------------------------------------------------------------------------------- /src/datasets/model/table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/datasets/model/table.rs -------------------------------------------------------------------------------- /src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/error.rs -------------------------------------------------------------------------------- /src/http.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/http.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/limits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/limits.rs -------------------------------------------------------------------------------- /src/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/serde.rs -------------------------------------------------------------------------------- /src/users.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/users.rs -------------------------------------------------------------------------------- /src/users/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/users/client.rs -------------------------------------------------------------------------------- /src/users/model.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/src/users/model.rs -------------------------------------------------------------------------------- /tests/cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/tests/cursor.rs -------------------------------------------------------------------------------- /tests/datasets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiomhq/axiom-rs/HEAD/tests/datasets.rs --------------------------------------------------------------------------------