Skip to content

Commit 2d80a35

Browse files
committed
editoast: add editoast_schemas lib
1 parent 68e0e84 commit 2d80a35

File tree

4 files changed

+25
-1
lines changed

4 files changed

+25
-1
lines changed

editoast/Cargo.lock

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

editoast/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "LGPL-3.0"
66

77
[workspace]
8-
members = [".", "editoast_derive", "editoast_common"]
8+
members = [".", "editoast_derive", "editoast_common", "editoast_schemas"]
99

1010
[workspace.dependencies]
1111
rangemap = "1.4.0"
@@ -65,6 +65,7 @@ strum_macros = "0.25.3"
6565
thiserror = "1.0.58"
6666
enum-map = "2.7.3"
6767
editoast_derive = { path = "./editoast_derive" }
68+
editoast_schemas = { path = "./editoast_schemas" }
6869
editoast_common = { path = "./editoast_common" }
6970
mvt = "0.9.0"
7071
futures = "0.3.30"

editoast/editoast_schemas/Cargo.toml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[package]
2+
name = "editoast_schemas"
3+
version = "0.1.0"
4+
edition = "2021"
5+
license = "LGPL-3.0"
6+
7+
[dependencies]
8+
serde.workspace = true
9+
serde_derive.workspace = true
10+
serde_json.workspace = true
11+
utoipa.workspace = true

editoast/editoast_schemas/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// TODO add all the schemas

0 commit comments

Comments
 (0)