-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e8ec11e
commit 6921449
Showing
14 changed files
with
119 additions
and
49 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ resolver = "2" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[workspace.package] | ||
version = "0.2.32" | ||
version = "0.2.33" | ||
authors = ["Louis <[email protected]>"] | ||
description = "Back up your favorite online resources with CLI." | ||
license = "MIT" | ||
|
@@ -14,10 +14,10 @@ repository = "https://github.com/kingwingfly/fav" | |
documentation = "" | ||
|
||
[workspace.dependencies] | ||
fav_core = { path = "fav_core", version = "0.1.4" } | ||
fav_derive = { path = "fav_derive", version = "0.0.2" } | ||
fav_utils = { path = "fav_utils", version = "0.0.13" } | ||
fav_cli = { path = "fav_cli", version = "0.2.32" } | ||
fav_core = { path = "fav_core", version = "0.1.5" } | ||
fav_derive = { path = "fav_derive", version = "0.0.3" } | ||
fav_utils = { path = "fav_utils", version = "0.0.14" } | ||
fav_cli = { path = "fav_cli", version = "0.2.33" } | ||
|
||
[profile.release] | ||
lto = "fat" | ||
|
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
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
//! Meta, | ||
//! making resource completely able to be operated | ||
use crate::{attr::Attr, status::Status}; | ||
use crate::{attr::{Attr, Owner}, status::Status}; | ||
|
||
/// Making resource has the complete metadata needed | ||
/// This is an auto trait for `T: Attr + Status`. | ||
/// See [`Attr`] and [`Status`]. | ||
pub trait Meta: Attr + Status {} | ||
pub trait Meta: Attr + Owner + Status {} | ||
|
||
impl<T: Attr + Status> Meta for T {} | ||
impl<T: Attr + Owner + Status> Meta for T {} |
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
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
Oops, something went wrong.