61 releases (22 stable)
4.5.0 | Sep 18, 2024 |
---|---|
4.3.0 | Jun 25, 2024 |
3.6.6 | Apr 10, 2024 |
3.6.5 | Feb 15, 2024 |
0.2.4 | Feb 11, 2019 |
#28 in Build Utils
705 downloads per month
Used in conjure-runtime
765KB
22K
SLoC
Conjure-Rust
Conjure support for Rust.
conjure-rust
conjure-rust
is an RFC 002-compliant CLI, which can
be used via a build tool like gradle-conjure, or manually:
USAGE:
conjure-rust generate [OPTIONS] <inputJson> <outputDirectory>
ARGS:
<inputJson> Path to a JSON-formatted Conjure IR file
<outputDirectory> Directory to place generated code
OPTIONS:
--exhaustive Generate exhaustively matchable enums and unions
--useStagedBuilders Generate compile-time safe builders to ensure all required
attributes are set
--stripPrefix <prefix> Strip a prefix from types's package paths
--productName <name> The name of the generated crate
--productVersion <version> The version of the generated crate
-h, --help Print help information
conjure-codegen
conjure-codegen
is the library which turns a Conjure IR file into Rust code. It powers the conjure-rust
CLI, but
can also be used on its own in e.g. build scripts as an alternative approach. See its documentation for more details, as
well as examples of generated code.
conjure-error
conjure-error
is the runtime support library that the errors generated by conjure-codegen
depend on. It defines
various standard error types and functionality to serialize and deserialize errors.
conjure-http
conjure-http
is the runtime support library that the service clients and resources generated by conjure-codegen
depend on. It defines interfaces used by the underlying client and server implementations.
conjure-object
conjure-object
is the runtime support library that the objects generated by conjure-codegen
depend on. It reexports
the various third party types that correspond to Conjure primitives.
conjure-serde
conjure-serde
provides wrapper types for serde Serializer
s and Deserializer
s which adjust behavior to match
Conjure's expectations around binary data, non-finite floating point values, and unknown fields.
Dependencies
~7–14MB
~176K SLoC