-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (30 loc) · 1.01 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
27
28
29
30
31
32
33
34
[package]
name = "nix_rs"
# Important: remember to update the top-level Cargo.toml if updating major version
version = "0.5.0"
license = "Apache-2.0"
repository = "https://github.com/juspay/nix-rs"
description = "Rust library for interacting with the Nix command"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
cfg-if = "1"
regex = "1.9.3"
os_info = "3.7.0"
thiserror = "1.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0"
serde_with = { version = "3.2", features = ["json"] }
tokio = { version = "1.29", features = ["full"] }
tracing = "0.1"
url = { version = "2.4", features = ["serde"] }
colored = { version = "2.0" }
shell-words = { version = "1.1.0" }
is_proc_translated = { version = "0.1.1" }
sysinfo.version = "0.29.10"
bytesize = { version = "1.3.0", features = ["serde"] }
clap = { version = "4.4", features = ["derive"], optional = true }
[features]
clap = ["dep:clap"]