Browse Source

Fixed a mistake in copyright disclamers.

deprecated_bsvfs
Simon Boyé 3 years ago
parent
commit
7230127f26
  1. 4
      bsv/src/commands/command.rs
  2. 4
      bsv/src/commands/init.rs
  3. 4
      bsv/src/commands/mod.rs
  4. 4
      bsv/src/main.rs
  5. 12
      bsvfs/Cargo.toml
  6. 0
      bsvfs/src/lib.rs
  7. 4
      cas-core/src/cas.rs
  8. 4
      cas-core/src/error.rs
  9. 4
      cas-core/src/lib.rs
  10. 4
      cas-core/src/object_id.rs
  11. 4
      cas-core/src/object_metadata.rs
  12. 4
      cas-core/src/object_type.rs
  13. 4
      cas-core/src/pipeline.rs
  14. 4
      cas-simple/src/cas.rs
  15. 4
      cas-simple/src/lib.rs
  16. 4
      cas-simple/src/utils.rs
  17. 4
      cas-simple/src/wfile.rs
  18. 4
      libbsv/src/config.rs
  19. 4
      libbsv/src/ignore.rs
  20. 4
      libbsv/src/lib.rs
  21. 4
      libbsv/src/path_map.rs
  22. 4
      libbsv/src/permissions.rs
  23. 4
      libbsv/src/repository.rs
  24. 4
      libbsv/src/tree_item.rs
  25. 4
      libbsv/src/tree_walker.rs

4
bsv/src/commands/command.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
use std::collections::{hash_map, HashMap}; use std::collections::{hash_map, HashMap};

4
bsv/src/commands/init.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
use std::path::PathBuf; use std::path::PathBuf;

4
bsv/src/commands/mod.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
pub mod command; pub mod command;

4
bsv/src/main.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
#[macro_use] #[macro_use]

12
bsvfs/Cargo.toml

@ -0,0 +1,12 @@
[package]
name = "cas-core"
version = "0.1.0"
authors = ["Simon Boyé <sim.boye@gmail.com>"]
edition = "2021"
license = "AGPL-3.0-or-later"
[dependencies]
thiserror = "1.0.25"
camino = { version = "1.0.7" }
[dev-dependencies]

0
bsvfs/src/lib.rs

4
cas-core/src/cas.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
use camino::Utf8Path; use camino::Utf8Path;

4
cas-core/src/error.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
// use std::path::Utf8PathBuf; // use std::path::Utf8PathBuf;

4
cas-core/src/lib.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
//! # cas-core //! # cas-core
//! //!

4
cas-core/src/object_id.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
use std::fmt; use std::fmt;

4
cas-core/src/object_metadata.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
use super::object_type::{ObjectType}; use super::object_type::{ObjectType};

4
cas-core/src/object_type.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
use super::err; use super::err;
use super::error::*; use super::error::*;

4
cas-core/src/pipeline.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
use digest::DynDigest; use digest::DynDigest;

4
cas-simple/src/cas.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
use std::str::FromStr; use std::str::FromStr;

4
cas-simple/src/lib.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
//! # cas-simple //! # cas-simple
//! //!

4
cas-simple/src/utils.rs

@ -6,13 +6,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
use digest::DynDigest; use digest::DynDigest;

4
cas-simple/src/wfile.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
use camino::{Utf8PathBuf}; use camino::{Utf8PathBuf};

4
libbsv/src/config.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
use std::collections::{HashMap}; use std::collections::{HashMap};

4
libbsv/src/ignore.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
use camino::{Utf8Path, Utf8PathBuf}; use camino::{Utf8Path, Utf8PathBuf};

4
libbsv/src/lib.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
extern crate toml; extern crate toml;

4
libbsv/src/path_map.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
use camino::{Utf8Path, Utf8PathBuf}; use camino::{Utf8Path, Utf8PathBuf};

4
libbsv/src/permissions.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
use cas_core::{err, Error, Result}; use cas_core::{err, Error, Result};

4
libbsv/src/repository.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
use camino::{Utf8Path, Utf8PathBuf}; use camino::{Utf8Path, Utf8PathBuf};

4
libbsv/src/tree_item.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
use std::time::{Duration, SystemTime, UNIX_EPOCH}; use std::time::{Duration, SystemTime, UNIX_EPOCH};

4
libbsv/src/tree_walker.rs

@ -5,13 +5,13 @@
// Software Foundation, either version 3 of the License, or (at your option) // Software Foundation, either version 3 of the License, or (at your option)
// any later version. // any later version.
// //
// cdb is distributed in the hope that it will be useful, but WITHOUT ANY // bsv is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
// more details. // more details.
// //
// You should have received a copy of the Affero GNU General Public License // You should have received a copy of the Affero GNU General Public License
// along with cdb. If not, see <https://www.gnu.org/licenses/>. // along with bsv. If not, see <https://www.gnu.org/licenses/>.
use std::iter::Peekable; use std::iter::Peekable;

Loading…
Cancel
Save