You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lib.rs
+20Lines changed: 20 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,26 @@
68
68
//!
69
69
//! ## Prerequisites
70
70
//!
71
+
//! The tracker has some system dependencies:
72
+
//!
73
+
//! Since we are using the `openssl` crate with the [vendored feature](https://docs.rs/openssl/latest/openssl/#vendored),
74
+
//! enabled, you will need to install the following dependencies:
75
+
//!
76
+
//! ```text
77
+
//! sudo apt-get install pkg-config libssl-dev make
78
+
//! ```
79
+
//!
80
+
//! If you are using `SQLite3` as database driver, you will need to install the
81
+
//! following dependency:
82
+
//!
83
+
//! ```text
84
+
//! sudo apt-get install libsqlite3-dev
85
+
//! ```
86
+
//!
87
+
//! > **NOTICE**: those are the commands for `Ubuntu`. If you are using a
88
+
//! different OS, you will need to install the equivalent packages. Please
89
+
//! refer to the documentation of your OS.
90
+
//!
71
91
//! With the default configuration you will need to create the `storage` directory:
0 commit comments