-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
33 lines (31 loc) · 1.05 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
[package]
name = "tango"
version = "0.8.3"
authors = ["Felix S. Klock II <[email protected]>"]
description = "Markdown-based Literate programming in Rust, integrated with Cargo."
license = "MIT/Apache-2.0"
repository = "https://github.com/pnkfelix/tango"
documentation = "https://github.com/pnkfelix/tango-demo/blob/master/README.md"
[dependencies]
## Every time I tried to get `debug!` working with `cargo test` I am
## flummoxed. Not sure what my problem is, but for now these are not
## enough on their own, so I am leaving them out of the checked-in
## version.
##
# log = "*"
# env_logger = "*"
filetime = "0.1"
walkdir = "1.0"
url = "1.4"
## dev-dependencies are only pulled in for tests/benchmarks
[dev-dependencies]
tempdir = "0.3"
[[test]]
name = "runner"
##
## Can set below to stop passing `--test` when compiling runner.rs
## (and thus use a `fn main` within it as its associated test driver).
## But for now I am trying to work within the integrated testing framework,
## which means in part avoiding global state like `env::set_current_dir`
##
# harness = false