innernet/server/Cargo.toml

61 lines
1.6 KiB
TOML
Raw Normal View History

2021-03-29 17:22:14 +00:00
[package]
authors = ["Jake McGinty <me@jake.su>"]
description = "A server to coordinate innernet networks."
edition = "2018"
license = "MIT"
name = "server"
publish = false
readme = "README.md"
2021-04-11 07:42:24 +00:00
version = "1.1.0"
2021-03-29 17:22:14 +00:00
[[bin]]
name = "innernet-server"
path = "src/main.rs"
[dependencies]
colored = "2"
crossbeam = "0.8"
dashmap = "4"
dialoguer = "0.8"
hyper = "0.14"
indoc = "1"
ipnetwork = { git = "https://github.com/mcginty/ipnetwork" } # pending https://github.com/achanda/ipnetwork/pull/129
2021-03-29 17:22:14 +00:00
libc = "0.2"
libsqlite3-sys = "0.22"
2021-03-29 17:22:14 +00:00
log = "0.4"
parking_lot = "0.11"
pretty_env_logger = "0.4"
regex = { version = "1", default-features = false, features = ["std"] }
rusqlite = "0.25"
2021-03-29 17:22:14 +00:00
serde = { version = "1", features = ["derive"] }
serde_json = "1"
shared = { path = "../shared" }
subtle = "2"
2021-03-29 17:22:14 +00:00
structopt = "0.3"
thiserror = "1"
ureq = { version = "2", default-features = false }
2021-03-29 17:22:14 +00:00
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
toml = "0.5"
warp = { git = "https://github.com/tonarino/warp", default-features = false } # pending https://github.com/seanmonstar/warp/issues/830
2021-03-29 17:22:14 +00:00
wgctrl = { path = "../wgctrl-rs" }
[target.'cfg(target_os = "linux")'.dependencies]
socket2 = { version = "0.4", features = ["all"] }
2021-03-29 17:22:14 +00:00
[dev-dependencies]
anyhow = "1"
tempfile = "3"
[package.metadata.deb]
assets = [
["target/release/innernet-server", "usr/bin/", "755"],
["innernet-server@.service", "usr/lib/systemd/system/", "644"],
["../doc/innernet-server.8.gz", "usr/share/man/man8/", "644"],
]
depends = "libc6, libgcc1, libsqlite3-0, zlib1g, systemd"
maintainer = "tonari <hey@tonari.no>"
name = "innernet-server"
priority = "optional"
section = "net"