-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (31 loc) · 970 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
37
38
[package]
name = "ronda"
version = "0.2.0"
edition = "2021"
categories = ["command-line-utilities", "development-tools", "value-formatting"]
description = "A simple ron formatter"
keywords = ["RON", "autoformatting", "beautify", "pretty-print"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/ModProg/ronda"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.1.8", features = ["derive"] }
derive_more = "0.99.17"
include_dir = "0.7.3"
ron-edit = "0.2.0"
# ron-edit = {path = "../ron-edit/"}
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dev-dependencies]
include_dir = "0.7.3"
insta = { version = "1.28.0", features = ["ron"] }
ron = "0.8.0"
serde = { version = "1.0.154", features = ["derive"] }
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3