29 lines
642 B
TOML
29 lines
642 B
TOML
[package]
|
|
name = "swfss3"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
argh = "^0"
|
|
fuser = "^0"
|
|
libc = "^0"
|
|
s3 = { version = "^0", features = ["blocking", "rustls"] }
|
|
tracing = "0.1.41"
|
|
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
|
|
ctrlc = "^3"
|
|
|
|
[profile.release]
|
|
strip = "debuginfo"
|
|
lto = "thin"
|
|
|
|
[package.metadata.deb]
|
|
license-file = ["LICENSE.md", "4"]
|
|
extended-description = """\
|
|
A software for interacting easily with seaweedfs,
|
|
including mounting a bucket as a local filesystem."""
|
|
depends = "$auto"
|
|
section = "utility"
|
|
priority = "optional"
|
|
assets = [
|
|
["target/release/swfss3", "usr/bin/", "755"],
|
|
]
|