-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (45 loc) · 1.65 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
[package]
name = "ceph"
version = "0.2.0"
authors = [
"Chris Jones <[email protected]>",
"Chris Holcombe <[email protected]>",
"Chris MacNaughton <[email protected]>",
]
license = "Apache-2.0"
readme = "README.md"
# This is a list of up to five keywords that describe this crate. Keywords
# are searchable on crates.io, and you may choose any words that would
# help someone find this crate.
keywords = ["ceph", "storage"]
# This is a list of up to five categories where this crate would fit.
# Categories are a fixed list available at crates.io/category_slugs, and
# they must match exactly.
categories = ["filesystem"]
documentation = "https://docs.rs/ceph"
repository = "https://github.com/ceph/ceph-rust"
homepage = "https://github.com/lambdastackio/ceph-rust"
description = """
Official Ceph-rust. A rust-lang specific interface to Ceph librados and Admin Sockets. You can create a Ceph development environment with the
Chef automation tools: https://github.com/bloomberg/chef-bcs or with ceph-ansible. Chef-bcs uses the ceph-chef cookbook
created and manage at github.com/ceph/ceph-chef. It will build out a full Ceph environment which you can then use
for development etc. See README.md for details.
"""
[badges]
travis-ci = { repository = "ceph/ceph-rust", branch = "master" }
[dependencies]
bitflags = "~0.7"
byteorder = "1" #"~0.5"
libc = "0.2"
log = "~0.3"
nom = "~1.2"
serde_derive = "~1.0"
serde = "~1.0"
serde_json = "~1.0"
uuid = {version = "~0.5", features = ["use_std", "serde"] }
rustc-serialize = "~0.3"
# Run the example as follows: `cargo run --example ceph`
# [[bin]]
# doc = true
# name = "ceph"
# path = "examples/ceph.rs"