jules-macros 0.1.1

Procedural macros for Jules-SDK
Documentation
  • Coverage
  • 100%
    2 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 4.52 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 119.62 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 1s Average build duration of successful builds.
  • all releases: 1s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • ArtisanXL/jules-sdk
    1 1 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • ArtisanXL

jules-macros

Procedural macros for Jules-SDK.

Crates.io Docs.rs License

This crate is an internal implementation detail of jules-sdk. Users should never depend on jules-macros directly — access it through jules-sdk's re-exports.

Status: not yet functional

This crate is scaffolding for future proc-macro support (builder derives, tool-definition derives, request/response validation). None of that exists yet. Today it exports exactly one macro:

use jules_macros::Placeholder;

#[derive(Placeholder)]
struct Anything;

#[derive(Placeholder)] is a no-op — it generates no code and exists only to prove the proc-macro crate wiring (crate type, workspace dependency, re-export through jules-sdk) works end-to-end. Its builder, derive, tool, and validation internal modules are currently empty stubs.

Do not build against this crate expecting derive macros for sessions, tools, or validation — check PROJECT_STATE.md and ROADMAP.md for when real macros land.

Installation

[dependencies]
jules-macros = "0.1"

In practice you get this transitively through jules-sdk, which re-exports Placeholder.

More

License

Dual-licensed under MIT or Apache-2.0, at your option.