-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (33 loc) · 934 Bytes
/
Cargo.toml
File metadata and controls
40 lines (33 loc) · 934 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "muzzman-daemon"
description = "MuzzMan Daemon Session"
version = "0.0.8"
edition = "2021"
authors = ["konkitoman"]
repository = "https://github.com/ManStudio/MuzzMan-Daemon"
license = "MPL-2.0"
keywords = ["muzzman-session"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
[[example]]
name = "get_location_info"
path = "./examples/get_location_info.rs"
[[example]]
name = "get_version"
path = "./examples/get_version.rs"
[[example]]
name = "save_and_loading"
path = "./examples/save_and_loading.rs"
[profile.dev.build-override]
debug = true
[dependencies]
bytes-kman = "0.1"
# muzzman-lib = "0.3.5"
muzzman-lib = {git = "https://github.com/ManStudio/MuzzMan-Lib"}
dirs = "4.0.0"
log = "0.4"
env_logger = "0.10"
tokio = { version = "1.27.0", features = ["rt-multi-thread", "net", "sync"] }
async-trait = "0.1.68"
[dev-dependencies]
serde_json="1.0"