diff options
author | Jade Lovelace <lix@jade.fyi> | 2024-08-11 20:55:24 -0700 |
---|---|---|
committer | jade <lix@jade.fyi> | 2024-08-21 17:09:10 +0000 |
commit | dba615098d3d28fdb3339e244a4aec778d269e85 (patch) | |
tree | 9764c3e73c9aa818a7793b087382b7cc3999f4e0 /Cargo.toml | |
parent | e38410799b5b78b2fc2b0c9e4b1dc0dfc5801097 (diff) |
build: move to a Cargo workspace
This is purely to let Cargo's dependency resolver do stuff for us, we do
not actually intend to build this stuff with Cargo to begin with.
Change-Id: I4c08d55595c7c27b7096375022581e1e34308a87
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 000000000..79bcbe0dd --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[workspace] +resolver = "2" +members = ["src/lix-doc"] + +[workspace.package] +edition = "2021" |