forked from Fluci/ply-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (37 loc) · 957 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
39
40
41
42
43
44
45
46
[package]
name = "ply-rs-bw"
version = "2.0.1"
authors = ["Felice Serena <felice@serena-mueller.ch>","Bourumir Wyngs<use@github_to_contact"]
repository = "https://github.com/bourumir-wyngs/ply-rs"
homepage = "https://github.com/bourumir-wyngs/ply-rs"
license = "MIT"
readme = "README.md"
documentation = "https://fluci.github.io/travis_docs/ply-rs/ply_rs/index.html"
description = "Library for reading/writing ascii and binary PLY files."
keywords = [ "ply" ]
categories = [ "encoding", "parsing" ]
build = "build.rs"
exclude = [
"scripts/*"
]
edition = "2021"
[dependencies]
linked-hash-map = "^0.5.6"
byteorder = "^1.5"
peg = "^0.8.4"
[build-dependencies]
skeptic = "^0.13.7"
[dev-dependencies]
skeptic = "^0.13.7"
[[example]]
name = "read_ply"
[[example]]
name = "write_ply"
[[example]]
name = "read_ply_header_only"
[[example]]
name = "read_ply_to_structs"
[[example]]
name = "read_diverse_field_types"
[[example]]
name = "write_empty_ply"