forked from mazurwiktor/albion-online-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (45 loc) · 1.2 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 = "aoaddons"
version = "0.2.0"
authors = ["Wiktor Mazur <[email protected]>"]
edition = "2018"
description = "Simple library for creating addons for albion online game in multiple programing languages."
repository = "https://github.com/mazurwiktor/albion-online-addons"
license = "MIT/Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/albion-online-addons/*/albion-online-addons/"
categories = ["network-programming", "encoding"]
keywords = ["games", "albiononline", "photon", "unity", "albion"]
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
include = [
"**/*.rs",
"Cargo.toml",
"assets"
]
[lib]
name = "aoaddons"
[[bin]]
name = "packetprinter"
path = "src/packetprinter.rs"
[profile.dev]
panic = "unwind"
[profile.release]
panic = "unwind"
[dependencies]
pnet = "0.28.0"
bytes = "0.4"
simplelog = "0.6"
timer = "0.1"
chrono = "0.4"
log = { version = "0.4", features = ["std"] }
lazy_static = "1.2"
derive_more = "0.99"
clap = "2.33"
serde_json = "1.0"
curl = "0.4"
[build-dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
[dev-dependencies]
fake_clock = "0.3.0"