-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 968 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 968 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
[workspace]
members = ["runi-cli", "runi-cli-macros", "runi-core", "runi-log", "runi-test"]
resolver = "2"
[workspace.package]
version = "0.1.2"
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/wvlet/runi"
homepage = "https://github.com/wvlet/runi"
[workspace.dependencies]
runi-cli = { path = "runi-cli", version = "0.1.2" }
runi-cli-macros = { path = "runi-cli-macros", version = "0.1.2" }
runi-core = { path = "runi-core", version = "0.1.2" }
runi-log = { path = "runi-log", version = "0.1.2" }
runi-test = { path = "runi-test", version = "0.1.2" }
chrono = { version = "0.4", default-features = false, features = ["clock"] }
nu-ansi-term = "0.50"
pretty_assertions = "1"
proc-macro2 = "1"
proptest = "1"
quote = "1"
rstest = "0.25"
syn = { version = "2", features = ["full", "extra-traits"] }
thiserror = "2"
tracing = "0.1"
tracing-core = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
trybuild = "1"