-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
65 lines (55 loc) · 1.69 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "gauc"
version = "0.4.0"
authors = ["Tomas Korcak <[email protected]>"]
description = "Couchbase Rust Adapter / CLI"
# These URLs point to more information about the repository.
documentation = "https://docs.rs/gauc/"
homepage = "https://github.com/korczis/gauc"
repository = "https://github.com/korczis/gauc"
# This points to a file in the repository (relative to this `Cargo.toml`). The
# contents of this file are stored and indexed in the registry.
readme = "README.md"
# This is a small list of keywords used to categorize and search for this
# package.
keywords = ["couchbase", "database"]
license = "MIT"
[dependencies]
clap = ">= 2.18.0"
ctrlc = ">= 2.0.1"
env_logger = ">= 0.3.5"
hyper = "= 0.10.5"
iron = ">= 0.5.1"
libc = ">= 0.2.16"
log = ">= 0.3.6"
router = ">= 0.4.0"
# rust-crypto = "0.2.36"
serde = "0.9.12"
serde_json = "0.8"
urlencoded = "0.5.0"
[lib]
name = "gauc"
path = "src/lib.rs"
[[bin]]
name = "gauc"
doc = false
path = "src/main.rs"
# Debug settings
[profile.dev]
opt-level = 0 # controls the `--opt-level` the compiler builds with
debug = true # controls whether the compiler passes `-g`
rpath = false # controls whether the compiler passes `-C rpath`
lto = false # controls `-C lto` for binaries and staticlibs
debug-assertions = true # controls whether debug assertions are enabled
codegen-units = 1 # controls whether the compiler passes `-C codegen-units`
# `codegen-units` is ignored when `lto = true`
panic = 'unwind' # panic strategy (`-C panic=...`), can also be 'abort'
# Release settings
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'unwind'