-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 941 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
36
37
38
[workspace]
members = [
"macro"
]
[workspace.package]
authors = ["Tangram <[email protected]"]
description = "Buffalo is a binary serialization format that gives you ultimate control."
documentation = "https://docs.rs/buffalo"
edition = "2021"
homepage = "https://github.com/tangramdotdev/buffalo"
license = "MIT"
publish = true
repository = "https://github.com/tangramdotdev/buffalo"
version = "0.4.1"
[package]
name = "buffalo"
authors = { workspace = true }
description = { workspace = true }
documentation = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
publish = { workspace = true }
repository = { workspace = true }
version = { workspace = true }
[lib]
path = "lib.rs"
[dependencies]
bitvec = { version = "1", optional = true }
buffalo_macro = { version = "0.4", path = "macro" }
derive_deref = "1"
ndarray = { version = "0.15", optional = true }
num = "0.4"