mirror of
https://github.com/deepseek-ai/3FS
synced 2025-05-10 23:50:36 +00:00
document MSRV (#59)
This commit is contained in:
parent
85d3212e2f
commit
ab5aa89262
@ -9,6 +9,7 @@ resolver = "2"
|
|||||||
authors = ["dev <noreply@deepseek.com>"]
|
authors = ["dev <noreply@deepseek.com>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
rust-version = "1.75.0" # MSRV
|
||||||
|
|
||||||
[profile.release-cmake]
|
[profile.release-cmake]
|
||||||
debug = true
|
debug = true
|
||||||
|
@ -83,7 +83,7 @@ Install other build prerequisites:
|
|||||||
|
|
||||||
- [`libfuse`](https://github.com/libfuse/libfuse/releases/tag/fuse-3.16.1) 3.16.1 or newer version
|
- [`libfuse`](https://github.com/libfuse/libfuse/releases/tag/fuse-3.16.1) 3.16.1 or newer version
|
||||||
- [FoundationDB](https://apple.github.io/foundationdb/getting-started-linux.html) 7.1 or newer version
|
- [FoundationDB](https://apple.github.io/foundationdb/getting-started-linux.html) 7.1 or newer version
|
||||||
- [Rust](https://www.rust-lang.org/tools/install) toolchain
|
- [Rust](https://www.rust-lang.org/tools/install) toolchain: minimal 1.75.0, recommanded 1.85.0 or newer version (latest stable version)
|
||||||
|
|
||||||
## Build 3FS
|
## Build 3FS
|
||||||
|
|
||||||
|
@ -4,6 +4,7 @@ version = "0.1.0"
|
|||||||
authors.workspace = true
|
authors.workspace = true
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
license.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
|
# 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>,
|
paths: Vec<PathBuf>,
|
||||||
|
|
||||||
/// Interval in seconds
|
/// 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,
|
interval: u64,
|
||||||
|
|
||||||
#[structopt(long)]
|
#[structopt(long)]
|
||||||
@ -615,7 +619,11 @@ struct Opt {
|
|||||||
#[structopt(long, default_value = "info", help = "Log level, default is info")]
|
#[structopt(long, default_value = "info", help = "Log level, default is info")]
|
||||||
log_level: Level,
|
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,
|
stdout_level: Level,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
name = "chunk_engine"
|
name = "chunk_engine"
|
||||||
version = "0.1.11"
|
version = "0.1.11"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
license.workspace = true
|
||||||
|
rust-version.workspace = true
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
crate-type = ["lib", "staticlib"]
|
crate-type = ["lib", "staticlib"]
|
||||||
|
Loading…
Reference in New Issue
Block a user