git-ents.gitmain
⌘K
foforge
Cargo.toml36 lines · 1.0 KB · tomlhistorycomment on this file
1[package]
2name = "ents-effect"
3version = "0.0.0"
4edition.workspace = true
5publish.workspace = true
6license.workspace = true
7
8[features]
9# Neither backend needs an extra crate dependency — both shell out to an
10# already-installed CLI (`docker`, `sprite`), the same pattern `pre-redo`
11# used and this phase ports. The features exist so a composition root pulls
12# in only the backend(s) it deploys (`roots.local`: Docker only;
13# `roots.hosted`: Sprite only), never both in one binary by accident.
14docker = []
15sprite = []
16
17[dependencies]
18ents-model = { workspace = true }
19ents-query = { workspace = true }
20ents-receive = { workspace = true }
21facet-git-tree = { workspace = true }
22gix = { workspace = true }
23gix-hash = { workspace = true }
24gix-object = { workspace = true }
25gix-ref-store = { workspace = true }
26thiserror = { workspace = true }
27
28[dev-dependencies]
29ents-gate = { workspace = true }
30ents-testutil = { workspace = true }
31facet = { workspace = true }
32rstest = { workspace = true }
33tempfile = { workspace = true }
34
35[lints]
36workspace = true