Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Initial git commit.
  • Loading branch information
graydon committed Jun 16, 2010
0 parents commit c01efc6
Show file tree
Hide file tree
Showing 6 changed files with 886 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .gitignore
@@ -0,0 +1,10 @@
*~
*.out
*.exe
*.orig
*.cmo
*.cmi
*.d
*.o
.hg/
.hgignore
7 changes: 7 additions & 0 deletions AUTHORS.txt
@@ -0,0 +1,7 @@
Rust authors:

Graydon Hoare <graydon@mozilla.com>
Andreas Gal <gal@mozilla.com>
Dave Herman <dherman@mozilla.com>
Patrick Walton <pwalton@mozilla.com>
Brendan Eich <brendan@mozilla.com>
177 changes: 177 additions & 0 deletions LICENSE.txt
@@ -0,0 +1,177 @@
Short version for non-lawyers:

This work licensed under BSD-like terms.


Long version follows:

The collective work presented here includes packages written by third parties.
The following third party packages are included:


* The ISAAC pseudo random number generation package. Code for this package is
found in the src/rt/isaac directory, within this distribution. This package
is redistributed under the following terms, as noted in its source:

By Bob Jenkins, 1996, Public Domain


* The ACME large integer package. Code for this package is found in
the src/rt/bigint directory, within this distribution. This package
is redistributed under the following terms, as noted in its source:

Copyright © 2000 by Jef Poskanzer <jef@mail.acme.com>.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.


* The UTHASH hash table package. Code for this package is found in the
src/rt/uthash directory within this distribution. This package is
redistributed under the following terms, as noted in its source:

Copyright (c) 2003-2009, Troy D. Hanson http://uthash.sourceforge.net
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


* Two header files that are part of the Valgrind package. These files are found
at src/rt/valgrind.h and src/rt/memcheck.h, within this distribution. These
files are redistributed under the following terms, as noted in them:

for src/rt/valgrind.h:

This file is part of Valgrind, a dynamic binary instrumentation
framework.

Copyright (C) 2000-2008 Julian Seward. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

2. The origin of this software must not be misrepresented; you must
not claim that you wrote the original software. If you use this
software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.

3. Altered source versions must be plainly marked as such, and must
not be misrepresented as being the original software.

4. The name of the author may not be used to endorse or promote
products derived from this software without specific prior written
permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

for src/rt/memcheck.h:

This file is part of MemCheck, a heavyweight Valgrind tool for
detecting memory errors.

Copyright (C) 2000-2009 Julian Seward. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.

2. The origin of this software must not be misrepresented; you must
not claim that you wrote the original software. If you use this
software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.

3. Altered source versions must be plainly marked as such, and must
not be misrepresented as being the original software.

4. The name of the author may not be used to endorse or promote
products derived from this software without specific prior written
permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


The remaining code and documentation in the collective work presented here, as
well as the collective work itslf, is distributed under the following terms:

Copyright (c) 2006-2010 Graydon Hoare
Copyright (c) 2009-2010 Mozilla Foundation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
4 changes: 4 additions & 0 deletions README
@@ -0,0 +1,4 @@
This is a compiler and suite of associated libraries and documentation for the
Rust programming language.

See LICENSE.txt for terms of copyright and redistribution.
11 changes: 11 additions & 0 deletions doc/Makefile
@@ -0,0 +1,11 @@

all: rust.pdf rust.html

%.pdf: %.texi
texi2pdf $<

%.html: %.texi
makeinfo --html --force --no-split --output=$@ $<

clean:
rm -f rust.aux rust.cp rust.fn rust.ky rust.log rust.pdf rust.html rust.pg rust.toc rust.tp rust.vr

30 comments on commit c01efc6

@RamonSmit
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

First commit ❤️

@graydon
Copy link
Contributor Author

@graydon graydon commented on c01efc6 Oct 6, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

First git commit. I have history going 4 years further back in monotone and mercurial repos, but it's terribly embarrassing :)

@graydon
Copy link
Contributor Author

@graydon graydon commented on c01efc6 Oct 6, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(it was the dictionary definition of "hobby project": spare time, here and there, weeks or months between commits ... not worth browsing)

@RamonSmit
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's still epic as heck! :]

@marijnh
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(I was really hoping you'd have imported from mercurial. Now, unless you decide to write a book, we'll never know what shapes the language used to have. You may consider this an invitation to retroactively publish those repositories somewhere, for future archaeologists.)

@steveklabnik
Copy link
Member

@steveklabnik steveklabnik commented on c01efc6 Aug 19, 2016 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@graydon
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I say yes, you'll probably make me dig it out. Can't it just stay misplaced-and/or-forgotten?

@brkydnc
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

henlo

@t1meshift
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

96340 commits since this one :octocat:

@graydon
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(for reference sake: I eventually did dig up and publish the old-old repo. It is over here: https://github.com/graydon/rust-prehistory)

@ThatOneCalculator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The start of an era

@henryboisdequin
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where it all started

@alichraghi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i'm commenting from 2021

@imagineeeinc
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm commenting from 2022, 12 years later; the start of one of my favourite languages started here

@darkCavalier11
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Happy Birthday

@ThatOneCalculator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Happy Birthday

What? The first commit was June 16. Today is January 12.

@mauro-balades
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi!

@ducna-lts
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wow

@mauro-balades
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wow

epic

@changliuxy
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

12 years old

@wshon
Copy link

@wshon wshon commented on c01efc6 Jan 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm commenting from 2023. This is a really impressive project.

@itzAlex
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👀

@0xbhagi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As far as I know, there are two ways to find the first commit of a project.

  1. PAGE = (total commit)/35
    https://github.com/rust-lang/rust/commits/master?page=PAGE
    2.https://github.com/rust-lang/rust/commits/master?after=6874f4e3fc2a16be7c78e702d068bbc1daa90e16(//current commit)+{total commit}&branch=master&qualified_name=refs%2Fheads%2Fmaster

@MuhtasimTanmoy
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello from 2023.

@hhrrr
Copy link

@hhrrr hhrrr commented on c01efc6 Mar 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where the legend begins.

@j178
Copy link

@j178 j178 commented on c01efc6 May 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As far as I know, there are two ways to find the first commit of a project.

  1. PAGE = (total commit)/35
    https://github.com/rust-lang/rust/commits/master?page=PAGE
    2.https://github.com/rust-lang/rust/commits/master?after=6874f4e3fc2a16be7c78e702d068bbc1daa90e16(//current commit)+{total commit}&branch=master&qualified_name=refs%2Fheads%2Fmaster

I made a simple tool, that directs you to the first commit of any repo, try: https://git-first-commit.vercel.app/{owner}/{repo}

@luisBazanDev
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Innitial Commit omg

@Mixerou
Copy link

@Mixerou Mixerou commented on c01efc6 Mar 3, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

After 14 years we have what we have - the most loved language and we're not going to stop improving it!

@yuanzhixiang
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello from 2024

@1ypen
Copy link

@1ypen 1ypen commented on c01efc6 Mar 12, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm just starting to learn Rust, hopefully we'll become friends 🦀

Please sign in to comment.