mirror of
https://github.com/deepseek-ai/3FS
synced 2025-06-26 18:16:45 +00:00
document MSRV (#59)
This commit is contained in:
@@ -4,6 +4,7 @@ version = "0.1.0"
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
rust-version.workspace = true
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
||||
@@ -598,7 +598,11 @@ struct Opt {
|
||||
paths: Vec<PathBuf>,
|
||||
|
||||
/// Interval in seconds
|
||||
#[structopt(short, long, help = "Scan interval (in seconds), exit after one scan if set to 0")]
|
||||
#[structopt(
|
||||
short,
|
||||
long,
|
||||
help = "Scan interval (in seconds), exit after one scan if set to 0"
|
||||
)]
|
||||
interval: u64,
|
||||
|
||||
#[structopt(long)]
|
||||
@@ -615,7 +619,11 @@ struct Opt {
|
||||
#[structopt(long, default_value = "info", help = "Log level, default is info")]
|
||||
log_level: Level,
|
||||
|
||||
#[structopt(long, default_value = "warn", help = "stdout log level, default is warn")]
|
||||
#[structopt(
|
||||
long,
|
||||
default_value = "warn",
|
||||
help = "stdout log level, default is warn"
|
||||
)]
|
||||
stdout_level: Level,
|
||||
}
|
||||
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
name = "chunk_engine"
|
||||
version = "0.1.11"
|
||||
edition = "2021"
|
||||
license.workspace = true
|
||||
rust-version.workspace = true
|
||||
|
||||
[lib]
|
||||
crate-type = ["lib", "staticlib"]
|
||||
|
||||
Reference in New Issue
Block a user