forked from mirrors/jj
1633eccdca
The VS Code "Better TOML" plugin (which I think most of our VS Code developers use?) doesn't support the `x.y = z` syntax at the top level, even though it's valid TOML. This is also useful if we ever want to add additional properties in different sub-crates (although unlikely for the near future).
11 lines
266 B
TOML
11 lines
266 B
TOML
[package]
|
|
name = "gen-protos"
|
|
description = "Generate Protocol Buffers definitions for the jj-lib crate"
|
|
publish = false
|
|
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[dependencies]
|
|
prost-build = { workspace = true }
|