-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (18 loc) · 787 Bytes
/
Cargo.toml
File metadata and controls
23 lines (18 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "driftsort"
version = "0.1.0"
edition = "2021"
authors = ["Orson Peters <orsonpeters@gmail.com>", "Lukas Bergdoll <lukas.bergdoll@gmail.com>"]
[lib]
# They are just noisy and this is not meant as a documented library, but as a testbed.
doctest = false
# Arguably everything you want to test should be your oberservable interface.
# Plus it's faster to run everything as integration test.
# See https://matklad.github.io/2021/02/27/delete-cargo-integration-tests.html
test = false
[dependencies]
[dev-dependencies]
sort_test_tools = { git = "https://github.com/Voultapher/sort-research-rs", rev = "60e19e3d56912171b4356de77499f9d798f9f12a", default-features = false }
[features]
default = ["large_test_sizes"]
large_test_sizes = ["sort_test_tools/large_test_sizes"]