forked from liranringel/structure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 796 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "structure"
version = "0.1.2"
authors = ["Liran Ringel <liranringel@gmail.com>"]
description = "Use format strings to create strongly-typed data pack/unpack interfaces."
license = "MIT/Apache-2.0"
keywords = ["structure", "struct"]
repository = "https://github.com/liranringel/structure"
homepage = "https://github.com/liranringel/structure"
documentation = "https://docs.rs/structure"
categories = ["encoding"]
readme = "README.md"
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
[badges]
travis-ci = { repository = "liranringel/structure" }
appveyor = { repository = "liranringel/structure" }
[dependencies]
proc-macro-hack = "0.4"
structure-macro-impl = { version = "0.1.2", path = "structure-macro-impl" }
byteorder = "1"
[workspace]