Skip to content

Commit

Permalink
alphabetically reorder keys
Browse files Browse the repository at this point in the history
for select Cargo.toml sections
  • Loading branch information
jqnatividad committed Jan 4, 2022
1 parent 7229470 commit 443fd91
Showing 1 changed file with 47 additions and 47 deletions.
94 changes: 47 additions & 47 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,89 +33,89 @@ path = "src/mainlite.rs"
name = "tests"

[profile.release]
lto = true
codegen-units = 1
opt-level = 3
debug = false
lto = true
opt-level = 3

[profile.test]
opt-level = 3

[dependencies]
mimalloc = { version = "0.1", default-features = false, optional = true }
byteorder = "1.4"
cached = { version = "0.26", default-features = false, features = [
"proc_macro",
] }
censor = { version = "0.2", optional = true }
chrono = { version = "0.4", optional = true }
crossbeam-channel = "0.5"
csv = "1.1"
csv-index = "0.1"
dateparser = "0.1"
docopt = "1"
eudex = { version = "0.1", optional = true }
filetime = "0.2"
flexi_logger = { version = "0.22", features = ["compress"] }
governor = "0.4"
hlua = { version = "0.4", optional = true }
indicatif = "0.16"
itertools = "0.10"
jql = { version = "3", default-features = false }
log = "0.4"
mimalloc = { version = "0.1", default-features = false, optional = true }
num_cpus = "1"
once_cell = { version = "1.9", optional = true }
pyo3 = { version = "0.15", features = [
"abi3-py37",
"auto-initialize",
], optional = true }
qsv-stats = "0.3"
qsv_currency = { version = "0.5", optional = true }
rand = "0.8"
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
qsv-stats = "0.3"
tabwriter = "1.2"
threadpool = "1.8"
chrono = { version = "0.4", optional = true }
dateparser = "0.1"
once_cell = { version = "1.9", optional = true }
reqwest = { version = "0.11", features = [
"blocking",
"json",
"rustls-tls",
], default-features = false }
reverse_geocoder = { version = "2", optional = true }
qsv_currency = { version = "0.5", optional = true }
itertools = "0.10"
strsim = { version = "0.10", optional = true }
eudex = { version = "0.1", optional = true }
indicatif = "0.16"
thousands = "0.2"
titlecase = { version = "1", optional = true }
censor = { version = "0.2", optional = true }
cached = { version = "0.26", default-features = false, features = [
"proc_macro",
] }
uuid = { version = "0.8", features = ["v4"] }
test-data-generation = { version = "0.3", optional = true }
self_update = { version = "0.28", features = [
"archive-zip",
"compression-zip-deflate",
"rustls",
], default-features = false }
log = "0.4"
flexi_logger = { version = "0.22", features = ["compress"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
strsim = { version = "0.10", optional = true }
tabwriter = "1.2"
test-data-generation = { version = "0.3", optional = true }
thousands = "0.2"
threadpool = "1.8"
titlecase = { version = "1", optional = true }
uuid = { version = "0.8", features = ["v4"] }
vader_sentiment = { version = "0.1", optional = true }
whatlang = { version = "0.13.0", optional = true }
reqwest = { version = "0.11", features = [
"blocking",
"json",
"rustls-tls",
], default-features = false }
jql = { version = "3", default-features = false }
pyo3 = { version = "0.15", features = [
"auto-initialize",
"abi3-py37",
], optional = true }
governor = "0.4"

[dev-dependencies]
quickcheck = { version = "1", default-features = false }
actix-web = "3.3"
actix-governor = "0.2"
actix-web = "3.3"
quickcheck = { version = "1", default-features = false }

[features]
default = ["mimalloc"]
lua = ["hlua"]
foreach = []
apply = [
"qsv_currency",
"eudex",
"titlecase",
"censor",
"strsim",
"reverse_geocoder",
"once_cell",
"chrono",
"eudex",
"once_cell",
"qsv_currency",
"reverse_geocoder",
"strsim",
"titlecase",
"vader_sentiment",
"whatlang",
]
foreach = []
generate = ["test-data-generation"]
lua = ["hlua"]
python = ["pyo3"]

0 comments on commit 443fd91

Please sign in to comment.