Giter Club home page Giter Club logo

conduit's Introduction

This project had been used by the crates.io project, but has since been replaced and is no longer maintained!

Check out the web-programming::http-server category on crates.io for possible alternatives.

conduit's People

Contributors

aigeruth avatar alexcrichton avatar carols10cents avatar johntitor avatar jtgeibel avatar reem avatar renovate-bot avatar renovate[bot] avatar sfackler avatar sgrif avatar steveklabnik avatar turbo87 avatar wycats avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

conduit's Issues

Dependency Dashboard

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Awaiting Schedule

These updates are awaiting their schedule. Click on a checkbox to get an update now.

  • Lock file maintenance

Ignored or Blocked

These are blocked by an existing closed PR and will not be recreated unless you click a checkbox below.

Detected dependencies

cargo
conduit-conditional-get/Cargo.toml
  • time 0.2
conduit-middleware/Cargo.toml
conduit-router/Cargo.toml
  • route-recognizer 0.3
  • thiserror 1.0.38
  • tracing 0.1.37
  • lazy_static 1.4.0
  • tracing-subscriber 0.3.16
conduit-static/Cargo.toml
  • conduit-mime-types 0.8
  • time 0.2
  • filetime 0.2
  • tempdir 0.3
conduit-test/Cargo.toml
conduit/Cargo.toml
  • http 0.2
github-actions
.github/workflows/ci.yml
  • actions/checkout v3
  • Swatinem/rust-cache v2.2.0
  • actions/checkout v3
  • Swatinem/rust-cache v2.2.0
  • actions/checkout v3
  • Swatinem/rust-cache v2.2.0
  • actions/checkout v3
  • Swatinem/rust-cache v2.2.0

  • Check this box to trigger a request for Renovate to run again on this repository

Add additional documentation

I have recently been investigating various rust web frameworks and found this one. I know it is in use in hosting the crates.io repository, and was hoping it would be useful for my needs as well.

However it appears to be lacking any form of documentation currently, I was wondering if this was something the project wanted? If so I would be willing to try to help out with this.

Thoughts

As requested by @wycats on IRC, here are some of my thoughts on what conduit should change/adapt so that it can be a stable standard for Rust web development:

Primarily Conduit needs to decide whether it is a "raw" specification for relatively low-level HTTP implementations or a high level specification for full web applications to use directly.

  • Conduit needs to have external dependencies - putting everything in core just makes maintenance and future upgrade harder.
  • Method extensions being &'static str is problematic, since incoming requests will always produce non-'static strings.
  • Request should:
    • Contain a typed Url struct instead of scheme, host, virtual_root, path, and query_string.
    • Either use a more full-flegded extension infrastructure like rust-plugin or not include extensions.
  • Headers should:
    • Have more convenience methods.
    • Depending on the overall direction of Headers, either remain raw or grow a typed representation.
  • If conduit is meant to be used directly, Handler should use a better error trait than Show
  • Response should support streaming data directly over an incoming stream without allocation.
  • Status should be a strongly-typed enum with an auto-generated .phrase() method.

I'm not sure what the future of conduit is. It's entirely possible that it could develop a really nice high level interface and be used by all higher level frameworks - however, it's also possible that it could tie itself to a complex interface which frameworks decide they don't want all of and that could further fragment Rust web dev.

Relicense under dual MIT/Apache-2.0

This issue was automatically generated. Feel free to close without ceremony if
you do not agree with re-licensing or if it is not possible for other reasons.
Respond to @cmr with any questions or concerns, or pop over to
#rust-offtopic on IRC to discuss.

You're receiving this because someone (perhaps the project maintainer)
published a crates.io package with the license as "MIT" xor "Apache-2.0" and
the repository field pointing here.

TL;DR the Rust ecosystem is largely Apache-2.0. Being available under that
license is good for interoperation. The MIT license as an add-on can be nice
for GPLv2 projects to use your code.

Why?

The MIT license requires reproducing countless copies of the same copyright
header with different names in the copyright field, for every MIT library in
use. The Apache license does not have this drawback. However, this is not the
primary motivation for me creating these issues. The Apache license also has
protections from patent trolls and an explicit contribution licensing clause.
However, the Apache license is incompatible with GPLv2. This is why Rust is
dual-licensed as MIT/Apache (the "primary" license being Apache, MIT only for
GPLv2 compat), and doing so would be wise for this project. This also makes
this crate suitable for inclusion and unrestricted sharing in the Rust
standard distribution and other projects using dual MIT/Apache, such as my
personal ulterior motive, the Robigalia project.

Some ask, "Does this really apply to binary redistributions? Does MIT really
require reproducing the whole thing?" I'm not a lawyer, and I can't give legal
advice, but some Google Android apps include open source attributions using
this interpretation. Others also agree with
it
.
But, again, the copyright notice redistribution is not the primary motivation
for the dual-licensing. It's stronger protections to licensees and better
interoperation with the wider Rust ecosystem.

How?

To do this, get explicit approval from each contributor of copyrightable work
(as not all contributions qualify for copyright) and then add the following to
your README:

## License

Licensed under either of
 * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
 * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
at your option.

### Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any
additional terms or conditions.

and in your license headers, use the following boilerplate (based on that used in Rust):

// Copyright (c) 2016 conduit developers
//
// Licensed under the Apache License, Version 2.0
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. All files in the project carrying such notice may not be copied,
// modified, or distributed except according to those terms.

Be sure to add the relevant LICENSE-{MIT,APACHE} files. You can copy these
from the Rust repo for a plain-text
version.

And don't forget to update the license metadata in your Cargo.toml to:

license = "MIT/Apache-2.0"

I'll be going through projects which agree to be relicensed and have approval
by the necessary contributors and doing this changes, so feel free to leave
the heavy lifting to me!

Contributor checkoff

To agree to relicensing, comment with :

I license past and future contributions under the dual MIT/Apache-2.0 license, allowing licensees to chose either at their option

Or, if you're a contributor, you can check the box in this repo next to your
name. My scripts will pick this exact phrase up and check your checkbox, but
I'll come through and manually review this issue later as well.

Import other conduit crates into single workspace repo

When working on conduit you currently have to clone what feels like a dozen different repositories, and similarly you need to have all of them open in your editor.

I'm wondering if it would be easier to import all of these other conduit-XXX crates into a shared Cargo workspace in this repository.

If there is any interest in this I would be happy to work on that.

Yank breaking versions with "*" deps

An old version of conduit has dependencies specified with "*" version requirement (semver = "*").

Crates with such vague dependency versions became unusable, because * allows picking too-new semver-incompatible dependencies.
It also breaks Cargo's minimal-versions feature, because * requirement allows picking very very old dependencies that aren't compatible with Rust 1.0.

Because this old version of conduit is unusable and may cause problems for Cargo, I suggest yanking it:

cargo yank --vers 0.5.0

Add a Readme

It would be nice to have at least a "Hello World" example.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.