smithy-bindgen 0.2.0

macros for binding codegeneration from smithy files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# weld/smithy-bindgen/Makefile

all: build

build clean update:
	cargo $@

release:
	cargo build --release

test::
	cargo test --all-features --all-targets -- --nocapture

rust-check::
	cargo clippy --all-features --all-targets
	rustfmt --edition 2021 --check src/*.rs

.PHONY: all build release clean lint validate test update rust-check