14 lines
343 B
Rust
14 lines
343 B
Rust
|
/// Default value for `created by` torrent metainfo field.
|
||
|
///
|
||
|
/// Example: imdl/0.0.0 (1234567890AB)
|
||
|
pub(crate) const CREATED_BY_DEFAULT: &str = concat!(
|
||
|
"imdl/",
|
||
|
env!("CARGO_PKG_VERSION"),
|
||
|
" (",
|
||
|
env!("GIT_HEAD_PARTIAL_HASH"),
|
||
|
")"
|
||
|
);
|
||
|
|
||
|
/// Value for `encoding` torrent metainfo field.
|
||
|
pub(crate) const ENCODING_UTF8: &str = "UTF-8";
|