forked from nix-community/nixpkgs-fmt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (30 loc) · 783 Bytes
/
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
35
36
[package]
name = "nixpkgs-fmt"
version = "1.3.0"
authors = [
"Aleksey Kladov <[email protected]>",
"zimbatm <[email protected]>"
]
edition = "2018"
license = "Apache-2.0"
description = "Nix code formatter for nixpkgs"
repository = "https://github.com/nix-community/nixpkgs-fmt"
[workspace]
members = [ "./wasm" ]
[dependencies]
rnix = "0.10.2"
smol_str = "0.1.17"
# Dependencies that are used in the binary only
# Ideally, the feature should be enabled only for binary,
# but Cargo can't express that nicely yet.
crossbeam-channel = "0.4"
ignore = "0.4.10"
clap = "2.33.0"
libc = "0.2.99"
# Enable serialization support for rnix syntax trees.
serde_json = "1.0"
[dependencies.rowan]
version = "0.12.6"
features = [ "serde1" ]
[dev-dependencies]
unindent = "0.1.3"