-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #430 from mstange/enforce-quota
Add a way to limit the disk usage of symbol files
- Loading branch information
Showing
13 changed files
with
909 additions
and
34 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[package] | ||
name = "samply-quota-manager" | ||
version = "0.1.0" | ||
authors = ["Markus Stange <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
rust-version = "1.77" # needed by rusqlite_migration | ||
description = "Limit the total size of a directory by deleting least-recently-used files" | ||
repository = "https://github.com/mstange/samply/" | ||
readme = "README.md" | ||
|
||
[dependencies] | ||
bytesize = "1.3.0" | ||
log = "0.4.21" | ||
tokio = { version = "1.39", features = ["rt", "rt-multi-thread", "sync", "macros"] } | ||
rusqlite = { version = "0.32.0", features = ["bundled"] } | ||
rusqlite_migration = "1.2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# samply-quota-manager | ||
|
Oops, something went wrong.