-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 1.12 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
[package]
name = "railmap"
version = "0.1.17"
authors = ["Martin Hoffmann <[email protected]>"]
edition = "2021"
rust-version = "1.65"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
arc-swap = "1.7.1"
cairo-rs = { version = "0.20", features = ["png", "svg", "v1_16"] }
clap = { version = "4.3.19", features = ["cargo", "derive"] }
femtomap = { git = "https://github.com/partim/femtomap.git", features = [ "serde" ] }
http-body-util = "0.1"
hyper = { version = "1.2", features = ["server", "http1"] }
hyper-util = { version = "0.1", features = ["tokio"] }
kurbo = "0.11"
lazy_static = "1.4"
lru = "0.12"
notify = "7"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1.27", features = ["macros", "net", "rt-multi-thread"] }
toml = "0.8"
[[bin]]
name = "railmap"
doc = false
[profile.release]
panic = "abort"
[package.metadata.deb]
maintainer-scripts = "pkg/debian"
section = "web"
assets = [
["target/release/railmap", "usr/sbin/", "755"],
["README.md", "usr/share/doc/cargo-deb/README", "644"],
]
systemd-units = { unit-name = "railmap", enable = true }