You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
570 B
32 lines
570 B
[package] |
|
name = "rxtx" |
|
version = "1.0.0" |
|
authors = ["ltdk <usr@ltdk.xyz>"] |
|
edition = "2018" |
|
description = "Simple proxy and static file server." |
|
readme = "README.md" |
|
repository = "https://vc.ltdk.xyz/ltdk/rxtx" |
|
license-file = "LICENSE.md" |
|
categories = [] |
|
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"] |
|
|
|
[badges] |
|
maintenance = { status = "experimental" } |
|
|
|
[dependencies] |
|
|
|
[dev-dependencies] |
|
|
|
[features] |
|
default = [] |
|
|
|
[profile.release] |
|
opt-level = "s" |
|
debug = false |
|
lto = true |
|
panic = "abort" |
|
codegen-units = 1 |
|
|
|
[[bin]] |
|
name = "rxtx" |
|
path = "src/main.rs"
|
|
|