History log of /tonic/.gitignore (Results 1 – 6 of 6)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: v0.12.3
# c97c6258 05-Sep-2024 tottoto <[email protected]>

Revert "chore(Dev): ignore .idea directory that Intellij IDEs add automatical…" (#1907)

This reverts commit a635c801793c19db1a7bbfdbcbb75c8e7e11e60f.


# a635c801 30-Aug-2024 Zak Henry <[email protected]>

chore(Dev): ignore .idea directory that Intellij IDEs add automatically (#1903)

Co-authored-by: Zak Henry <[email protected]>


Revision tags: v0.12.2, v0.12.1, v0.12.0, v0.11.0, v0.10.2, v0.10.1, v0.10.0, v0.9.2, v0.9.1, v0.9.0, v0.8.4, v0.8.3, v0.8.2, v0.8.1, v0.8.0, v0.7.2, v0.7.1, v0.7.0, v0.6.2, v0.6.1, v0.6.0, v0.5.2, v0.5.1, v0.5.0, v0.4.3, v0.4.2, v0.4.1, v0.4.0, v0.3.1, v0.3.0, v0.2.1, v0.2.0, v0.1.1, v0.1.0, v0.1.0-beta.1, v0.1.0-alpha.5, v0.1.0-alpha.4
# 62101039 18-Oct-2019 Phillip Cloud <[email protected]>

Add rustfmt.toml with edition=2018 (#74)

* Ignore all target/ directories

* Add rustfmt.toml with an edition


Revision tags: v0.1.0-alpha.3
# 8ecfd2fc 09-Oct-2019 Phillip Cloud <[email protected]>

chore(transport): Bump hyper and http-body versions (#64)


# 06ff6199 08-Oct-2019 Adam Jacob <[email protected]>

feat(build): Expose prost-build type_attributes and field_attribu… (#60)

* chore: Add tags to .gitignore

When generating ctags/universal-ctags, a 'tags' file is generated. This
commit adds any g

feat(build): Expose prost-build type_attributes and field_attribu… (#60)

* chore: Add tags to .gitignore

When generating ctags/universal-ctags, a 'tags' file is generated. This
commit adds any generted 'tags' file to .gitignore.

* feat(build): Expose type_attribute and field_attribute

This commit exposes the `type_attribute` and `field_attribute`
configuration settings from Prost. These are useful to tweak/extend the
generated types.

For example:

```
tonic_build::configure()
.out_dir(tmp)
.format(false)
.type_attribute(".", "#[derive(Serialize, Deserialize)]")
.type_attribute(".", "#[serde(rename_all = \"camelCase\")]")
.field_attribute("in", "#[serde(rename = \"in\")]")
.compile(&["tests/protos/wellknown.proto"], &["tests/protos"])
.unwrap();
```

Would add the serde `Serialize` and `Deserialize` traits, while renaming
all the fields to camelCase, and having serde keep fields named `in`
named `in`, rather than Prost's `in_`, to every type generated by Prost.

show more ...


Revision tags: v0.1.0-alpha.2
# b827fdd9 09-Aug-2019 Lucio Franco <[email protected]>

Inital commit