-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (34 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
41 lines (34 loc) · 1.01 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
[package]
name = "cortex-common"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Common utilities and types shared across Cortex CLI crates"
[lib]
name = "cortex_common"
path = "src/lib.rs"
[lints]
workspace = true
[dependencies]
cortex-protocol = { workspace = true }
serde_json = { workspace = true }
toml = { workspace = true }
once_cell = { workspace = true }
clap = { workspace = true, optional = true }
tokio = { workspace = true, optional = true }
regex = { workspace = true }
thiserror = { workspace = true }
dirs = { workspace = true }
reqwest = { workspace = true, features = ["blocking"] }
[target.'cfg(unix)'.dependencies]
libc = { workspace = true }
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.52", features = ["Win32_Foundation", "Win32_Storage_FileSystem", "Win32_System_IO"] }
[features]
default = []
cli = ["clap"]
async = ["tokio"]
[dev-dependencies]
tempfile = { workspace = true }
serial_test = { workspace = true }
dunce = { workspace = true }