13 | Are we web yet?
14 |
15 | Yes! And it's freaking fast!
16 |
17 |
18 | Rust has mature and production ready frameworks in Actix Web and
19 | Axum, and innovative ones like Warp
20 | and Tide. These provide everything you’d expect from a web framework, from routing
21 | and middleware, to templating, and JSON/form handling. There are crates for everything, and more! For databases, there’s:
22 |
23 |
36 |
37 | {% set services = get_page(path="topics/services.md") %}
38 | There are many integrations to third-party services {{ level::level(level=services.extra.level) }}, such as:
39 |
40 |
54 |
55 | {% set logging = get_page(path="topics/logging.md") %}
56 | {% set auth = get_page(path="topics/auth.md") %}
57 | {% set templating = get_page(path="topics/templating.md") %}
58 | {% set email = get_page(path="topics/email.md") %}
59 |
60 | And of course, there is plenty of support for basic web needs, like logging
61 | {{ level::level(level=logging.extra.level) }}, authorization {{ level::level(level=auth.extra.level) }}, templating {{ level::level(level=templating.extra.level) }}, and email
63 | {{ level::level(level=email.extra.level) }}.
64 |
65 |
66 | Can I replace my Rails/Django/Laravel app already?
67 |
68 |
69 | Rust does not have a dominant framework at the level of Django or Rails. Most Rust frameworks are smaller and modular, similar to Flask or Sinatra.
70 | Rust does have a diverse package ecosystem, but you generally have to wire everything up yourself. Expect to put in a little bit of extra set up work
71 | to get started. If you are expecting everything bundled up for you, then Rust might not be for you just yet.
72 |
73 |
74 | {% set webassembly = get_page(path="topics/webassembly.md") %}
75 |
76 | WebAssembly???
77 |
78 | Rust can run on the browser by compiling to WebAssembly
79 | {{ level::level(level=webassembly.extra.level) }}. This means that you can take advantage of the amazing Rust ecosystem on the browser! Rust and
80 | WebAssembly integrate with existing Javascript tooling like NPM, Webpack, and ECMAScript modules! There are
81 | some awesome Rust and WebAssembly projects out there. For example, Yew and Seed let you create
83 | front-end web apps with Rust in a way that feels almost like React.js.
84 |
85 | For more information about Rust and WebAssembly, check out the Rust and WebAssembly Book.
87 |
88 | Getting started
89 |
90 | After you’ve set up your Rust and worked yourself through “The Book”,
91 | you might want to check any of these resources:
92 |
93 |
105 |
106 | There are also some real world examples that can be looked at for reference:
107 |
108 |
115 |
116 | If you find yourself stuck and looking for help, you can check out the official Rust forum, the Rust tag on Stackoverflow, or the Rust Discord server where you are welcome to post your questions and
120 | will find excellent help.
121 |
122 | In detail
123 |
124 | Learn more about the state of web development in Rust by topic:
125 |
126 |
127 | {% set section = get_section(path="topics/_index.md") %}
128 | {% for page in section.pages %}
129 | - {{page.title}} {{ level::level(level=page.extra.level) }}
130 | {% endfor %}
131 |
132 |
133 |
134 | - {{ level::level(level=0) }}: everything is awesome™: stable, tested and mature
136 | - {{ level::level(level=1) }}: stuff's pretty great
137 | - {{ level::level(level=2) }}: getting there, stable but still maturing
138 | - {{ level::level(level=3) }}: not yet stable, but progressing
139 | - {{ level::level(level=4) }}: unstable/incomplete, needs work
140 | - {{ level::level(level=5) }}: barely there, needs serious work
141 | - {{ level::level(level=6) }}: basically nonexistent
142 |
143 |
144 |
145 | {% endblock content %}
146 |
--------------------------------------------------------------------------------
/content/news/2016-11-20-RustWebDigest-4-i-wish-there-was-async-but-at-least-we-got-cms.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "RustWebDigest #4: I wish there was async, but at least we got CMSs!"
3 |
4 | [extra]
5 |
6 | source = { author = "ben" }
7 |
8 | tags = [
9 | "async",
10 | "cms",
11 | "stack"
12 | ]
13 | +++
14 |
15 | With the release of futures and soon after the Tokio-frameworks, this summer was async became all the range in the rust (web) world. While we were hoping to be able to start a new async-section and populate it with amazing libraries by now, even pushing down the timeframe of the digest itself, there isn't sufficient work on this (in the web area) yet. But in order to track these "in development"-things better, and also shed some light into it for people not familiar, we added another section to selected topics, called **upcoming**.
16 |
17 | Secondly, we also added another site tracking [Content Management Systems](/topics/cms/). While it currently also features only cobolt-bin (do you know some others?), it takes full advantage of the new upcoming feature and lets you know where you can help.
18 |
19 |
20 | ## Crate updates:
21 |
22 |
23 | ### Added to index:
24 | The following have been added to our tracking index (and the website where appropriate)
25 |
26 | - [atarashii_imap](https://crates.io/crates/atarashii_imap) (0.2.1)
27 | - [edge](https://crates.io/crates/edge) (0.0.1), [also see this comment by the author](https://github.com/bashyHQ/arewewebyet/pull/56#issuecomment-247916996)
28 | - [libphonenumber-sys](https://crates.io/crates/libphonenumber-sys) (0.1.1)
29 | - [cobalt](https://crates.io/crates/cobalt) (0.11.0)
30 | - [rouille](https://crates.io/crates/rouille) (0.2.2)
31 | - [rustls](https://crates.io/crates/rustls) (0.5.2)
32 | - [valico](https://crates.io/crates/valico) (1.0.1)
33 |
34 |
35 | ### Updates recorded:
36 |
37 | Further more we recorded new releases to the following crates
38 | ## Crates updates found:
39 |
40 | - [amqp](https://crates.io/crates/amqp) (0.0.16 => 0.0.19)
41 | - [argon2rs](https://crates.io/crates/argon2rs) (0.2.1 => 0.2.5)
42 | - [atom_syndication](https://crates.io/crates/atom_syndication) (0.1.4 => 0.3.0)
43 | - [backtrace](https://crates.io/crates/backtrace) (0.2.3 => 0.3.0)
44 | - [base64](https://crates.io/crates/base64) (0.2.0 => 0.2.1)
45 | - [bcrypt](https://crates.io/crates/bcrypt) (0.1.1 => 0.1.2)
46 | - **major** [bitsparrow](https://crates.io/crates/bitsparrow) (0.3.2 => 1.0.0)
47 | - [bodyparser](https://crates.io/crates/bodyparser) (0.4.0 => 0.4.1)
48 | - [brotli](https://crates.io/crates/brotli) (1.0.6 => 1.0.7)
49 | - [cassandra](https://crates.io/crates/cassandra) (0.7.2 => 0.7.3)
50 | - [chrono](https://crates.io/crates/chrono) (0.2.22 => 0.2.25)
51 | - [clap](https://crates.io/crates/clap) (2.9.3 => 2.18.0)
52 | - [conduit](https://crates.io/crates/conduit) (0.7.4 => 0.8.0)
53 | - [cookie](https://crates.io/crates/cookie) (0.2.5 => 0.3.1)
54 | - [crust](https://crates.io/crates/crust) (0.16.1 => 0.19.0)
55 | - [curl](https://crates.io/crates/curl) (0.3.1 => 0.4.1)
56 | - [dbmigrate](https://crates.io/crates/dbmigrate) (0.2.4 => 0.2.7)
57 | - [diesel](https://crates.io/crates/diesel) (0.6.2 => 0.8.1)
58 | - [discord](https://crates.io/crates/discord) (0.6.0 => 0.7.0)
59 | - [djangohashers](https://crates.io/crates/djangohashers) (0.2.2 => 0.2.5)
60 | - [docopt](https://crates.io/crates/docopt) (0.6.81 => 0.6.86)
61 | - [ease](https://crates.io/crates/ease) (0.5.0 => 0.6.1)
62 | - [encoding](https://crates.io/crates/encoding) (0.2.32 => 0.2.33)
63 | - [env_logger](https://crates.io/crates/env_logger) (0.3.4 => 0.3.5)
64 | - [etcd](https://crates.io/crates/etcd) (0.5.4 => 0.5.5)
65 | - [feed](https://crates.io/crates/feed) (1.2.3 => 1.2.4)
66 | - [flexi_logger](https://crates.io/crates/flexi_logger) (0.5.0 => 0.5.2)
67 | - [fnv](https://crates.io/crates/fnv) (1.0.3 => 1.0.5)
68 | - [formdata](https://crates.io/crates/formdata) (0.9.0 => 0.11.0)
69 | - **major** [ftp](https://crates.io/crates/ftp) (0.0.8 => 2.0.0)
70 | - [handlebars-iron](https://crates.io/crates/handlebars-iron) (0.15.3 => 0.19.2)
71 | - [handlebars](https://crates.io/crates/handlebars) (0.19.0 => 0.22.0)
72 | - [horrorshow](https://crates.io/crates/horrorshow) (0.5.6 => 0.6.1)
73 | - [hubcaps](https://crates.io/crates/hubcaps) (0.2.2 => 0.2.4)
74 | - [hyper](https://crates.io/crates/hyper) (0.9.10 => 0.9.12)
75 | - [influent](https://crates.io/crates/influent) (0.3.0 => 0.3.1)
76 | - [iron-hmac](https://crates.io/crates/iron-hmac) (0.3.3 => 0.4.0)
77 | - [iron-login](https://crates.io/crates/iron-login) (0.4.1 => 0.5.0)
78 | - [iron-test](https://crates.io/crates/iron-test) (0.3.0 => 0.4.0)
79 | - [json](https://crates.io/crates/json) (0.10.0 => 0.11.0)
80 | - [jsonrpc](https://crates.io/crates/jsonrpc) (0.7.6 => 0.8.0)
81 | - [jsonway](https://crates.io/crates/jsonway) (1.0.0 => 1.0.1)
82 | - [kafka](https://crates.io/crates/kafka) (0.4.1 => 0.5.0)
83 | - [keen](https://crates.io/crates/keen) (1.1.0 => 1.3.0)
84 | - [lettre](https://crates.io/crates/lettre) (0.5.1 => 0.6.1)
85 | - [liquid](https://crates.io/crates/liquid) (0.8.4 => 0.9.0)
86 | - [log4rs](https://crates.io/crates/log4rs) (0.4.8 => 0.5.0)
87 | - [logger](https://crates.io/crates/logger) (0.0.3 => 0.2.0)
88 | - [macaroons](https://crates.io/crates/macaroons) (0.2.1 => 0.3.1)
89 | - [maud](https://crates.io/crates/maud) (0.9.0 => 0.13.0)
90 | - [md5](https://crates.io/crates/md5) (0.1.1 => 0.2.1)
91 | - [mongodb](https://crates.io/crates/mongodb) (0.1.4 => 0.1.8)
92 | - [mongo_driver](https://crates.io/crates/mongo_driver) (0.3.0 => 0.4.0)
93 | - [mount](https://crates.io/crates/mount) (0.2.0 => 0.2.1)
94 | - [multipart](https://crates.io/crates/multipart) (0.7.0 => 0.9.0-alpha.2)
95 | - **major** [mysql](https://crates.io/crates/mysql) (5.2.2 => 7.1.2)
96 | - [nickel](https://crates.io/crates/nickel) (0.8.1 => 0.9.0)
97 | - [oauth2](https://crates.io/crates/oauth2) (0.1.10 => 0.2.0)
98 | - [oauth-client](https://crates.io/crates/oauth-client) (0.1.2 => 0.1.4)
99 | - [openssl](https://crates.io/crates/openssl) (0.7.14 => 0.9.1)
100 | - [oven](https://crates.io/crates/oven) (0.3.0 => 0.4.0)
101 | - [pencil](https://crates.io/crates/pencil) (0.2.1 => 0.3.0)
102 | - [persistent](https://crates.io/crates/persistent) (0.2.0 => 0.2.1)
103 | - [postgres](https://crates.io/crates/postgres) (0.11.9 => 0.13.1)
104 | - [queryst](https://crates.io/crates/queryst) (1.0.0 => 1.0.1)
105 | - [random](https://crates.io/crates/random) (0.12.1 => 0.12.2)
106 | - [regex](https://crates.io/crates/regex) (0.1.73 => 0.1.80)
107 | - [requests](https://crates.io/crates/requests) (0.0.22 => 0.0.25)
108 | - [ring](https://crates.io/crates/ring) (0.2.3 => 0.6.0-alpha)
109 | - [robotparser](https://crates.io/crates/robotparser) (0.4.4 => 0.8.0)
110 | - [rocksdb](https://crates.io/crates/rocksdb) (0.4.1 => 0.5.0-rc.1)
111 | - [router](https://crates.io/crates/router) (0.1.1 => 0.4.0)
112 | - [rs-es](https://crates.io/crates/rs-es) (0.4.6 => 0.6.0)
113 | - [rss](https://crates.io/crates/rss) (0.3.1 => 0.4.0)
114 | - [rusoto](https://crates.io/crates/rusoto) (0.15.3 => 0.18.1)
115 | - [rustache](https://crates.io/crates/rustache) (0.0.2 => 0.0.4)
116 | - [rustc-serialize](https://crates.io/crates/rustc-serialize) (0.3.19 => 0.3.21)
117 | - [rustless](https://crates.io/crates/rustless) (0.8.0 => 0.9.0)
118 | - [rustorm](https://crates.io/crates/rustorm) (0.5.4 => 0.5.6)
119 | - [schemamama](https://crates.io/crates/schemamama) (0.1.0 => 0.2.0)
120 | - [secp256k1](https://crates.io/crates/secp256k1) (0.5.4 => 0.6.0)
121 | - [sentry](https://crates.io/crates/sentry) (0.1.4 => 0.1.8)
122 | - [serde](https://crates.io/crates/serde) (0.8.0-rc3 => 0.8.17)
123 | - [serde_json](https://crates.io/crates/serde_json) (0.7.4 => 0.8.3)
124 | - [slog](https://crates.io/crates/slog) (0.6.0 => 1.3.0)
125 | - [staticfile](https://crates.io/crates/staticfile) (0.2.0 => 0.3.1)
126 | - [syndication](https://crates.io/crates/syndication) (0.2.0 => 0.4.0)
127 | - [tar](https://crates.io/crates/tar) (0.4.7 => 0.4.8)
128 | - [telegram-bot](https://crates.io/crates/telegram-bot) (0.4.2 => 0.5.0)
129 | - [tera](https://crates.io/crates/tera) (0.1.2 => 0.3.1)
130 | - [tiny-http](https://crates.io/crates/tiny-http) (0.5.2 => 0.5.5)
131 | - [urlencoded](https://crates.io/crates/urlencoded) (0.4.0 => 0.4.1)
132 | - [url](https://crates.io/crates/url) (1.1.1 => 1.2.3)
133 | - [uuid](https://crates.io/crates/uuid) (0.2.2 => 0.3.1)
134 | - [vkrs](https://crates.io/crates/vkrs) (0.6.2 => 0.6.3)
135 | - [webpki](https://crates.io/crates/webpki) (0.1.1 => 0.7.0)
136 | - [ws](https://crates.io/crates/ws) (0.5.1 => 0.5.3)
137 | - [yup-oauth2](https://crates.io/crates/yup-oauth2) (0.6.2 => 1.0.1)
138 | - [zip](https://crates.io/crates/zip) (0.1.17 => 0.2.0)
139 | - [zstd](https://crates.io/crates/zstd) (0.1.11 => 0.4.1)
140 |
141 | Anything we missed? [Let us know](https://github.com/bashyHQ/arewewebyet/issues/new)!
--------------------------------------------------------------------------------
/content/news/2016-07-24-RustWebDigest-3-Authentication-Rest-and-more-learning.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "RustWebDigest #3: Authentication, Rust and Rest and more learning"
3 |
4 | [extra]
5 |
6 | source = { author = "ben" }
7 |
8 | tags = [
9 | "logging",
10 | "rest"
11 | ]
12 | +++
13 |
14 | The biggest news since the last RustWebDigest is without question the alpha release of Servo – the web rendering engine entirely written in Rust by Mozilla. It's a big effing deal and if you haven't downloaded it yet, I highly recommend doing so. While its still in alpha stage, it is very impressive what the team has delivered and keeps delivering with their nightly builds 👏.
15 |
16 | The second most widely spread news Armin Ronacher's – you know, the person behind Flask – blog post about doing nice [API development for Rest-APIs with Rust](http://lucumr.pocoo.org/2016/7/10/rust-rest/) that he encountered while implementing the Sentry Rust Client. Similarly big waves only received Dropbox for their [all rust brotli implementation, claiming to bring pied piper to life](https://blogs.dropbox.com/tech/2016/06/lossless-compression-with-brotli/), but weirdly only implementing _de_ compression so far. But both of sources of big credit showing strengths of Rust in very public posts, increasing the visibility and viability of Rust as decent web development environment.
17 |
18 | ## Authentication, remote logging
19 |
20 | After due consideration we've decided to rename the prior OAuth topic to a broader "Authentication/Authorization" topic as suggested by [Marcel Müller](https://github.com/TheNeikos). Thanks, Marcel, good idea!
21 |
22 | Making that topic more broad also allowed us to add more libraries to that area. [Go check it out](/topics/auth/).
23 |
24 | The second big change on the website is around logging: We've added slog (a structured logging facility) and a few remote logging implementations (sentry, airbrake) – very important tooling for every web developer!
25 |
26 |
27 | ## More Learning
28 |
29 | _Disclaimer: the author is co-organiser of RustFest._
30 |
31 | ### Connecting RustFest and View Source
32 |
33 | More of a side note the [RustFest team announced their collaboration with Mozilla sponsored "View Source"](http://www.rustfest.eu/blog/this-week-in-rustfest-7-first-talks-and-viewsource), a conference dedicated to the open web. Within that side note, they announced to be hosting a discussion area about rust at View Source – reaching out to the web developer folks on their own turf. Despite not having announced any web-related talks at that conference, that's an important sign. I highly recommend to get in touch if you are interested making that discussion awesome.
34 |
35 | ### More blogs
36 |
37 | We've also seen a few more interesting blog posts about rust for web development and updates the main website accordingly:
38 |
39 |
40 | - [Rust and Rest](http://lucumr.pocoo.org/2016/7/10/rust-rest/) (as previously mentioned)
41 | - [REST in Rust](https://gsquire.github.io/static/post/rest-in-rust/)
42 | - [Connecting a webservice to a database in Rust](http://hermanradtke.com/2016/05/23/connecting-webservice-database-rust.html)
43 |
44 | ### arewewebyet/web development talk at Berlin Rust User Group
45 |
46 | And finally, you have the chance to see [me on stage this week at Berlin Rust User Group](http://www.meetup.com/Rust-Berlin/events/232583152/), trying to convince the folks in front of me to do web development with rust by implementing a tiny microservice with the help of arewewebyet. Come by and say hi!
47 |
48 |
49 | ## Crate updates:
50 |
51 | ### Added to index:
52 | The following have been added to our tracking index (and the website where appropriate)
53 |
54 | - [airbrake](https://crates.io/crates/airbrake) (0.1.0)
55 | - [brotli](https://crates.io/crates/brotli) (1.0.6)
56 | - [catapult](https://crates.io/crates/catapult) (0.1.2)
57 | - [frank_jwt](https://crates.io/crates/frank_jwt) (2.2.1)
58 | - [horrorshow](https://crates.io/crates/horrorshow) (0.5.6)
59 | - [macaroons](https://crates.io/crates/macaroons) (0.2.1)
60 | - [otpauth](https://crates.io/crates/otpauth) (0.2.5)
61 | - [slog](https://crates.io/crates/slog) (0.6.0)
62 | - [sentry](https://crates.io/crates/sentry) (0.1.4)
63 | - [zstd](https://crates.io/crates/zstd) (0.1.11)
64 |
65 | ### Updates recorded:
66 |
67 | Further more we recorded new releases to the following crates
68 |
69 | - [backtrace](https://crates.io/crates/backtrace) (0.2.1 => 0.2.3)
70 | - [base64](https://crates.io/crates/base64) (0.1.1 => 0.2.0)
71 | - [bodyparser](https://crates.io/crates/bodyparser) (0.3.0 => 0.4.0)
72 | - [cassandra](https://crates.io/crates/cassandra) (0.6.10 => 0.7.2)
73 | - [clap](https://crates.io/crates/clap) (2.5.1 => 2.9.3)
74 | - [cookie](https://crates.io/crates/cookie) (0.2.4 => 0.2.5)
75 | - [crust](https://crates.io/crates/crust) (0.14.0 => 0.16.1)
76 | - [curl](https://crates.io/crates/curl) (0.2.19 => 0.3.1)
77 | - [dbmigrate](https://crates.io/crates/dbmigrate) (0.2.3 => 0.2.4)
78 | - [discord](https://crates.io/crates/discord) (0.5.0 => 0.6.0)
79 | - [docopt](https://crates.io/crates/docopt) (0.6.80 => 0.6.81)
80 | - [ease](https://crates.io/crates/ease) (0.4.2 => 0.5.0)
81 | - [env_logger](https://crates.io/crates/env_logger) (0.3.3 => 0.3.4)
82 | - [etcd](https://crates.io/crates/etcd) (0.5.3 => 0.5.4)
83 | - _feedreader_ was renamed to [feed](https://crates.io/crates/feed) (1.2.3)
84 | - [fnv](https://crates.io/crates/fnv) (1.0.2 => 1.0.3)
85 | - [formdata](https://crates.io/crates/formdata) (0.8.2 => 0.9.0)
86 | - [ftp](https://crates.io/crates/ftp) (0.0.7 => 0.0.8)
87 | - [googl](https://crates.io/crates/googl) (0.0.3 => 0.0.4)
88 | - [handlebars-iron](https://crates.io/crates/handlebars-iron) (0.15.2 => 0.15.3)
89 | - [handlebars](https://crates.io/crates/handlebars) (0.16.1 => 0.19.0)
90 | - [hubcaps](https://crates.io/crates/hubcaps) (0.2.1 => 0.2.2)
91 | - [hyper](https://crates.io/crates/hyper) (0.9.6 => 0.9.10)
92 | - [imap](https://crates.io/crates/imap) (0.0.5 => 0.0.6)
93 | - [influent](https://crates.io/crates/influent) (0.2.2 => 0.3.0)
94 | - [iron](https://crates.io/crates/iron) (0.3.0 => 0.4.0)
95 | - [iron_vhosts](https://crates.io/crates/iron_vhosts) (0.1.0 => 0.2.0)
96 | - [json](https://crates.io/crates/json) (0.8.4 => 0.10.0)
97 | - [json_macros](https://crates.io/crates/json_macros) (0.3.0 => 0.3.2)
98 | - [jsonrpc](https://crates.io/crates/jsonrpc) (0.7.4 => 0.7.6)
99 | - [kafka](https://crates.io/crates/kafka) (0.3.1 => 0.4.1)
100 | - [libsodium-sys](https://crates.io/crates/libsodium-sys) (0.0.10 => 0.0.12)
101 | - [liquid](https://crates.io/crates/liquid) (0.8.0 => 0.8.4)
102 | - [log4rs](https://crates.io/crates/log4rs) (0.4.4 => 0.4.8)
103 | - [maud](https://crates.io/crates/maud) (0.8.1 => 0.9.0)
104 | - [mongo_driver](https://crates.io/crates/mongo_driver) (0.2.4 => 0.3.0)
105 | - [mount](https://crates.io/crates/mount) (0.1.0 => 0.2.0)
106 | - [mysql](https://crates.io/crates/mysql) (5.0.0 => 5.2.2)
107 | - [openssl](https://crates.io/crates/openssl) (0.7.13 => 0.7.14)
108 | - [pencil](https://crates.io/crates/pencil) (0.2.0 => 0.2.1)
109 | - [persistent](https://crates.io/crates/persistent) (0.1.0 => 0.2.0)
110 | - [pop3](https://crates.io/crates/pop3) (0.0.5 => 0.0.6)
111 | - [postgres](https://crates.io/crates/postgres) (0.11.7 => 0.11.9)
112 | - [random](https://crates.io/crates/random) (0.10.0 => 0.12.1)
113 | - [redis](https://crates.io/crates/redis) (0.5.3 => 0.7.0)
114 | - [regex](https://crates.io/crates/regex) (0.1.71 => 0.1.73)
115 | - [requests](https://crates.io/crates/requests) (0.0.10 => 0.0.22)
116 | - [rocksdb](https://crates.io/crates/rocksdb) (0.3.5 => 0.4.1)
117 | - [rs-es](https://crates.io/crates/rs-es) (0.3.4 => 0.4.6)
118 | - [rusoto](https://crates.io/crates/rusoto) (0.13.1 => 0.15.3)
119 | - [rusqlite](https://crates.io/crates/rusqlite) (0.7.2 => 0.7.3)
120 | - [rustache](https://crates.io/crates/rustache) (0.0.1 => 0.0.2)
121 | - [rustful](https://crates.io/crates/rustful) (0.8.0 => 0.9.0)
122 | - [rustorm](https://crates.io/crates/rustorm) (0.4.3 => 0.5.4)
123 | - [serde](https://crates.io/crates/serde) (0.7.5 => 0.8.0-rc3)
124 | - [serde_json](https://crates.io/crates/serde_json) (0.7.0 => 0.7.4)
125 | - [syndication](https://crates.io/crates/syndication) (0.1.1 => 0.2.0)
126 | - [syslog](https://crates.io/crates/syslog) (3.1.0 => 3.2.0)
127 | - [tar](https://crates.io/crates/tar) (0.4.5 => 0.4.7)
128 | - [tempfile](https://crates.io/crates/tempfile) (2.1.3 => 2.1.4)
129 | - [tera](https://crates.io/crates/tera) (0.1.1 => 0.1.2)
130 | - [tiny-http](https://crates.io/crates/tiny-http) (0.5.1 => 0.5.2)
131 | - [url](https://crates.io/crates/url) (1.1.0 => 1.1.1)
132 | - [urlencoded](https://crates.io/crates/urlencoded) (0.3.0 => 0.4.0)
133 | - [ws](https://crates.io/crates/ws) (0.4.7 => 0.5.1)
134 | - [yup-oauth2](https://crates.io/crates/yup-oauth2) (0.6.1 => 0.6.2)
135 |
136 | Anything we missed? [Let us know](https://github.com/bashyHQ/arewewebyet/issues/new)!
137 |
--------------------------------------------------------------------------------
/content/news/2016-05-25-RustWebDigest-2-Learn-More-With-Blogs-And-Events.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "RustWebDigest #2: Learn More with Blogs and Events"
3 |
4 | [extra]
5 |
6 | source = { author = "ben" }
7 |
8 | tags = [
9 | "frameworks",
10 | "digest",
11 | "events"
12 | ]
13 | +++
14 |
15 | Great things have happened in the Rust(Web) Ecosphere since the first RustWebDigest was published about two months ago. You've probably figured by now that we are doing this digest on an irregular bases with a summary of news as we see fit. If you want to help us get these out more regularly, we are looking for more people to join the team!
16 |
17 | ## Events
18 |
19 | The announcement period for this years autumn conference season has come and it has blasting us all away with three major events dedicated to Rust. And all of them continue the trend to have another dedicated workshop day alongside their talk days. We hope to see plenty Web-Related Workshops there!
20 |
21 | It goes without saying that we'd love to have you send in a talk proposal (and workshop proposals!) – especially if you want to talk/teach about the Web!
22 |
23 | ### RustConf
24 |
25 | On **September 10th** there will be another official [RustConf](http://rustconf.com/) organised by the RustCore Team. It will take place in Portland, Oregon, USA. Further more, they also offer a day of training by the Rust Core Team if you come a day early.
26 |
27 | Tickets aren't available yet, but the [Call for Papers is still open until Jun 5th](http://cfp.rustconf.com/events/rustconf-2016).
28 |
29 | ### RustFest
30 |
31 | _(Disclaimer: The author is part of the organising team!)_
32 |
33 | Following just a week later on Sept 17th [RustFest](http://www.rustfest.eu) will be the first dedicated Rust Conference on european grounds. Taking place in lovely, central Berlin this community conference will host one day of talks followed by a workshop day.
34 |
35 | Tickets aren't available yet either, however you still have until [June 20th to send in your talk proposal](https://cfp.rustfest.eu/authentications).
36 |
37 | ### Rust Belt Rust
38 |
39 | Last but not least, [Rust Belt Rust](http://www.rust-belt-rust.com/) will take place again October 29th & 28th in Pittsburgh, PA, USA. It also features one day of workshops, followed by a single track talks day.
40 |
41 | Although the latest in the year, the CfP is already closed. Tickets aren't available yet. Nothing to do other than staying tuned.
42 |
43 | ## More Example Blogs
44 |
45 | For those, who can't wait to learn about stuff at the conferences – and their official workshop days, you are in luck. Since the last publication, we've also seen an influx of new blog posts helping you get started with Rust Web. We've also restructured the Learn-More-Section on the website to allow space for more posts (ordered latest first). The latest additions are:
46 |
47 | - [Let's Build a Web Server in Rust](https://dfockler.github.io/2016/05/20/web-server.html)
48 | - [Creating a basic webservice in Rust](http://hermanradtke.com/2016/05/16/creating-a-basic-webservice-in-rust.html)
49 | - [Rust for Node.js developers](http://fredrik.anderzon.se/2016/05/10/rust-for-node-developers-part-1-introduction/)
50 |
51 |
52 | ### Notable crates
53 |
54 | [Sapper](https://github.com/sappworks/sapper) is not yet released as a crate but has already quite some impressive benchmarks, showing how Rust can boost Web a ton. [Sapper Works](https://github.com/sappworks) appears to want to build an entire ecosystem for "snappy" web development. We are excited to see what will come out of that!
55 |
56 | [Neon](http://calculist.org/blog/2015/12/23/neon-node-rust/) combines Node and Rust. It essentially allows you to write native code in rust, which can then easily interact with NodeJS. This is clearly web – somehow, but we aren't really sure where to put this in the category tree. If you have an idea, [let us know here](https://github.com/bashyHQ/arewewebyet/issues/31).
57 |
58 | [RustW](https://github.com/nrc/rustw) is a web frontend for the rust compiler. Allowing you to paste your code to a web-server and see the results (and errors) rendered in a webpage.
59 |
60 | [Hyper announced](http://seanmonstar.com/post/141495445652/async-hyper) they will be adding asynchronous IO – using our all beloved MIO. The branch mentioned in the blog post has even been merged now and it should be working with the latest release!
61 |
62 | ### Added to index:
63 | The following have been added to our tracking index (and the website where appropriate)
64 |
65 | - [bitsparrow](https://crates.io/crates/bitsparrow) (0.3.2)
66 | - [tera](https://crates.io/crates/tera) (0.1.1)
67 | - [frank_jwt](https://crates.io/crates/frank_jwt) (2.1.1)
68 | - [iron_json_response](https://crates.io/crates/iron_json_response) (0.1.1)
69 | - [log4rs](https://crates.io/crates/log4rs) (0.4.4)
70 | - [flexi_logger](https://crates.io/crates/flexi_logger) (0.5.0)
71 |
72 | ### Updates recorded:
73 |
74 | Further more we recorded new releases to the following crates
75 |
76 | - [amqp](https://crates.io/crates/amqp) (0.0.15 => 0.0.16)
77 | - [atom_syndication](https://crates.io/crates/atom_syndication) (0.1.3 => 0.1.4)
78 | - [backtrace](https://crates.io/crates/backtrace) (0.1.8 => 0.2.1)
79 | - [bcrypt](https://crates.io/crates/bcrypt) (0.1.0 => 0.1.1)
80 | - [bodyparser](https://crates.io/crates/bodyparser) (0.2.0 => 0.3.0)
81 | - [cassandra](https://crates.io/crates/cassandra) (0.6.7 => 0.6.10)
82 | - [chrono](https://crates.io/crates/chrono) (0.2.20 => 0.2.22)
83 | - [clap](https://crates.io/crates/clap) (2.1.2 => 2.5.1)
84 | - [cookie](https://crates.io/crates/cookie) (0.2.2 => 0.2.4)
85 | - [crust](https://crates.io/crates/crust) (0.9.0 => 0.14.0)
86 | - [curl](https://crates.io/crates/curl) (0.2.16 => 0.2.19)
87 | - [dbmigrate](https://crates.io/crates/dbmigrate) (0.2.2 => 0.2.3)
88 | - [diesel](https://crates.io/crates/diesel) (0.5.0 => 0.6.2)
89 | - [discord](https://crates.io/crates/discord) (0.4.0 => 0.5.0)
90 | - [djangohashers](https://crates.io/crates/djangohashers) (0.1.0 => 0.2.2)
91 | - [doapi](https://crates.io/crates/doapi) (0.1.2 => 0.1.3)
92 | - [docopt](https://crates.io/crates/docopt) (0.6.78 => 0.6.80)
93 | - [env_logger](https://crates.io/crates/env_logger) (0.3.2 => 0.3.3)
94 | - [etcd](https://crates.io/crates/etcd) (0.3.1 => 0.5.3)
95 | - [farmhash](https://crates.io/crates/farmhash) (1.1.4 => 1.1.5)
96 | - [fastcgi](https://crates.io/crates/fastcgi) (1.0.0-alpha.3 => 1.0.0-beta)
97 | - [flate2](https://crates.io/crates/flate2) (0.2.13 => 0.2.14)
98 | - [formdata](https://crates.io/crates/formdata) (0.7.9 => 0.8.2)
99 | - [gettext](https://crates.io/crates/gettext) (0.1.0 => 0.2.0)
100 | - [handlebars-iron](https://crates.io/crates/handlebars-iron) (0.12.0 => 0.15.2)
101 | - [handlebars](https://crates.io/crates/handlebars) (0.15.0 => 0.16.1)
102 | - [http2parse](https://crates.io/crates/http2parse) (0.2.1 => 0.2.2)
103 | - [hubcaps](https://crates.io/crates/hubcaps) (0.1.1 => 0.2.1)
104 | - [hyper](https://crates.io/crates/hyper) (0.7.2 => 0.9.6)
105 | - [inflate](https://crates.io/crates/inflate) (0.1.0 => 0.1.1)
106 | - [inth-oauth2](https://crates.io/crates/inth-oauth2) (0.8.0 => 0.10.0)
107 | - [iron-hmac](https://crates.io/crates/iron-hmac) (0.3.0 => 0.3.3)
108 | - [iron-login](https://crates.io/crates/iron-login) (0.2.0 => 0.4.1)
109 | - [iron-test](https://crates.io/crates/iron-test) (0.2.0 => 0.3.0)
110 | - [iron](https://crates.io/crates/iron) (0.2.6 => 0.3.0)
111 | - [jsonway](https://crates.io/crates/jsonway) (0.3.5 => 1.0.0)
112 | - [kafka](https://crates.io/crates/kafka) (0.2.0 => 0.3.1)
113 | - [libsodium-sys](https://crates.io/crates/libsodium-sys) (0.0.9 => 0.0.10)
114 | - [liquid](https://crates.io/crates/liquid) (0.4.1 => 0.8.0)
115 | - [log](https://crates.io/crates/log) (0.3.5 => 0.3.6)
116 | - [maud](https://crates.io/crates/maud) (0.8.0 => 0.8.1)
117 | - [mongo_driver](https://crates.io/crates/mongo_driver) (0.2.2 => 0.2.4)
118 | - [mongodb](https://crates.io/crates/mongodb) (0.1.3 => 0.1.4)
119 | - [mount](https://crates.io/crates/mount) (0.0.10 => 0.1.0)
120 | - [multipart](https://crates.io/crates/multipart) (0.5.0-alpha.1 => 0.7.0)
121 | - [mysql](https://crates.io/crates/mysql) (2.1.0 => 5.0.0)
122 | - [names](https://crates.io/crates/names) (0.10.0 => 0.11.0)
123 | - [nickel](https://crates.io/crates/nickel) (0.7.3 => 0.8.1)
124 | - [oauth2](https://crates.io/crates/oauth2) (0.1.9 => 0.1.10)
125 | - [openssl](https://crates.io/crates/openssl) (0.7.6 => 0.7.13)
126 | - [oven](https://crates.io/crates/oven) (0.2.16 => 0.3.0)
127 | - [pencil](https://crates.io/crates/pencil) (0.1.0 => 0.2.0)
128 | - [persistent](https://crates.io/crates/persistent) (0.0.9 => 0.1.0)
129 | - [postgres](https://crates.io/crates/postgres) (0.11.4 => 0.11.7)
130 | - [queryst](https://crates.io/crates/queryst) (0.1.16 => 1.0.0)
131 | - [random](https://crates.io/crates/random) (0.9.2 => 0.10.0)
132 | - [raven](https://crates.io/crates/raven) (0.2.0 => 0.2.1)
133 | - [redis](https://crates.io/crates/redis) (0.5.2 => 0.5.3)
134 | - [regex](https://crates.io/crates/regex) (0.1.55 => 0.1.71)
135 | - [requests](https://crates.io/crates/requests) (0.0.4 => 0.0.10)
136 | - [robotparser](https://crates.io/crates/robotparser) (0.4.1 => 0.4.4)
137 | - [rocksdb](https://crates.io/crates/rocksdb) (0.3.0 => 0.3.5)
138 | - [rotor-http](https://crates.io/crates/rotor-http) (0.6.0 => 0.7.0)
139 | - [router](https://crates.io/crates/router) (0.1.0 => 0.1.1)
140 | - [rs-es](https://crates.io/crates/rs-es) (0.2.5 => 0.3.4)
141 | - [rusoto](https://crates.io/crates/rusoto) (0.12.1 => 0.13.1)
142 | - [rusqlite](https://crates.io/crates/rusqlite) (0.6.0 => 0.7.2)
143 | - [rust-crypto](https://crates.io/crates/rust-crypto) (0.2.34 => 0.2.36)
144 | - [rustc-serialize](https://crates.io/crates/rustc-serialize) (0.3.18 => 0.3.19)
145 | - [rustful](https://crates.io/crates/rustful) (0.7.0 => 0.8.0)
146 | - [schemamama](https://crates.io/crates/schemamama) (0.0.11 => 0.1.0)
147 | - [serde](https://crates.io/crates/serde) (0.7.0 => 0.7.5)
148 | - [staticfile](https://crates.io/crates/staticfile) (0.1.0 => 0.2.0)
149 | - [tar](https://crates.io/crates/tar) (0.4.4 => 0.4.5)
150 | - [telegram-bot](https://crates.io/crates/telegram-bot) (0.4.1 => 0.4.2)
151 | - [tempfile](https://crates.io/crates/tempfile) (2.1.1 => 2.1.3)
152 | - [time](https://crates.io/crates/time) (0.1.34 => 0.1.35)
153 | - [url](https://crates.io/crates/url) (0.5.7 => 1.1.0)
154 | - [urlencoded](https://crates.io/crates/urlencoded) (0.2.1 => 0.3.0)
155 | - [uuid](https://crates.io/crates/uuid) (0.1.18 => 0.2.2)
156 | - [vkrs](https://crates.io/crates/vkrs) (0.6.1 => 0.6.2)
157 | - [websocket](https://crates.io/crates/websocket) (0.15.1 => 0.17.1)
158 | - [ws](https://crates.io/crates/ws) (0.4.5 => 0.4.7)
159 | - [yup-oauth2](https://crates.io/crates/yup-oauth2) (0.5.5 => 0.6.1)
160 | - [zip](https://crates.io/crates/zip) (0.1.16 => 0.1.17)
161 |
162 | Anything we missed? [Let us know](https://github.com/bashyHQ/arewewebyet/issues/new)!
163 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Attribution 4.0 International
2 |
3 | =======================================================================
4 |
5 | Creative Commons Corporation ("Creative Commons") is not a law firm and
6 | does not provide legal services or legal advice. Distribution of
7 | Creative Commons public licenses does not create a lawyer-client or
8 | other relationship. Creative Commons makes its licenses and related
9 | information available on an "as-is" basis. Creative Commons gives no
10 | warranties regarding its licenses, any material licensed under their
11 | terms and conditions, or any related information. Creative Commons
12 | disclaims all liability for damages resulting from their use to the
13 | fullest extent possible.
14 |
15 | Using Creative Commons Public Licenses
16 |
17 | Creative Commons public licenses provide a standard set of terms and
18 | conditions that creators and other rights holders may use to share
19 | original works of authorship and other material subject to copyright
20 | and certain other rights specified in the public license below. The
21 | following considerations are for informational purposes only, are not
22 | exhaustive, and do not form part of our licenses.
23 |
24 | Considerations for licensors: Our public licenses are
25 | intended for use by those authorized to give the public
26 | permission to use material in ways otherwise restricted by
27 | copyright and certain other rights. Our licenses are
28 | irrevocable. Licensors should read and understand the terms
29 | and conditions of the license they choose before applying it.
30 | Licensors should also secure all rights necessary before
31 | applying our licenses so that the public can reuse the
32 | material as expected. Licensors should clearly mark any
33 | material not subject to the license. This includes other CC-
34 | licensed material, or material used under an exception or
35 | limitation to copyright. More considerations for licensors:
36 | wiki.creativecommons.org/Considerations_for_licensors
37 |
38 | Considerations for the public: By using one of our public
39 | licenses, a licensor grants the public permission to use the
40 | licensed material under specified terms and conditions. If
41 | the licensor's permission is not necessary for any reason--for
42 | example, because of any applicable exception or limitation to
43 | copyright--then that use is not regulated by the license. Our
44 | licenses grant only permissions under copyright and certain
45 | other rights that a licensor has authority to grant. Use of
46 | the licensed material may still be restricted for other
47 | reasons, including because others have copyright or other
48 | rights in the material. A licensor may make special requests,
49 | such as asking that all changes be marked or described.
50 | Although not required by our licenses, you are encouraged to
51 | respect those requests where reasonable. More_considerations
52 | for the public:
53 | wiki.creativecommons.org/Considerations_for_licensees
54 |
55 | =======================================================================
56 |
57 | Creative Commons Attribution 4.0 International Public License
58 |
59 | By exercising the Licensed Rights (defined below), You accept and agree
60 | to be bound by the terms and conditions of this Creative Commons
61 | Attribution 4.0 International Public License ("Public License"). To the
62 | extent this Public License may be interpreted as a contract, You are
63 | granted the Licensed Rights in consideration of Your acceptance of
64 | these terms and conditions, and the Licensor grants You such rights in
65 | consideration of benefits the Licensor receives from making the
66 | Licensed Material available under these terms and conditions.
67 |
68 |
69 | Section 1 -- Definitions.
70 |
71 | a. Adapted Material means material subject to Copyright and Similar
72 | Rights that is derived from or based upon the Licensed Material
73 | and in which the Licensed Material is translated, altered,
74 | arranged, transformed, or otherwise modified in a manner requiring
75 | permission under the Copyright and Similar Rights held by the
76 | Licensor. For purposes of this Public License, where the Licensed
77 | Material is a musical work, performance, or sound recording,
78 | Adapted Material is always produced where the Licensed Material is
79 | synched in timed relation with a moving image.
80 |
81 | b. Adapter's License means the license You apply to Your Copyright
82 | and Similar Rights in Your contributions to Adapted Material in
83 | accordance with the terms and conditions of this Public License.
84 |
85 | c. Copyright and Similar Rights means copyright and/or similar rights
86 | closely related to copyright including, without limitation,
87 | performance, broadcast, sound recording, and Sui Generis Database
88 | Rights, without regard to how the rights are labeled or
89 | categorized. For purposes of this Public License, the rights
90 | specified in Section 2(b)(1)-(2) are not Copyright and Similar
91 | Rights.
92 |
93 | d. Effective Technological Measures means those measures that, in the
94 | absence of proper authority, may not be circumvented under laws
95 | fulfilling obligations under Article 11 of the WIPO Copyright
96 | Treaty adopted on December 20, 1996, and/or similar international
97 | agreements.
98 |
99 | e. Exceptions and Limitations means fair use, fair dealing, and/or
100 | any other exception or limitation to Copyright and Similar Rights
101 | that applies to Your use of the Licensed Material.
102 |
103 | f. Licensed Material means the artistic or literary work, database,
104 | or other material to which the Licensor applied this Public
105 | License.
106 |
107 | g. Licensed Rights means the rights granted to You subject to the
108 | terms and conditions of this Public License, which are limited to
109 | all Copyright and Similar Rights that apply to Your use of the
110 | Licensed Material and that the Licensor has authority to license.
111 |
112 | h. Licensor means the individual(s) or entity(ies) granting rights
113 | under this Public License.
114 |
115 | i. Share means to provide material to the public by any means or
116 | process that requires permission under the Licensed Rights, such
117 | as reproduction, public display, public performance, distribution,
118 | dissemination, communication, or importation, and to make material
119 | available to the public including in ways that members of the
120 | public may access the material from a place and at a time
121 | individually chosen by them.
122 |
123 | j. Sui Generis Database Rights means rights other than copyright
124 | resulting from Directive 96/9/EC of the European Parliament and of
125 | the Council of 11 March 1996 on the legal protection of databases,
126 | as amended and/or succeeded, as well as other essentially
127 | equivalent rights anywhere in the world.
128 |
129 | k. You means the individual or entity exercising the Licensed Rights
130 | under this Public License. Your has a corresponding meaning.
131 |
132 |
133 | Section 2 -- Scope.
134 |
135 | a. License grant.
136 |
137 | 1. Subject to the terms and conditions of this Public License,
138 | the Licensor hereby grants You a worldwide, royalty-free,
139 | non-sublicensable, non-exclusive, irrevocable license to
140 | exercise the Licensed Rights in the Licensed Material to:
141 |
142 | a. reproduce and Share the Licensed Material, in whole or
143 | in part; and
144 |
145 | b. produce, reproduce, and Share Adapted Material.
146 |
147 | 2. Exceptions and Limitations. For the avoidance of doubt, where
148 | Exceptions and Limitations apply to Your use, this Public
149 | License does not apply, and You do not need to comply with
150 | its terms and conditions.
151 |
152 | 3. Term. The term of this Public License is specified in Section
153 | 6(a).
154 |
155 | 4. Media and formats; technical modifications allowed. The
156 | Licensor authorizes You to exercise the Licensed Rights in
157 | all media and formats whether now known or hereafter created,
158 | and to make technical modifications necessary to do so. The
159 | Licensor waives and/or agrees not to assert any right or
160 | authority to forbid You from making technical modifications
161 | necessary to exercise the Licensed Rights, including
162 | technical modifications necessary to circumvent Effective
163 | Technological Measures. For purposes of this Public License,
164 | simply making modifications authorized by this Section 2(a)
165 | (4) never produces Adapted Material.
166 |
167 | 5. Downstream recipients.
168 |
169 | a. Offer from the Licensor -- Licensed Material. Every
170 | recipient of the Licensed Material automatically
171 | receives an offer from the Licensor to exercise the
172 | Licensed Rights under the terms and conditions of this
173 | Public License.
174 |
175 | b. No downstream restrictions. You may not offer or impose
176 | any additional or different terms or conditions on, or
177 | apply any Effective Technological Measures to, the
178 | Licensed Material if doing so restricts exercise of the
179 | Licensed Rights by any recipient of the Licensed
180 | Material.
181 |
182 | 6. No endorsement. Nothing in this Public License constitutes or
183 | may be construed as permission to assert or imply that You
184 | are, or that Your use of the Licensed Material is, connected
185 | with, or sponsored, endorsed, or granted official status by,
186 | the Licensor or others designated to receive attribution as
187 | provided in Section 3(a)(1)(A)(i).
188 |
189 | b. Other rights.
190 |
191 | 1. Moral rights, such as the right of integrity, are not
192 | licensed under this Public License, nor are publicity,
193 | privacy, and/or other similar personality rights; however, to
194 | the extent possible, the Licensor waives and/or agrees not to
195 | assert any such rights held by the Licensor to the limited
196 | extent necessary to allow You to exercise the Licensed
197 | Rights, but not otherwise.
198 |
199 | 2. Patent and trademark rights are not licensed under this
200 | Public License.
201 |
202 | 3. To the extent possible, the Licensor waives any right to
203 | collect royalties from You for the exercise of the Licensed
204 | Rights, whether directly or through a collecting society
205 | under any voluntary or waivable statutory or compulsory
206 | licensing scheme. In all other cases the Licensor expressly
207 | reserves any right to collect such royalties.
208 |
209 |
210 | Section 3 -- License Conditions.
211 |
212 | Your exercise of the Licensed Rights is expressly made subject to the
213 | following conditions.
214 |
215 | a. Attribution.
216 |
217 | 1. If You Share the Licensed Material (including in modified
218 | form), You must:
219 |
220 | a. retain the following if it is supplied by the Licensor
221 | with the Licensed Material:
222 |
223 | i. identification of the creator(s) of the Licensed
224 | Material and any others designated to receive
225 | attribution, in any reasonable manner requested by
226 | the Licensor (including by pseudonym if
227 | designated);
228 |
229 | ii. a copyright notice;
230 |
231 | iii. a notice that refers to this Public License;
232 |
233 | iv. a notice that refers to the disclaimer of
234 | warranties;
235 |
236 | v. a URI or hyperlink to the Licensed Material to the
237 | extent reasonably practicable;
238 |
239 | b. indicate if You modified the Licensed Material and
240 | retain an indication of any previous modifications; and
241 |
242 | c. indicate the Licensed Material is licensed under this
243 | Public License, and include the text of, or the URI or
244 | hyperlink to, this Public License.
245 |
246 | 2. You may satisfy the conditions in Section 3(a)(1) in any
247 | reasonable manner based on the medium, means, and context in
248 | which You Share the Licensed Material. For example, it may be
249 | reasonable to satisfy the conditions by providing a URI or
250 | hyperlink to a resource that includes the required
251 | information.
252 |
253 | 3. If requested by the Licensor, You must remove any of the
254 | information required by Section 3(a)(1)(A) to the extent
255 | reasonably practicable.
256 |
257 | 4. If You Share Adapted Material You produce, the Adapter's
258 | License You apply must not prevent recipients of the Adapted
259 | Material from complying with this Public License.
260 |
261 |
262 | Section 4 -- Sui Generis Database Rights.
263 |
264 | Where the Licensed Rights include Sui Generis Database Rights that
265 | apply to Your use of the Licensed Material:
266 |
267 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right
268 | to extract, reuse, reproduce, and Share all or a substantial
269 | portion of the contents of the database;
270 |
271 | b. if You include all or a substantial portion of the database
272 | contents in a database in which You have Sui Generis Database
273 | Rights, then the database in which You have Sui Generis Database
274 | Rights (but not its individual contents) is Adapted Material; and
275 |
276 | c. You must comply with the conditions in Section 3(a) if You Share
277 | all or a substantial portion of the contents of the database.
278 |
279 | For the avoidance of doubt, this Section 4 supplements and does not
280 | replace Your obligations under this Public License where the Licensed
281 | Rights include other Copyright and Similar Rights.
282 |
283 |
284 | Section 5 -- Disclaimer of Warranties and Limitation of Liability.
285 |
286 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
287 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
288 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
289 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
290 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
291 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
292 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
293 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
294 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
295 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
296 |
297 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
298 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
299 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
300 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
301 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
302 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
303 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
304 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
305 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
306 |
307 | c. The disclaimer of warranties and limitation of liability provided
308 | above shall be interpreted in a manner that, to the extent
309 | possible, most closely approximates an absolute disclaimer and
310 | waiver of all liability.
311 |
312 |
313 | Section 6 -- Term and Termination.
314 |
315 | a. This Public License applies for the term of the Copyright and
316 | Similar Rights licensed here. However, if You fail to comply with
317 | this Public License, then Your rights under this Public License
318 | terminate automatically.
319 |
320 | b. Where Your right to use the Licensed Material has terminated under
321 | Section 6(a), it reinstates:
322 |
323 | 1. automatically as of the date the violation is cured, provided
324 | it is cured within 30 days of Your discovery of the
325 | violation; or
326 |
327 | 2. upon express reinstatement by the Licensor.
328 |
329 | For the avoidance of doubt, this Section 6(b) does not affect any
330 | right the Licensor may have to seek remedies for Your violations
331 | of this Public License.
332 |
333 | c. For the avoidance of doubt, the Licensor may also offer the
334 | Licensed Material under separate terms or conditions or stop
335 | distributing the Licensed Material at any time; however, doing so
336 | will not terminate this Public License.
337 |
338 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
339 | License.
340 |
341 |
342 | Section 7 -- Other Terms and Conditions.
343 |
344 | a. The Licensor shall not be bound by any additional or different
345 | terms or conditions communicated by You unless expressly agreed.
346 |
347 | b. Any arrangements, understandings, or agreements regarding the
348 | Licensed Material not stated herein are separate from and
349 | independent of the terms and conditions of this Public License.
350 |
351 |
352 | Section 8 -- Interpretation.
353 |
354 | a. For the avoidance of doubt, this Public License does not, and
355 | shall not be interpreted to, reduce, limit, restrict, or impose
356 | conditions on any use of the Licensed Material that could lawfully
357 | be made without permission under this Public License.
358 |
359 | b. To the extent possible, if any provision of this Public License is
360 | deemed unenforceable, it shall be automatically reformed to the
361 | minimum extent necessary to make it enforceable. If the provision
362 | cannot be reformed, it shall be severed from this Public License
363 | without affecting the enforceability of the remaining terms and
364 | conditions.
365 |
366 | c. No term or condition of this Public License will be waived and no
367 | failure to comply consented to unless expressly agreed to by the
368 | Licensor.
369 |
370 | d. Nothing in this Public License constitutes or may be interpreted
371 | as a limitation upon, or waiver of, any privileges and immunities
372 | that apply to the Licensor or You, including from the legal
373 | processes of any jurisdiction or authority.
374 |
375 |
376 | =======================================================================
377 |
378 | Creative Commons is not a party to its public
379 | licenses. Notwithstanding, Creative Commons may elect to apply one of
380 | its public licenses to material it publishes and in those instances
381 | will be considered the “Licensor.” The text of the Creative Commons
382 | public licenses is dedicated to the public domain under the CC0 Public
383 | Domain Dedication. Except for the limited purpose of indicating that
384 | material is shared under a Creative Commons public license or as
385 | otherwise permitted by the Creative Commons policies published at
386 | creativecommons.org/policies, Creative Commons does not authorize the
387 | use of the trademark "Creative Commons" or any other trademark or logo
388 | of Creative Commons without its prior written consent including,
389 | without limitation, in connection with any unauthorized modifications
390 | to any of its public licenses or any other arrangements,
391 | understandings, or agreements concerning use of licensed material. For
392 | the avoidance of doubt, this paragraph does not form part of the
393 | public licenses.
394 |
395 | Creative Commons may be contacted at creativecommons.org.
396 |
--------------------------------------------------------------------------------