sapling/eden/mononoke/lfs_protocol/Cargo.toml
Arun Kulshreshtha 631eba23ce lfs_protocol: move LFS MIME type into protocol crate
Summary: In the process of factoring out generally useful parts of the LFS server to `gotham_ext`, it seemed like the `lfs_protocol` crate was the logical place for the Git LFS MIME type constant to live. In addition to moving it, this diff swaps out the deprecated `lazy_static` crate with `once_cell`.

Reviewed By: krallin

Differential Revision: D21193938

fbshipit-source-id: 81dc23e8f37a6c0a45ae44443807e5e21214bcd5
2020-04-23 13:58:04 -07:00

22 lines
385 B
TOML

[package]
name = "lfs_protocol"
edition = "2018"
version = "0.1.0"
authors = ['Facebook']
license = "GPLv2+"
include = ["src/**/*.rs"]
[dependencies]
anyhow = "1.0"
faster-hex = "0.4"
http = "0.2"
mime = "0.3.14"
once_cell = "1.2"
quickcheck = "0.9"
serde = { version = "1.0", features = ["derive", "rc"] }
[dev-dependencies]
assert_matches = "1.3"
maplit = "1.0"
serde_json = "1.0"