-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
26 lines (22 loc) · 1.11 KB
/
Cargo.toml
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
[workspace]
resolver = "2"
default-members = ["appbiotic/code/cli"]
members = [
"appbiotic/code/cli",
"appbiotic/code/error",
"appbiotic/code/runtime",
"appbiotic/examples",
]
[workspace.dependencies]
anyhow = { version = "1.0.75", default-features = false }
appbiotic-code-cli = { version = "0.3.0-alpha.0", path = "appbiotic/code/cli", default-features = false }
appbiotic-code-error = { version = "0.3.0-alpha.0", path = "appbiotic/code/error", default-features = false }
appbiotic-code-runtime = { version = "0.3.0-alpha.0", path = "appbiotic/code/runtime", default-features = false }
appbiotic-examples = { version = "0.3.0-alpha.0", path = "appbiotic/examples", default-features = false }
clap = { version = "4.4.6", default-features = false }
http = { version = "0.2.9", default-features = false }
strum = { version = "0.25.0", default-features = false }
strum_macros = { version = "0.25.2", default-features = false }
thiserror = { version = "1.0.49", default-features = false }
tracing = { version = "0.1.39", default-features = false }
tracing-subscriber = { version = "0.3.17", default-features = false }