source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
-[[package]]
-name = "game"
-version = "0.0.1"
-dependencies = [
- "anyhow",
- "argparse",
- "arrayvec",
- "bundle-sources",
- "failure",
- "fehler",
- "flexi_logger",
- "fs2",
- "htmlescape",
- "index_vec",
- "inventory",
- "lazy_static",
- "log 0.4.11",
- "nix",
- "num-traits",
- "percent-encoding 2.1.0",
- "pwd",
- "rand",
- "regex",
- "rmp",
- "rmp-serde",
- "rocket",
- "rocket_contrib",
- "rocket_cors",
- "serde",
- "serde_json",
- "slotmap",
- "thiserror",
- "toml 0.5.6",
- "typetag",
- "uds",
- "vecdeque-stableix",
-]
-
[[package]]
name = "generic-array"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
+[[package]]
+name = "otter"
+version = "0.0.1"
+dependencies = [
+ "anyhow",
+ "argparse",
+ "arrayvec",
+ "bundle-sources",
+ "failure",
+ "fehler",
+ "flexi_logger",
+ "fs2",
+ "htmlescape",
+ "index_vec",
+ "inventory",
+ "lazy_static",
+ "log 0.4.11",
+ "nix",
+ "num-traits",
+ "percent-encoding 2.1.0",
+ "pwd",
+ "rand",
+ "regex",
+ "rmp",
+ "rmp-serde",
+ "rocket",
+ "rocket_contrib",
+ "rocket_cors",
+ "serde",
+ "serde_json",
+ "slotmap",
+ "thiserror",
+ "toml 0.5.6",
+ "typetag",
+ "uds",
+ "vecdeque-stableix",
+]
+
[[package]]
name = "pear"
version = "0.1.4"
# There is NO WARRANTY.
[package]
-name = "game"
+name = "otter"
-# This program is free software: you can redistribute it and/or modify
+# This file is part of "otter", Online TableTop Environment Renderer,
+# a multiplayer online tabletop gameplay system.
+#
+# "otter" is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#![allow(unused_imports)]
-use game::imports::*;
+use otter::imports::*;
use argparse::{self,ArgumentParser,action::{TypedAction,ParseResult}};
use argparse::action::{Action,IFlagAction,IArgAction};
use std::rc::Rc;
use rocket::{get,routes};
use rocket_contrib::serve::StaticFiles;
-use game::imports::*;
+use otter::imports::*;
#[derive(Serialize,Debug)]
struct TestRenderContext { }
.mount("/src", StaticFiles::from(bundled_sources))
;
- let r = game::session::mount(r);
- let r = game::api::mount(r);
+ let r = otter::session::mount(r);
+ let r = otter::api::mount(r);
r.launch();
}
// slotmap::Keydata::get_idx_version 3.259 3.185 3.220
// slotmap_slot_idx::KeyData::get_idx_version 3.724 3.750 3.665
-use game::slotmap_slot_idx;
+use otter::slotmap_slot_idx;
const BATCH : usize = 128;
const ITERS : usize = 10*1024*1024;