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
37 lines (35 loc) · 950 Bytes
/
Cargo.toml
File metadata and controls
37 lines (35 loc) · 950 Bytes
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
[workspace]
members = [
"facet",
"facet-args",
"facet-codegen",
"facet-core",
"facet-derive",
"facet-json",
"facet-json-read",
"facet-json-write",
"facet-msgpack",
"facet-peek",
"facet-poke",
"facet-pretty",
"facet-samplelibc",
"facet-toml",
"facet-urlencoded",
"facet-yaml",
]
resolver = "3"
[workspace.package]
version = "0.1.7"
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.14", path = "facet" }
facet-derive = { version = "0.1.14", path = "facet-derive" }
facet-peek = { version = "0.2.11", path = "facet-peek" }
facet-poke = { version = "0.4.1", path = "facet-poke" }
facet-core = { version = "0.3.3", path = "facet-core" }
facet-samplelibc = { version = "0.1.9", path = "facet-samplelibc" }
unsynn = "0.0.25"