forked from facet-rs/facet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (39 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
41 lines (39 loc) · 1.12 KB
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
31
32
33
34
35
36
37
38
39
40
41
[workspace]
members = [
"facet",
"facet-codegen",
"facet-derive",
"facet-json",
"facet-json-read",
"facet-json-write",
"facet-msgpack",
"facet-opaque",
"facet-peek",
"facet-poke",
"facet-pretty",
"facet-samplelibc",
"facet-spez",
"facet-trait",
"facet-types",
"facet-yaml",
"facet-urlencoded",
]
resolver = "3"
[workspace.package]
version = "0.1.2"
authors = ["Amos Wenger <amos@bearcove.eu>"]
edition = "2024"
rust-version = "1.86.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/facet-rs/facet"
[workspace.dependencies]
facet = { version = "0.1.6", path = "facet" }
facet-trait = { version = "0.2.2", path = "facet-trait" }
facet-derive = { version = "0.1.6", path = "facet-derive" }
facet-opaque = { version = "0.1.4", path = "facet-opaque" }
facet-peek = { version = "0.2.3", path = "facet-peek" }
facet-poke = { version = "0.2.1", path = "facet-poke" }
facet-spez = { version = "0.1.4", path = "facet-spez" }
facet-types = { version = "0.2.1", path = "facet-types" }
facet-samplelibc = { version = "0.1.3", path = "facet-samplelibc" }
unsynn = "0.0.25"