forked from mit-dci/rustreexo
-
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.
Improve versioning and folder structure (mit-dci#46)
- Loading branch information
1 parent
88c4bf9
commit ba4f5c0
Showing
3 changed files
with
45 additions
and
10 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
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,10 @@ | ||
//! This module contains some common strings for versioning | ||
/// The default name of our data dir | ||
pub const DIR_NAME: &str = ".floresta"; | ||
/// Version of rust-bitcoin we are using. If we bump it on Cargo.toml, should change here too | ||
pub const RUST_BITCOIN_VERSION: &str = "0.29.3"; | ||
/// Version of rustreexo we use | ||
pub const RUSTREEXO_VERSION: &str = "0.1.0"; | ||
/// Our own version | ||
pub const FLORESTA_VERSION: &str = "0.3.0"; |