-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (49 loc) · 1.64 KB
/
Cargo.toml
File metadata and controls
54 lines (49 loc) · 1.64 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
42
43
44
45
46
47
48
49
50
51
52
53
54
[workspace]
members = ["crates/*"]
resolver = "3"
[workspace.package]
version = "2.0.1"
edition = "2024"
rust-version = "1.90.0"
authors = ["Amos Wenger <amos@bearcove.eu>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bearcove/figue"
homepage = "https://github.com/bearcove/figue"
keywords = ["cli", "args", "parser", "facet", "command-line"]
categories = ["command-line-interface"]
[workspace.dependencies]
figue-attrs = { path = "crates/figue-attrs", version = "2.0.1" }
# Facet ecosystem
facet = { version = "0.44.0", features = ["indexmap", "camino", "net"] }
facet-core = { version = "0.44.0" }
facet-format = { version = "0.44.0" }
facet-json = { version = "0.44.0" }
facet-reflect = { version = "0.44.0" }
facet-pretty = { version = "0.44.0" }
facet-error = { version = "0.44.0" }
facet-solver = { version = "0.44.0" }
facet-testhelpers = { version = "0.44.0" }
# External dependencies
camino = "1.1"
heck = "0.5.0"
indexmap = "2"
owo-colors = "4"
tracing = "0.1"
ariadne = "0.6"
unicode-width = "0.2.2"
strip-ansi-escapes = "0.2.1"
strsim = "0.11"
insta = "1"
supports-color = "3"
tempfile = "3"
# Uncomment for local development with facet
# [patch."https://github.com/facet-rs/facet"]
# facet = { path = "../facet/facet" }
# facet-core = { path = "../facet/facet-core" }
# facet-format = { path = "../facet/facet-format" }
# facet-json = { path = "../facet/facet-json" }
# facet-reflect = { path = "../facet/facet-reflect" }
# facet-pretty = { path = "../facet/facet-pretty" }
# facet-error = { path = "../facet/facet-error" }
# facet-solver = { path = "../facet/facet-solver" }
# facet-testhelpers = { path = "../facet/facet-testhelpers" }