-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (39 loc) · 1.22 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
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "editeur"
version = "0.1.0"
authors = [
"adjivas <[email protected]>",
"brezaire <[email protected]>",
"jpepin <[email protected]>"
]
description = "Character expression editor"
documentation = "https://arukana.github.io/Editeur/editeur"
repository = "https://github.com/arukana/Editeur.git"
readme = "README.md"
build = "build.rs"
keywords = ["character", "expression", "editor"]
license = "GPL-3.0"
[[bin]]
name = "editeur"
test = false
doc = false
[lib]
test = false
doctest = false
[features]
default = []
lints = ["clippy", "nightly"]
nightly = [] # for building with nightly and unstable features
unstable = [] # for building with unstable features on stable Rust
debug = [] # for building with debug messages
travis = ["lints", "nightly"] # for building with travis-cargo
[dependencies.clippy]
version = "*"
optional = true
[dependencies.clipboard]
version = "0.1.2"
optional = true
[dependencies.termion]
version = "1.0"
[dependencies.time]
version = "0.1"