-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
30 lines (28 loc) · 1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[workspace]
members = ["shapely", "shapely-core", "shapely-derive", "shapely-json", "shapely-msgpack", "shapely-pretty", "shapely-urlencoded", "shapely-yaml"]
resolver = "3"
[workspace.package]
version = "3.0.0"
authors = ["Amos Wenger <[email protected]>"]
edition = "2024"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bearcove/shapely"
homepage = "https://github.com/bearcove/shapely"
documentation = "https://docs.rs/shapely"
description = "One trait for reflection, serialization, deserialization"
keywords = [
"serialization",
"deserialization",
"reflection",
"schema",
"validation",
]
categories = ["encoding", "parsing", "development-tools", "data-structures"]
[workspace.dependencies]
shapely = { version = "3.0.0", path = "shapely" }
shapely-core = { version = "3.0.0", path = "shapely-core" }
shapely-derive = { version = "3.0.0", path = "shapely-derive" }
shapely-pretty = { version = "3.0.0", path = "shapely-pretty" }
unsynn = "0.0.25"
form_urlencoded = "1.2.1"