-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (56 loc) Β· 1.61 KB
/
Copy pathCargo.toml
File metadata and controls
62 lines (56 loc) Β· 1.61 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
55
56
57
58
59
60
61
62
[package]
name = "fledge"
version = "1.7.2"
edition = "2021"
authors = ["0xLeif <leif.algo@pm.me>"]
description = "Dev lifecycle CLI. One tool for the dev loop, any language."
readme = "README.md"
license = "MIT"
homepage = "https://github.com/CorvidLabs/fledge"
documentation = "https://corvidlabs.github.io/fledge/docs"
repository = "https://github.com/CorvidLabs/fledge"
rust-version = "1.89"
keywords = ["cli", "scaffold", "template", "task-runner", "dev-tools"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
walkdir = "2"
tera = "1"
dialoguer = { version = "0.11", features = ["fuzzy-select"] }
console = "0.15"
ctrlc = "3"
anyhow = "1"
chrono = "0.4"
dirs = "6"
regex-lite = "0.1"
ureq = "3"
corvid-ai = "0.1"
include_dir = "0.7"
indicatif = "0.17"
sha2 = "0.11.0"
base64 = "0.22"
notify = "7"
shell-words = "1.1.1"
wasmtime = { version = "46.0.1", optional = true }
wasmtime-wasi = { version = "46.0.1", optional = true }
[features]
default = ["wasm"]
# Sandboxed WASM plugin runtime (wasmtime + wasmtime-wasi). On by default;
# disable with `--no-default-features` to drop the wasmtime dependency tree.
wasm = ["dep:wasmtime", "dep:wasmtime-wasi"]
[build-dependencies]
toml = "0.8"
[dev-dependencies]
insta = { version = "1.47.2", features = ["json"] }
tempfile = "3"
[target."cfg(unix)".dependencies]
libc = "0.2.185"
[target."cfg(windows)".dependencies]
windows-sys = { version = "0.59", features = [
"Win32_Foundation",
"Win32_System_JobObjects",
] }