-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 866 Bytes
/
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
[package]
name = "svn-cmd"
version = "0.1.0"
authors = ["Rajat Rajput <[email protected]>"]
description = "this is a wrapper to svn command-line utility"
repository = "https://github.com/rajputrajat/svn-cmd.git"
license = "MIT"
edition = "2021"
[dependencies]
log = "^0.4"
thiserror = "1"
serde-xml-rs = "^0.5"
serde = { version = "1", features = ["derive"] }
which = "4"
semver = "1"
regex = "1"
url = "2"
simple-broadcaster = { git = "https://github.com/rajputrajat/simple-broadcaster" }
managed-command = { git = "https://github.com/rajputrajat/managed-command" }
rr-common-utils = { git = "https://github.com/rajputrajat/rr-common-utils" }
oneshot = "*"
itertools = "0.13.0"
[dev-dependencies]
env_logger = "^0.8"
bugsalot = "0.2"
anyhow = "1.0.86"
[[example]]
name = "xml_parsing"
required-features = ["attach_debugger"]
[features]
attach_debugger = []