-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (44 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
56 lines (44 loc) · 1.13 KB
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
[package]
authors = ["Afonso Bordado <[email protected]>"]
license-file = "LICENSE"
name = "dbgp"
readme = "README.md"
version = "0.0.1"
repository = "https://github.com/afonso360/dbgp"
documentation = "https://docs.rs/dbgp/"
homepage = "https://github.com/afonso360/dbgp"
description = """
An implmenetation of the DBGp protocol
This crate is licensed under the GPL v2 with a Linking Exception
See LICENSE for details
"""
categories = ["development-tools::debugging"]
keywords = ["dbgp", "dbgp-server", "dbgp-client", "c-api"]
include = [
"**/*.rs",
"Cargo.toml",
"LICENSE",
"README.md",
]
[features]
default = ["backtrace"]
backtrace = ["error-chain/backtrace"]
[dependencies]
base64 = "0.9"
url = "1.6"
url_serde = "0.2"
serde = "1.0"
serde_derive = "1.0"
serde-xml-rs = { git = "https://github.com/RReverser/serde-xml-rs.git" }
[dependencies.error-chain]
version = "0.11"
default-features = false
[dev-dependencies]
quickcheck = "0.6"
[lib]
crate-type = ["rlib"]
name = "dbgp"
[badges]
travis-ci = { repository = "afonso360/dbgp" }
appveyor = { repository = "afonso360/dbgp" }
coveralls = { repository = "afonso360/dbgp" }