rust/hedgewars-server/src/server.rs
author nemo
Wed, 27 Mar 2019 09:52:08 -0400
changeset 14745 fbd385a1bcf4
parent 14713 e5415faa117b
child 14800 f43ab2bd76ae
permissions -rw-r--r--
Backed out changeset f9f71cccb5c3 - Wuzzy is right, the license is incompatible. I'd misread the wording on https://fontlibrary.org/en/font/symbola The terms on the author's site prevent using it with almost all FOSS projects, and even prevent using it in a merge like this. We'll just have to find some other font to improve coverage.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14478
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14477
diff changeset
     1
mod actions;
12128
f50876f3eff8 Refactor modules layout
unc0rr
parents:
diff changeset
     2
pub mod client;
14478
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14477
diff changeset
     3
pub mod core;
12130
6273f89ab13d Start on messages parser
unc0rr
parents: 12128
diff changeset
     4
pub mod coretypes;
14477
a077aac9df01 Start database interaction implementation
unc0rr
parents: 14436
diff changeset
     5
#[cfg(feature = "official-server")]
a077aac9df01 Start database interaction implementation
unc0rr
parents: 14436
diff changeset
     6
mod database;
14478
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14477
diff changeset
     7
mod handlers;
14713
e5415faa117b add data structure for extending slabs
alfadur <mail@none>
parents: 14478
diff changeset
     8
pub mod indexslab;
14478
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14477
diff changeset
     9
pub mod io;
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14477
diff changeset
    10
pub mod network;
98ef2913ec73 Apply rustfmt to all files
unc0rr
parents: 14477
diff changeset
    11
pub mod room;