compose_parser 2.1.0

Rust parser created to parse the Jetpack Compose Text and Images
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
format:
	cargo fmt && cargo clippy

PUBLISH_MESSAGE := "update"

publish:
	git add . && git commit -m $(PUBLISH_MESSAGE) && git push origin && cargo publish

test:
	cargo test

docs:
	cargo doc --no-deps --open